Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

composer(deps): Bump friendsofphp/php-cs-fixer from 3.16.0 to 3.17.0 #787

Merged
merged 3 commits into from May 23, 2023

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 22, 2023

Bumps friendsofphp/php-cs-fixer from 3.16.0 to 3.17.0.

Release notes

Sourced from friendsofphp/php-cs-fixer's releases.

v3.17.0 Brazilian Kangaroo

  • bug: Allow string quote to be escaped within phpdoc constant (#6798)
  • bug: ConfigurationResolver - fix running without cache (#6915)
  • bug: Fix array/object shape phpdoc type parse (#6962)
  • bug: Fix FullyQualifiedStrictTypesFixer common prefix bug (#6898)
  • bug: Fix non-parenthesized callable return type parse (#6961)
  • bug: Fix parsing of edge cases phpdoc types (#6977)
  • bug: FullyQualifiedStrictTypesFixer - fix for FQCN type with class with the same name being imported (#6923)
  • bug: GroupImportFixer - support for aliased imports (#6951)
  • bug: MultilineWhitespaceBeforeSemicolonsFixer - fix chained calls (#6926)
  • bug: MultilineWhitespaceBeforeSemicolonsFixer - fix for discovering multi line calls (#6938)
  • bug: NoBreakCommentFixer - fix for nested match (#6899)
  • bug: NoExtraBlankLinesFixer - fix for attribute in abstract function (#6920)
  • bug: PhpdocTypesFixer - handle types with no space between type and variable (#6922)
  • bug: PhpUnitMockShortWillReturnFixer - fix for trailing commas (#6900)
  • bug: StatementIndentationFixer - fix comments at the end of if/elseif/else blocks (#6918)
  • bug: StatementIndentationFixer - fix for multiline arguments starting with "new" keyword (#6913)
  • bug: StatementIndentationFixer - fix for multiline arguments starting with "new" keyword preceded by class instantiation (#6914)
  • bug: VoidReturnFixer - fix for intervening attributes (#6863)
  • docs: improve code samples for MultilineWhitespaceBeforeSemicolonsFixer (#6919)
  • docs: improve cookbook (#6880)
  • DX: add cache related tests (#6916)
  • DX: Apply self_static_accessor fixer to the project (again) (#6927)
  • DX: cancel running builds on subsequent pushes in CI (#6940)
  • DX: convert more static to self assert calls (#6931)
  • DX: fix GitHub Actions errors and warnings (#6917)
  • DX: fix Unsafe call to private method errors reported by PHPStan (#6879)
  • DX: Improve performance of FunctionsAnalyzer (#6939)
  • DX: improve test method names to avoid confusion (#6974)
  • DX: Include self_static_accessor fixer in PhpCsFixer set (#6882)
  • DX: make data providers static with straight-forward changes (#6907)
  • DX: Mark Tokens::getNamespaceDeclarations as @​internal (#6949)
  • DX: PHPStan improvements (#6868)
  • DX: refactor PhpdocAlignFixerTest (#6925)
  • DX: Remove @​inheritdoc PHPDoc (#6955)
  • DX: Run AutoReview tests only once (#6889)
  • DX: simplify EncodingFixer (#6956)
  • DX: update Symfony rule set (#6958)
  • DX: Use $tokens->getNamespaceDeclarations() to improve performance (#6942)
  • DX: use force option for php_unit_data_provider_static in PHPUnit 10.0 migration set (#6908)
  • DX: use only PHP modules that are required (#6954)
  • DX: use PHPUnit's "requires" instead of "if" condition (#6975)
  • feature: Add align_multiline_comment rule to @​Symfony (#6875)
  • feature: Add no_null_property_initialization rule to @​Symfony (#6876)
  • feature: Add operator_linebreak rule to @​Symfony (#6877)
  • feature: add SingleLineEmptyBodyFixer (#6933)
  • feature: DescribeCommand - allow describing custom fixers (#6957)
  • feature: Introduce OrderedTypesFixer (#6571)
  • feature: Order of PHPDoc @​param annotations (#3909)
  • feature: Parse parenthesized & conditional phpdoc type (#6796)

... (truncated)

Changelog

Sourced from friendsofphp/php-cs-fixer's changelog.

Changelog for v3.17.0

  • bug: Allow string quote to be escaped within phpdoc constant (#6798)
  • bug: ConfigurationResolver - fix running without cache (#6915)
  • bug: Fix array/object shape phpdoc type parse (#6962)
  • bug: Fix FullyQualifiedStrictTypesFixer common prefix bug (#6898)
  • bug: Fix non-parenthesized callable return type parse (#6961)
  • bug: Fix parsing of edge cases phpdoc types (#6977)
  • bug: FullyQualifiedStrictTypesFixer - fix for FQCN type with class with the same name being imported (#6923)
  • bug: GroupImportFixer - support for aliased imports (#6951)
  • bug: MultilineWhitespaceBeforeSemicolonsFixer - fix chained calls (#6926)
  • bug: MultilineWhitespaceBeforeSemicolonsFixer - fix for discovering multi line calls (#6938)
  • bug: NoBreakCommentFixer - fix for nested match (#6899)
  • bug: NoExtraBlankLinesFixer - fix for attribute in abstract function (#6920)
  • bug: PhpdocTypesFixer - handle types with no space between type and variable (#6922)
  • bug: PhpUnitMockShortWillReturnFixer - fix for trailing commas (#6900)
  • bug: StatementIndentationFixer - fix comments at the end of if/elseif/else blocks (#6918)
  • bug: StatementIndentationFixer - fix for multiline arguments starting with "new" keyword (#6913)
  • bug: StatementIndentationFixer - fix for multiline arguments starting with "new" keyword preceded by class instantiation (#6914)
  • bug: VoidReturnFixer - fix for intervening attributes (#6863)
  • docs: improve code samples for MultilineWhitespaceBeforeSemicolonsFixer (#6919)
  • docs: improve cookbook (#6880)
  • DX: add cache related tests (#6916)
  • DX: Apply self_static_accessor fixer to the project (again) (#6927)
  • DX: cancel running builds on subsequent pushes in CI (#6940)
  • DX: convert more static to self assert calls (#6931)
  • DX: fix GitHub Actions errors and warnings (#6917)
  • DX: fix Unsafe call to private method errors reported by PHPStan (#6879)
  • DX: Improve performance of FunctionsAnalyzer (#6939)
  • DX: improve test method names to avoid confusion (#6974)
  • DX: Include self_static_accessor fixer in PhpCsFixer set (#6882)
  • DX: make data providers static with straight-forward changes (#6907)
  • DX: Mark Tokens::getNamespaceDeclarations as @​internal (#6949)
  • DX: PHPStan improvements (#6868)
  • DX: refactor PhpdocAlignFixerTest (#6925)
  • DX: Remove @​inheritdoc PHPDoc (#6955)
  • DX: Run AutoReview tests only once (#6889)
  • DX: simplify EncodingFixer (#6956)
  • DX: update Symfony rule set (#6958)
  • DX: Use $tokens->getNamespaceDeclarations() to improve performance (#6942)
  • DX: use force option for php_unit_data_provider_static in PHPUnit 10.0 migration set (#6908)
  • DX: use only PHP modules that are required (#6954)
  • DX: use PHPUnit's "requires" instead of "if" condition (#6975)
  • feature: Add align_multiline_comment rule to @​Symfony (#6875)
  • feature: Add no_null_property_initialization rule to @​Symfony (#6876)
  • feature: Add operator_linebreak rule to @​Symfony (#6877)
  • feature: add SingleLineEmptyBodyFixer (#6933)
  • feature: DescribeCommand - allow describing custom fixers (#6957)
  • feature: Introduce OrderedTypesFixer (#6571)

... (truncated)

Commits

Dependabot compatibility score

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 rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will 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 version will 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 dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [friendsofphp/php-cs-fixer](https://github.com/PHP-CS-Fixer/PHP-CS-Fixer) from 3.16.0 to 3.17.0.
- [Release notes](https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/releases)
- [Changelog](https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/master/CHANGELOG.md)
- [Commits](PHP-CS-Fixer/PHP-CS-Fixer@v3.16.0...v3.17.0)

---
updated-dependencies:
- dependency-name: friendsofphp/php-cs-fixer
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@localheinz localheinz self-assigned this May 23, 2023
@codecov
Copy link

codecov bot commented May 23, 2023

Codecov Report

Merging #787 (41358a9) into main (4abee6e) will not change coverage.
The diff coverage is n/a.

❗ Current head 41358a9 differs from pull request most recent head 617470b. Consider uploading reports for the commit 617470b to get more accurate results

@@             Coverage Diff             @@
##                main      #787   +/-   ##
===========================================
  Coverage     100.00%   100.00%           
  Complexity         7         7           
===========================================
  Files              2         2           
  Lines             29        29           
===========================================
  Hits              29        29           

📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more

@localheinz localheinz merged commit 319c892 into main May 23, 2023
16 checks passed
@localheinz localheinz deleted the dependabot/composer/friendsofphp/php-cs-fixer-3.17.0 branch May 23, 2023 05:33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant