Skip to content

Commit

Permalink
Merge branch 'master' into kerad_cache
Browse files Browse the repository at this point in the history
  • Loading branch information
keradus committed May 6, 2024
2 parents 1ca5b7b + 6a9351f commit 4f16da3
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 4 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,31 @@ CHANGELOG for PHP CS Fixer

This file contains changelogs for stable releases only.

Changelog for v3.55.0
---------------------

* feat: Introduce `OrderedAttributesFixer` (#7395)
* chore: few SCA fixes and dev-tools update (#7969)
* chore: fix phpdoc types (#7977)
* chore: narrow PHPDoc types (#7979)
* chore: Normalize implicit backslahes in single quoted strings internally (#7786)
* chore: phpdoc - rely on strict list/tuple/assoc instead of array (#7978)
* chore: PhpUnitDataProviderNameFixer - follow config creation pattern (#7980)
* chore: Preg - drop half-support for array-pattern (#7976)
* chore: re-use CodeHasher (#7984)
* chore: RuleSetsTest - assert that Fixer is configurable (#7961)
* chore: sugar syntax (#7986)
* chore: Tokens should be always a list (#7698)
* CI: Ad-hoc fix for MacOS jobs (#7970)
* CI: Fix calculating diff between branches in PRs (#7973)
* DX: allow to enforce cache mechanism by env var (#7983)
* DX: do not typehint fixed-length arrays as lists (#7974)
* DX: Prevent having deprecated fixers listed as successors of other deprecated fixers (#7967)
* DX: Resolve/Ignore PHPStan issues on level 6 + bump to level 7 with new baseline (#7971)
* DX: use `list` type in PHPDoc (#7975)
* fix: `PhpUnitAttributesFixer` - fix for `#[RequiresPhp]` exceeding its constructor parameters (#7966)
* test: don't count comment after class as another classy element (#7982)

Changelog for v3.54.0
---------------------

Expand Down
4 changes: 1 addition & 3 deletions src/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,7 @@ public function getCustomFixers(): array
*/
public function getFinder(): iterable
{
if (null === $this->finder) {
$this->finder = new Finder();
}
$this->finder ??= new Finder();

return $this->finder;
}
Expand Down
2 changes: 1 addition & 1 deletion src/Console/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
final class Application extends BaseApplication
{
public const NAME = 'PHP CS Fixer';
public const VERSION = '3.54.1-DEV';
public const VERSION = '3.55.1-DEV';
public const VERSION_CODENAME = '15 Keys Accelerate';

private ToolInfo $toolInfo;
Expand Down

0 comments on commit 4f16da3

Please sign in to comment.