Fedora 43 Update: php-cs-fixer-3.87.1-1.fc43

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



--------------------------------------------------------------------------------
Fedora Update Notification
FEDORA-2025-039cbaa5d0
2025-09-14 00:15:28.906582+00:00
--------------------------------------------------------------------------------

Name        : php-cs-fixer
Product     : Fedora 43
Version     : 3.87.1
Release     : 1.fc43
URL         : https://github.com/FriendsOfPHP/PHP-CS-Fixer
Summary     : PHP Coding Standards Fixer
Description :
The PHP Coding Standards Fixer (PHP CS Fixer) tool fixes your code to follow
standards; whether you want to follow PHP coding standards as defined in the
PSR-1, PSR-2, etc., or other community driven ones like the Symfony one. You
can also define your (team's) style through configuration.

It can modernize your code (like converting the pow function to the ** operator
on PHP 5.6) and (micro) optimize it.

If you are already using a linter to identify coding standards problems in your
code, you know that fixing them by hand is tedious, especially on large
projects. This tool does not only detect them, but also fixes them for you.

--------------------------------------------------------------------------------
Update Information:

Changelog for version 3.87.1
chore: AbstractProxyFixer - require non-empty list of proxy fixers (#9010)
deps: update justinrainbow/json-schema (#9019)
Changelog for version 3.87.0
feat: add PhpdocTagNoNamedArgumentsFixer (#8906)
feat: deprecate using config from passed 'path' CLI argument (#8923)
feat: introduce @PHP85Migration set (#8941)
feat: upgrade @PhpCsFixer set towards new defaults of selected rules (#8981)
fix: PhpdocOrderFixer - do not allow duplicated tags in configuration (#8945)
fix: PhpdocOrderFixer when phpstan- / psalm- order is specified (#8853)
docs: README.md updates (#9013)
docs: update README.md (#9015)
docs: update README.md and CONTRIBUTING.md (#8974)
DX: remove methods for kind checks (#8954)
DX: unify class/interface/trait naming (#8957)
chore: Add CS commit to .git-blame-ignore-revs
chore: Add TODO for ENUM conversion in ProgressOutputType (#8991)
chore: always use JSON_THROW_ON_ERROR (#8993)
chore: apply (partially) multiline_string_to_heredoc (#9002)
chore: apply phpdoc_tag_no_named_arguments (#8969)
chore: configure phpdoc_tag_no_named_arguments (#8970)
chore: convert private methods to constants (#8976)
chore: deprecate Annotation::getTagsWithTypes in favor of TAGS_WITH_TYPES
constant (#8977)
chore: exclude files in .gitattributes (#8960)
chore: extract token types for PHPStan (#8925)
chore: handle fixer options without allowed types defined (#8973)
chore: ignore deprecations in token_get_all (#8963)
chore: minor CS fixes (#8979)
chore: PhpdocTagNoNamedArgumentsFixer - better example (#8971)
chore: PHPUnit - enforce no memory_limit (#8940)
chore: remove not-needed reset-call (#9014)
chore: revert wrong _PhpTokenArray usages (#8947)
chore: rework ci-integration.sh (#8989)
chore: sort .gitattributes (#8966)
chore: unify entries in .gitignore (#8982)
chore: unify env var FAST_LINT_TEST_CASES into PHP_CS_FIXER_FAST_LINT_TEST_CASES
(#8992)
chore: use get_debug_type and ::class in exception messages (#9006)
chore: use non-empty-list where appropriate (#8972)
chore: AbstractPhpdocTypesFixer - remove $tags property (#8980)
chore: CheckCommand - use regex instead of explode & substr (#8936)
chore: ClassAttributesSeparationFixer - improve code (#8950)
chore: EregToPregFixer - use constant instead of static property (#8978)
chore: FullyQualifiedStrictTypesFixer - ensure matching number of
opening/closing braces (#9009)
chore: OrderedClassElementsFixer - use private method instead of anonymous
function (#8931)
chore: PhpdocParamOrderFixer - improve/simplify code (#9012)
chore: PhpUnitDedicateAssertFixer - improve code for phpstan (#9011)
chore: Tokens::offsetSet - explicit validation of input (#9004)
chore: Tokens - override nullability of SplFixedArray (#9001)
refactor: add DocBlockAnnotation trait (#8953)
refactor: PhpdocOrderFixer - calculate order only once (#8944)
CI: add vendor/bin/phpunit --check-php-configuration (#8934)
CI: more self-fixing checks on lowest/highest PHP (#8943)
CI: Re-enable Paraunit in CI under PHP 8.5 (#8964)
CI: update checkbashisms (#8951)
test: extend ProjectCodeTest to check classy names in tests too (#8959)
test: split test so more of them can run under Windows (#8986)
test: TypeDeclarationSpacesFixer - demonstrate PHP 8.3 related config doesn't
harm older envs (#8999)
test: update pipe operator tests after pipe & arrow function combination was
prohibited (#8990)
test: NoUnneededControlParenthesesFixer - add tests for "clone with" (#8937)
test: PhpdocNoAliasTagFixerTest - add test for @const to @var (#8998)
CS: re-apply rules (#8988)
deps: bump actions/checkout from 4 to 5 (#8938)
deps: bump shipmonk/dead-code-detector from 0.13.1 to 0.13.2 in /dev-tools
(#8939)
deps: drop support for justinrainbow/json-schema:^5 (#8984)
deps: minor upgrades (#8983)
deps: remove php-cs-fixer/accessible-object (#8948)
deps: update dev-tools (#9007)
Changelog for version 3.86.0
feat: console application - add completion support (#8887)
feat: introduce PER-CS3.0 rulsets (#8841)
feat: update @Symfony and @PhpCsFixer sets (#8930)
feat: NoSuperfluousPhpdocTagsFixer - support multiline array shapes (#8903)
fix: PhpdocToParamTypeFixerTest - handle types_map for union-types (#8926)
chore: AbstractTransformerTestCase - better virtual type naming (#8927)
chore: add TODO for v4 (#8912)
chore: do not call Reflection*::setAccessible() in PHP >= 8.1 (#8907)
chore: document .env.example (#8901)
chore: fix @todo annotation casing (#8921)
chore: switch to official checkstyle.xsd (#8910)
chore: unify future default of after_heredoc (#8924)
chore: @phpstan-ignore for php version check (#8920)
chore: PhpUnitTestAnnotationFixer - use foreach instead of for (#8911)
CI: allow PHP 8.5 for failure, till it's officially releaed and we get the
stable support (#8928)
ci: run tests under 8.5 via PHPUnit, as ParaUnit failing (#8933)
CI: temporarily skip problematic tests under Sf v8 (#8919)
deps: bump icanhazstring/composer-unused from 0.9.3 to 0.9.4 in /dev-tools
(#8905)
deps: update and bump dev-tools/composer (#8915)
docs: extend FullOpeningTagFixer samples (#8913)
docs: extend OperatorLinebreakFixer samples (#8914)
docs: more explicit msg for stop using deprecated code (#8922)
DX: .gitignore - ignore php-cs-fixer.cache, as it's existance is possible when
using env var (#8929)
--------------------------------------------------------------------------------
ChangeLog:

* Wed Sep  3 2025 Remi Collet <remi@xxxxxxxxxxxx> - 3.87.1-1
- update to 3.87.1
* Thu Aug 14 2025 Remi Collet <remi@xxxxxxxxxxxx> - 3.86.0-1
- update to 3.86.0
--------------------------------------------------------------------------------

This update can be installed with the "dnf" update program. Use
su -c 'dnf upgrade --advisory FEDORA-2025-039cbaa5d0' at the command
line. For more information, refer to the dnf documentation available at
http://dnf.readthedocs.io/en/latest/command_ref.html#upgrade-command-label

All packages are signed with the Fedora Project GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------

-- 
_______________________________________________
package-announce mailing list -- package-announce@xxxxxxxxxxxxxxxxxxxxxxx
To unsubscribe send an email to package-announce-leave@xxxxxxxxxxxxxxxxxxxxxxx
Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: https://lists.fedoraproject.org/archives/list/package-announce@xxxxxxxxxxxxxxxxxxxxxxx
Do not reply to spam, report it: https://pagure.io/fedora-infrastructure/new_issue




[Index of Archives]     [Fedora Users]     [Fedora Legacy]     [Fedora Desktop]     [Fedora SELinux]     [Big List of Linux Books]     [Yosemite News]     [Yosemite Photos]     [KDE Users]

  Powered by Linux