Skip to content

Commit 1617a6e

Browse files
committed
prepared the 2.15.8 release
1 parent dfc4f07 commit 1617a6e

File tree

3 files changed

+49
-3
lines changed

3 files changed

+49
-3
lines changed

CHANGELOG.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,52 @@ CHANGELOG for PHP CS Fixer
33

44
This file contains changelogs for stable releases only.
55

6+
Changelog for v2.15.8
7+
---------------------
8+
9+
* bug #3893 Fix handling /** and */ on the same line as the first and/or last annotation (dmvdbrugge)
10+
* bug #4919 PhpUnitTestAnnotationFixer - fix function starting with "test" and having lowercase letter after (kubawerlos)
11+
* bug #4929 YodaStyleFixer - handling equals empty array (kubawerlos)
12+
* bug #4934 YodaStyleFixer - fix for conditions weird are (kubawerlos)
13+
* bug #4958 OrderedImportsFixer - fix for trailing comma in group (kubawerlos)
14+
* bug #4959 BlankLineBeforeStatementFixer - handle comment case (SpacePossum)
15+
* bug #4962 MethodArgumentSpaceFixer - must run after MethodChainingIndentationFixer (kubawerlos)
16+
* bug #4963 PhpdocToReturnTypeFixer - fix for breaking PHP syntax for type having reserved name (kubawerlos, Slamdunk)
17+
* bug #4978 ArrayIndentationFixer - must run after MethodArgumentSpaceFixer (kubawerlos)
18+
* bug #4994 FinalInternalClassFixer - must run before ProtectedToPrivateFixer (kubawerlos)
19+
* bug #4996 NoEmptyCommentFixer - handle multiline comments (kubawerlos)
20+
* bug #4999 BlankLineBeforeStatementFixer - better comment handling (SpacePossum)
21+
* bug #5009 NoEmptyCommentFixer - better handle comments sequence (kubawerlos)
22+
* bug #5010 SimplifiedNullReturnFixer - must run before VoidReturnFixer (kubawerlos)
23+
* bug #5011 SingleClassElementPerStatementFixer - must run before ClassAttributesSeparationFixer (kubawerlos)
24+
* bug #5012 StrictParamFixer - must run before NativeFunctionInvocationFixer (kubawerlos)
25+
* bug #5029 SingleLineAfterImportsFixer - fix for line after import already added using CRLF (kubawerlos)
26+
* minor #4904 Increase PHPStan level to 8 with strict rules (julienfalque)
27+
* minor #4930 DX: ensure PhpUnitNamespacedFixer handles all classes (kubawerlos)
28+
* minor #4931 DX: add test to ensure each target version in PhpUnitTargetVersion has its set in RuleSet (kubawerlos)
29+
* minor #4932 DX: Travis CI config - fix warnings and infos (kubawerlos)
30+
* minor #4940 Reject empty path (julienfalque)
31+
* minor #4944 Fix grammar (julienfalque)
32+
* minor #4946 Allow "const" option on PHP <7.1 (julienfalque)
33+
* minor #4948 Added describe command to readme (david, 8ctopus)
34+
* minor #4949 Fixed build readme on Windows fails if using Git Bash (Mintty) (8ctopus)
35+
* minor #4954 Config - Trim path (julienfalque)
36+
* minor #4957 DX: Check trailing spaces in project files only (ktomk)
37+
* minor #4961 Assert all project source files are monolithic. (SpacePossum)
38+
* minor #4964 Fix PHPStan baseline (julienfalque)
39+
* minor #4973 DX: test "isRisky" method in fixer tests, not as auto review (kubawerlos)
40+
* minor #4974 Minor: Fix typo (ktomk)
41+
* minor #4975 Revert PHPStan level to 5 (julienfalque)
42+
* minor #4976 Add instructions for PHPStan (julienfalque)
43+
* minor #4980 Introduce new issue templates (julienfalque)
44+
* minor #4981 Prevent error in CTTest::testConstants (for PHP8) (guilliamxavier)
45+
* minor #4982 Remove PHIVE (kubawerlos)
46+
* minor #4985 Fix tests with Symfony 5.1 (julienfalque)
47+
* minor #4987 PhpdocAnnotationWithoutDotFixer - handle unicode characters using mb_* (SpacePossum)
48+
* minor #5008 Enhancement: Social justification applied (gbyrka-fingo)
49+
* minor #5023 Fix issue templates (kubawerlos)
50+
* minor #5024 DX: add missing non-default code samples (kubawerlos)
51+
652
Changelog for v2.15.7
753
---------------------
854

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ or with specified version:
4646

4747
.. code-block:: bash
4848
49-
$ wget https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v2.15.7/php-cs-fixer.phar -O php-cs-fixer
49+
$ wget https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v2.15.8/php-cs-fixer.phar -O php-cs-fixer
5050
5151
or with curl:
5252

@@ -1937,7 +1937,7 @@ Config file
19371937

19381938
Instead of using command line options to customize the rule, you can save the
19391939
project configuration in a ``.php_cs.dist`` file in the root directory of your project.
1940-
The file must return an instance of `PhpCsFixer\\ConfigInterface <https://github.com/FriendsOfPHP/PHP-CS-Fixer/blob/v2.15.7/src/ConfigInterface.php>`_
1940+
The file must return an instance of `PhpCsFixer\\ConfigInterface <https://github.com/FriendsOfPHP/PHP-CS-Fixer/blob/v2.15.8/src/ConfigInterface.php>`_
19411941
which lets you configure the rules, the files and directories that
19421942
need to be analyzed. You may also create ``.php_cs`` file, which is
19431943
the local configuration that will be used instead of the project configuration. It

src/Console/Application.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
*/
3636
final class Application extends BaseApplication
3737
{
38-
const VERSION = '2.15.8-DEV';
38+
const VERSION = '2.15.8';
3939
const VERSION_CODENAME = 'Europe Round';
4040

4141
/**

0 commit comments

Comments
 (0)