Bump friendsofphp/php-cs-fixer from 3.75.0 to 3.82.2
Type: Pull Request
State: Open
Association: Contributor
Comments: 0
(5 months ago)
(5 months ago)
dependencies php
Bumps friendsofphp/php-cs-fixer from 3.75.0 to 3.82.2.
Release notes
Sourced from friendsofphp/php-cs-fixer's releases.
v3.82.2 Alexander
What's Changed
- fix:
ClassAttributesSeparationFixer- handle methodgetaliased in trait import by@kubawerlosin PHP-CS-Fixer/PHP-CS-Fixer#8822- fix:
VisibilityRequiredFixer- handle promoted property with visibility and reference, but without type by@kubawerlosin PHP-CS-Fixer/PHP-CS-Fixer#8823- fix:
LowercaseStaticReferenceFixer- do not touch enum's cases by@kubawerlosin PHP-CS-Fixer/PHP-CS-Fixer#8824- fix:
StatementIndentationFixer- multi constant statement containing array by@gharlanin PHP-CS-Fixer/PHP-CS-Fixer#8825Full Changelog: https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/compare/v3.82.1...v3.82.2
v3.82.1 Alexander
What's Changed
- fix:
SingleClassElementPerStatementFixer- fix for property hooks by@kubawerlosin PHP-CS-Fixer/PHP-CS-Fixer#8816- fix:
OrderedClassElementsFixer- handle property hooks by@kubawerlosin PHP-CS-Fixer/PHP-CS-Fixer#8817Full Changelog: https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/compare/v3.82.0...v3.82.1
v3.82.0 Alexander
What's Changed
- feat:
MagicConstantCasingFixer- support__PROPERTY__by@kubawerlosin PHP-CS-Fixer/PHP-CS-Fixer#8809- feat:
PhpUnitDataProviderNameFixer- support data providers defined by both annotation and attribute for the same test by@kubawerlosin PHP-CS-Fixer/PHP-CS-Fixer#8811- fix:
PhpdocToParamTypeFixer- always handle reference in PHPDoc by@kubawerlosin PHP-CS-Fixer/PHP-CS-Fixer#8813- deps: update box by
@keradusin PHP-CS-Fixer/PHP-CS-Fixer#8795- chore: cleanup
FCTTestby@kubawerlosin PHP-CS-Fixer/PHP-CS-Fixer#8808- chore: PhpdocOrderFixer.php - CPU optimization by
@keradusin PHP-CS-Fixer/PHP-CS-Fixer#8812- docs: fix whitespace around code examples and reference sections in rules' docs by
@paulbalandanin PHP-CS-Fixer/PHP-CS-Fixer#8810Full Changelog: https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/compare/v3.81.0...v3.82.0
v3.81.0 Alexander
What's Changed
- feat:
VisibilityRequiredFixer- handle more than only the first promoted property by@kubawerlosin PHP-CS-Fixer/PHP-CS-Fixer#8801- fix:
VisibilityRequiredFixer- handle promoted parameter passed by reference by@kubawerlosin PHP-CS-Fixer/PHP-CS-Fixer#8799- fix:
BracesPositionFixer- do not throw error when variable is terminated by PHP close tag by@paulbalandanin PHP-CS-Fixer/PHP-CS-Fixer#8804- fix:
PhpUnitInternalClassFixer- skip adding@internalon instantiation of anonymous classes by@paulbalandanin PHP-CS-Fixer/PHP-CS-Fixer#8807- fix:
PhpUnitDataProviderMethodOrderFixer- handle data provider defined by both annotation and attribute by@kubawerlosin PHP-CS-Fixer/PHP-CS-Fixer#8805- chore: add automatically to milestone "PHP 8.5 initial compatibility" if label is "topic/PHP8.5" by
@kubawerlosin PHP-CS-Fixer/PHP-CS-Fixer#8806- chore: fail "Deployment checks" if any job from
testsfailed by@kubawerlosin PHP-CS-Fixer/PHP-CS-Fixer#8792- docs: update docs about --allow-unsupported-php-version by
@keradusin PHP-CS-Fixer/PHP-CS-Fixer#8796Full Changelog: https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/compare/v3.80.0...v3.81.0
v3.80.0 Alexander
Long-awaiting official support for PHP 8.4 in PHP-CS-Fixer is finally here 🥳! We know, it's long overdue, but for a reason... Let us explain a bit, for transparency and clean atmosphere around the project.
First of all, we are fully aware that tool like Fixer should support new PHP releases from day 0, but in reality it's not that simple. The project has 3 (let's emphasise this: three) active maintainers, whose activity depends on many factors. Even though we take this responsibility very seriously, at the same time we need to prioritise our time and efforts. Sometimes it's just not meant to have focus on OSS, and there's nothing wrong about it. People often take OSS maintenance for granted, expecting that we (Fixer team) will provide solutions for their problems and needs, but we believe that the true nature of OSS is overlooked by many of them. It's not about you, it's not about maintainers - it's about the good of the project and its users. And most importantly: it's open for everyone to contribute. You want Fixer to support PHP 8.4? Great, then help with verifying if it works correctly on a 8.4-based sources, provide tests, fix bugs if any were found... That's how it should work in a healthy community. Fixer has many great contributors, but somehow support for new PHP releases is not the topic that engage them 😅. Yes, you could say "but if I work on Fixer in my free time, and I provide PR(s) related to new PHP version support, it still needs to be reviewed and merged, but since maintainers' activity is not reliable, it may end up forgotten and my time would have got wasted", and we really understand that concern. We can't guarantee either implementing stuff on our own, and reviewing contributed code, because we simply have our lifes, families, jobs, hobbies, and Fixer is "just" a side project that we like. We don't get paid for this, we do it because we want to bring value to the PHP community. But this can't be done at the expense of our private matters.
... (truncated)
Changelog
Sourced from friendsofphp/php-cs-fixer's changelog.
Changelog for v3.82.2
- fix:
ClassAttributesSeparationFixer- handle methodgetaliased in trait import (#8822)- fix:
LowercaseStaticReferenceFixer- do not touch enum's cases (#8824)- fix:
StatementIndentationFixer- multi constant statement containing array (#8825)- fix:
VisibilityRequiredFixer- handle promoted property with visibility and reference, but without type (#8823)Changelog for v3.82.1
- fix:
OrderedClassElementsFixer- handle property hooks (#8817)- fix:
SingleClassElementPerStatementFixer- fix for property hooks (#8816)Changelog for v3.82.0
- chore: cleanup
FCTTest(#8808)- chore: PhpdocOrderFixer.php - CPU optimization (#8812)
- deps: update box (#8795)
- docs: fix whitespace around code examples and reference sections in rules' docs (#8810)
- feat:
MagicConstantCasingFixer- support__PROPERTY__(#8809)- feat:
PhpUnitDataProviderNameFixer- support data providers defined by both annotation and attribute for the same test (#8811)- fix:
PhpdocToParamTypeFixer- always handle reference in PHPDoc (#8813)Changelog for v3.81.0
- feat:
VisibilityRequiredFixer- handle more than only the first promoted property (#8801)- fix:
BracesPositionFixer- do not crash when variable is terminated by PHP close tag (#8804)- fix:
PhpUnitDataProviderMethodOrderFixer- handle data provider defined by both annotation and attribute (#8805)- fix:
PhpUnitInternalClassFixer- skip adding@internalon instantiation of anonymous classes (#8807)- fix:
VisibilityRequiredFixer- handle promoted parameter passed by reference (#8799)- chore: add automatically to milestone "PHP 8.5 initial compatibility" if label is "topic/PHP8.5" (#8806)
- chore: fail "Deployment checks" if any job from
testsfailed (#8792)- docs: update docs about --allow-unsupported-php-version (#8796)
Changelog for v3.80.0
- feat: PHP 8.4 compatibility support (#8300)
Changelog for v3.79.0
- chore:
VisibilityRequiredFixerTest- run tests in correct PHP version (#8790)- feat:
BracesPositionFixer- do not touch one-line properties with hooks (#8785)- feat:
PhpUnitDataProvider(.+)Fixer- support attributes (#8197)Changelog for v3.78.1
... (truncated)
Commits
684ed3aprepared the 3.82.2 release97de337fix:StatementIndentationFixer- multi constant statement containing array ...578ea7afix:LowercaseStaticReferenceFixer- do not touch enum's cases (#8824)827eb5ffix:VisibilityRequiredFixer- handle promoted property with visibility and...963f8e3fix:ClassAttributesSeparationFixer- handle methodgetaliased in trait ...b980d8bbumped version240f67bprepared the 3.82.1 releasedd630f2fix:OrderedClassElementsFixer- handle property hooks (#8817)8c9c53cfix:SingleClassElementPerStatementFixer- fix for property hooks (#8816)f5d6ecbbumped version- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Pull Request Statistics
1
1
+55
-54
Package Dependencies
friendsofphp/php-cs-fixer
packagist
3.75.0 → 3.82.2
Minor
Technical Details
| ID: | 3011953 |
| UUID: | 2651878017 |
| Node ID: | PR_kwDOMhYgn86eEHKB |
| Host: | GitHub |
| Repository: | GemberPHP/message-bus-symfony |
| Merge State: | Unknown |