cvs: pear /PHP_CodeSniffer package.xml
[email protected] ("Greg Sherwood")
| Newsgroups | php.pear.cvs |
|---|---|
| Message-ID | <cvssquiz1208741553@cvsserver> |
squiz Mon Apr 21 01:32:33 2008 UTC
Modified files:
/pear/PHP_CodeSniffer package.xml
Log:
Changes for 1.1.0a1 release
squiz-20080421013233.txt
(text/plain, 9.1 KB)
http://cvs.php.net/viewvc.cgi/pear/PHP_CodeSniffer/package.xml?r1=1.260&r2=1.261&diff_format=u Index: pear/PHP_CodeSniffer/package.xml diff -u pear/PHP_CodeSniffer/package.xml:1.260 pear/PHP_CodeSniffer/package.xml:1.261 --- pear/PHP_CodeSniffer/package.xml:1.260 Mon Apr 7 01:13:59 2008 +++ pear/PHP_CodeSniffer/package.xml Mon Apr 21 01:32:33 2008 @@ -20,15 +20,15 @@ <email>[email protected]</email> <active>yes</active> </lead> - <date>2008-02-04</date> - <time>09:51:00</time> + <date>2008-04-21</date> + <time>10:44:00</time> <version> - <release>1.1.0</release> - <api>1.1.0</api> + <release>1.1.0a1</release> + <api>1.1.0a1</api> </version> <stability> - <release>stable</release> - <api>stable</api> + <release>alpha</release> + <api>alpha</api> </stability> <license uri="http://matrix.squiz.net/developer/tools/php_cs/licence">BSD License</license> <notes> @@ -301,35 +301,35 @@ <dir name="Tests"> <dir name="CodeAnalysis"> <file baseinstalldir="PHP" name="EmptyStatementUnitTest.inc" role="test" /> - <file baseinstalldir="PHP" name="EmptyStatementUnitTest.php" role="php"> + <file baseinstalldir="PHP" name="EmptyStatementUnitTest.php" role="test"> <tasks:replace from="@package_version@" to="version" type="package-info" /> </file> <file baseinstalldir="PHP" name="ForLoopShouldBeWhileLoopUnitTest.inc" role="test" /> - <file baseinstalldir="PHP" name="ForLoopShouldBeWhileLoopUnitTest.php" role="php"> + <file baseinstalldir="PHP" name="ForLoopShouldBeWhileLoopUnitTest.php" role="test"> <tasks:replace from="@package_version@" to="version" type="package-info" /> </file> <file baseinstalldir="PHP" name="ForLoopWithTestFunctionCallUnitTest.inc" role="test" /> - <file baseinstalldir="PHP" name="ForLoopWithTestFunctionCallUnitTest.php" role="php"> + <file baseinstalldir="PHP" name="ForLoopWithTestFunctionCallUnitTest.php" role="test"> <tasks:replace from="@package_version@" to="version" type="package-info" /> </file> <file baseinstalldir="PHP" name="JumbledIncrementerUnitTest.inc" role="test" /> - <file baseinstalldir="PHP" name="JumbledIncrementerUnitTest.php" role="php"> + <file baseinstalldir="PHP" name="JumbledIncrementerUnitTest.php" role="test"> <tasks:replace from="@package_version@" to="version" type="package-info" /> </file> <file baseinstalldir="PHP" name="UnconditionalIfStatementUnitTest.inc" role="test" /> - <file baseinstalldir="PHP" name="UnconditionalIfStatementUnitTest.php" role="php"> + <file baseinstalldir="PHP" name="UnconditionalIfStatementUnitTest.php" role="test"> <tasks:replace from="@package_version@" to="version" type="package-info" /> </file> <file baseinstalldir="PHP" name="UnnecessaryFinalModifierUnitTest.inc" role="test" /> - <file baseinstalldir="PHP" name="UnnecessaryFinalModifierUnitTest.php" role="php"> + <file baseinstalldir="PHP" name="UnnecessaryFinalModifierUnitTest.php" role="test"> <tasks:replace from="@package_version@" to="version" type="package-info" /> </file> <file baseinstalldir="PHP" name="UnusedFunctionParameterUnitTest.inc" role="test" /> - <file baseinstalldir="PHP" name="UnusedFunctionParameterUnitTest.php" role="php"> + <file baseinstalldir="PHP" name="UnusedFunctionParameterUnitTest.php" role="test"> <tasks:replace from="@package_version@" to="version" type="package-info" /> </file> <file baseinstalldir="PHP" name="UselessOverridingMethodUnitTest.inc" role="test" /> - <file baseinstalldir="PHP" name="UselessOverridingMethodUnitTest.php" role="php"> + <file baseinstalldir="PHP" name="UselessOverridingMethodUnitTest.php" role="test"> <tasks:replace from="@package_version@" to="version" type="package-info" /> </file> </dir> @@ -1430,6 +1430,79 @@ <changelog> <release> <version> + <release>1.1.0a1</release> + <api>1.1.0a1</api> + </version> + <stability> + <release>alpha</release> + <api>alpha</api> + </stability> + <date>2008-04-21</date> + <license uri="http://matrix.squiz.net/developer/tools/php_cs/licence">BSD License</license> + <notes> + - Added support for multiple tokenizers so PHP_CodeSniffer can check more than just PHP files + -- PHP_CodeSniffer now has a JS tokenizer for checking JavaScript files + -- Sniffs need to be updated to work with additional tokenizers, or new sniffs written for them + - phpcs now exits with status 2 if the tokenier extension has been disabled (feature request #13269) + - Added scripts/phpcs-svn-pre-commit that can be used as an SVN pre-commit hook + - Also reworked the way the phpcs script works to make it easier to wrap it with other functionality + - Thanks to Jack Bates for the contribution + - Fixed error in phpcs error message when a supplied file does not exist + - Fixed a cosmetic error in AbstractPatternSniff where the "found" string was missing some content + - Added sniffs that implement part of the PMD rule catalog to the Generic standard + -- Thanks to Manuel Pichler for the contribution of all these sniffs. + - Squiz FunctionCommentThrowTagSniff no longer throws errors for function that only throw variables + - Generic ScopeIndentSniff now has private member to enforce exact indent matching + - Replaced Squiz DisallowCountInLoopsSniff with Squiz DisallowSizeFunctionsInLoopsSniff + -- Thanks to Jan Miczaika for the sniff + - Squiz BlockCommentSniff now checks inline doc block comments + - Squiz InlineCommentSniff now checks inline doc block comments + - Squiz BlockCommentSniff now checks for no blank line before first comment in a function + - Squiz DocCommentAlignmentSniff now ignores inline doc block comments + - Squiz ControlStructureSpacingSniff now ensures no blank lines at the start of control structures + - Squiz ControlStructureSpacingSniff now ensures no blank lines between control structure closing braces + - Squiz IncrementDecrementUsageSniff now ensures inc/dec ops are bracketed in string concats + - Squiz IncrementDecrementUsageSniff now ensures inc/dec ops are not used in arithmetic operations + - Squiz FunctionCommentSniff no longer throws errors if return value is mixed but function returns void somewhere + - Squiz OperatorBracketSniff no allows function call brackets to count as operator brackets + - Squiz DoubleQuoteUsageSniff now supports \x \f and \v (feature request #13365) + - Squiz ComparisonOperatorUsageSniff now supports JS files + - Squiz ControlSignatureSniff now supports JS files + - Squiz ForLoopDeclarationSniff now supports JS files + - Squiz OperatorBracketSniff now supports JS files + - Squiz InlineControlStructureSniff now supports JS files + - Generic LowerCaseConstantSniff now supports JS files + - Generic DisallowTabIndentSniff now supports JS files + - Generic MultipleStatementAlignmentSniff now supports JS files + - Added Squiz ObjectMemberCommaSniff to ensure the last member of a JS object is not followed by a comma + - Added Squiz ConstantCaseSniff to ensure the PHP constants are uppercase and JS lowercase + - Added Squiz JavaScriptLintSniff to check JS files with JSL + -- Set path using phpcs --config-set jsl_path /path/to/jsl + - Added MySource FirebugConsoleSniff to ban the use of "console" for JS variable and function names + - Added MySource JoinStringsSniff to enforce the use of join() to concatenate JS strings + - Added MySource AssignThisSniff to ensure this is only assigned to a var called self + - Added MySource DisallowNewWidgetSniff to ban manual creation of widget objects + - Removed warning shown in Zend CodeAnalyzerSniff when the ZCA path is not set + - Fixed error in Squiz ValidVariableNameSniff when checking vars in the form $obj->$var + - Fixed error in Squiz DisallowMultipleAssignmentsSniff when checking vars in the form $obj->$var + - Fixed error in Squiz InlineCommentSniff where comments for class constants were seen as inline + - Fixed error in Squiz BlockCommentSniff where comments for class constants were not ignored + - Fixed error in Squiz OperatorBracketSniff where negative numbers were ignored during comparisons + - Fixed error in Squiz FunctionSpacingSniff where functions after member vars reported incorrect spacing + - Fixed bug #13062 : Interface comments aren't handled in PEAR standard + -- Thanks to Manuel Pichler for the path + - Fixed bug #13119 : php minimum requirement need to be fix + - Fixed bug #13156 : Bug in Squiz_Sniffs_PHP_NonExecutableCodeSniff + - Fixed bug #13158 : Strange behaviour in AbstractPatternSniff + - Fixed bug #13169 : Undefined variables + - Fixed bug #13178 : Catch exception in File.php + - Fixed bug #13254 : Notices output in checkstyle report causes XML issues + - Fixed bug #13446 : crash with src of phpMyAdmin + -- Thanks to Manuel Pichler for the path + </notes> + </release> + <release> + <version> <release>1.0.1</release> <api>1.0.1</api> </version>