Ecodev / felix

Various utilities tailored for our ecosystem
MIT License
1 stars 0 forks source link

Bump friendsofphp/php-cs-fixer from 2.18.2 to 2.18.6 #6

Closed dependabot[bot] closed 3 years ago

dependabot[bot] commented 3 years ago

Bumps friendsofphp/php-cs-fixer from 2.18.2 to 2.18.6.

Release notes

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

v2.18.6 Remote Void

  • bug #5586 Add support for nullsafe object operator ("?->") (kubawerlos)
  • bug #5597 Tokens - fix for checking block edges (kubawerlos)
  • bug #5604 Custom annotations @​type changed into @​var (Leprechaunz)
  • bug #5606 DoctrineAnnotationBracesFixer false positive (Leprechaunz)
  • bug #5610 BracesFixer - fix braces of match expression (Leprechaunz)
  • bug #5615 GroupImportFixer severely broken (Leprechaunz)
  • bug #5617 ClassAttributesSeparationFixer - fix for using visibility for class elements (kubawerlos)
  • bug #5618 GroupImportFixer - fix removal of import type when mixing multiple types (Leprechaunz)
  • bug #5622 Exclude Doctrine documents from final fixer (ossinkine)
  • bug #5630 PhpdocTypesOrderFixer - handle complex keys (Leprechaunz)
  • minor #5554 DX: use tmp file in sys_temp_dir for integration tests (keradus)
  • minor #5564 DX: make integration tests matching entries in FixerFactoryTest (kubawerlos)
  • minor #5603 DX: DocumentationGenerator - no need to re-configure Differ (keradus)
  • minor #5612 DX: use ::class whenever possible (kubawerlos)
  • minor #5619 DX: allow XDebugHandler v2 (keradus)
  • minor #5623 DX: when displaying app version, don't put extra space if there is no CODENAME available (keradus)
  • minor #5626 DX: update PHPStan and way of ignoring flickering PHPStan exception (keradus)
  • minor #5629 DX: fix CiIntegrationTest (keradus)
  • minor #5636 DX: remove 'create' method in internal classes (keradus)
  • minor #5637 DX: do not calculate bitmap via helper anymore (keradus)
  • minor #5639 Move fix reports (classes and schemas) (keradus)
  • minor #5640 DX: use constants for PHPUnit version (keradus)
  • minor #5646 Cleanup YodaStyleFixerTest (kubawerlos)

v2.18.5 Remote Void

  • bug #5561 NoMixedEchoPrintFixer: fix for conditions without curly brackets (kubawerlos)
  • bug #5563 Priority fix: SingleSpaceAfterConstructFixer must run before BracesFixer (kubawerlos)
  • bug #5567 Fix order of BracesFixer and ClassDefinitionFixer (Daeroni)
  • bug #5596 NullableTypeTransformer - fix for attributes (kubawerlos, jrmajor)
  • bug #5598 GroupImportFixer - fix breaking code when fixing root classes (Leprechaunz)
  • minor #5571 DX: add test to make sure SingleSpaceAfterConstructFixer runs before FunctionDeclarationFixer (kubawerlos)
  • minor #5577 Extend priority test for "class_definition" vs "braces" (kubawerlos)
  • minor #5585 DX: make doc examples prettier (kubawerlos)
  • minor #5590 Docs: HeaderCommentFixer - document example how to remove header comment (keradus)
  • minor #5602 DX: regenerate docs (keradus)

v2.18.4 Remote Void

  • bug #4085 Priority: AlignMultilineComment should run before every PhpdocFixer (dmvdbrugge)
  • bug #5421 PsrAutoloadingFixer - Fix PSR autoloading outside configured directory (kelunik, keradus)
  • bug #5464 NativeFunctionInvocationFixer - PHP 8 attributes (HypeMC, keradus)
  • bug #5548 NullableTypeDeclarationForDefaultNullValueFixer - fix handling promoted properties (jrmajor, keradus)
  • bug #5550 TypeAlternationTransformer - fix for typed static properties (kubawerlos)
  • bug #5551 ClassAttributesSeparationFixer - fix for properties with type alternation (kubawerlos, keradus)
  • bug #5552 DX: test relation between function_declaration and method_argument_space (keradus)
  • minor #5540 DX: RuleSet - convert null handling to soft-warning (keradus)
  • minor #5545 DX: update checkbashisms (keradus)

v2.18.3 Remote Void

  • bug #5484 NullableTypeDeclarationForDefaultNullValueFixer - handle mixed pseudotype (keradus)

... (truncated)

Changelog

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

Changelog for v2.18.6

  • bug #5586 Add support for nullsafe object operator ("?->") (kubawerlos)
  • bug #5597 Tokens - fix for checking block edges (kubawerlos)
  • bug #5604 Custom annotations @​type changed into @​var (Leprechaunz)
  • bug #5606 DoctrineAnnotationBracesFixer false positive (Leprechaunz)
  • bug #5610 BracesFixer - fix braces of match expression (Leprechaunz)
  • bug #5615 GroupImportFixer severely broken (Leprechaunz)
  • bug #5617 ClassAttributesSeparationFixer - fix for using visibility for class elements (kubawerlos)
  • bug #5618 GroupImportFixer - fix removal of import type when mixing multiple types (Leprechaunz)
  • bug #5622 Exclude Doctrine documents from final fixer (ossinkine)
  • bug #5630 PhpdocTypesOrderFixer - handle complex keys (Leprechaunz)
  • minor #5554 DX: use tmp file in sys_temp_dir for integration tests (keradus)
  • minor #5564 DX: make integration tests matching entries in FixerFactoryTest (kubawerlos)
  • minor #5603 DX: DocumentationGenerator - no need to re-configure Differ (keradus)
  • minor #5612 DX: use ::class whenever possible (kubawerlos)
  • minor #5619 DX: allow XDebugHandler v2 (keradus)
  • minor #5623 DX: when displaying app version, don't put extra space if there is no CODENAME available (keradus)
  • minor #5626 DX: update PHPStan and way of ignoring flickering PHPStan exception (keradus)
  • minor #5629 DX: fix CiIntegrationTest (keradus)
  • minor #5636 DX: remove 'create' method in internal classes (keradus)
  • minor #5637 DX: do not calculate bitmap via helper anymore (keradus)
  • minor #5639 Move fix reports (classes and schemas) (keradus)
  • minor #5640 DX: use constants for PHPUnit version (keradus)
  • minor #5646 Cleanup YodaStyleFixerTest (kubawerlos)

Changelog for v2.18.5

  • bug #5561 NoMixedEchoPrintFixer: fix for conditions without curly brackets (kubawerlos)
  • bug #5563 Priority fix: SingleSpaceAfterConstructFixer must run before BracesFixer (kubawerlos)
  • bug #5567 Fix order of BracesFixer and ClassDefinitionFixer (Daeroni)
  • bug #5596 NullableTypeTransformer - fix for attributes (kubawerlos, jrmajor)
  • bug #5598 GroupImportFixer - fix breaking code when fixing root classes (Leprechaunz)
  • minor #5571 DX: add test to make sure SingleSpaceAfterConstructFixer runs before FunctionDeclarationFixer (kubawerlos)
  • minor #5577 Extend priority test for "class_definition" vs "braces" (kubawerlos)
  • minor #5585 DX: make doc examples prettier (kubawerlos)
  • minor #5590 Docs: HeaderCommentFixer - document example how to remove header comment (keradus)
  • minor #5602 DX: regenerate docs (keradus)

Changelog for v2.18.4

  • bug #4085 Priority: AlignMultilineComment should run before every PhpdocFixer (dmvdbrugge)
  • bug #5421 PsrAutoloadingFixer - Fix PSR autoloading outside configured directory (kelunik, keradus)
  • bug #5464 NativeFunctionInvocationFixer - PHP 8 attributes (HypeMC, keradus)
  • bug #5548 NullableTypeDeclarationForDefaultNullValueFixer - fix handling promoted properties (jrmajor, keradus)
  • bug #5550 TypeAlternationTransformer - fix for typed static properties (kubawerlos)
  • bug #5551 ClassAttributesSeparationFixer - fix for properties with type alternation (kubawerlos, keradus)

... (truncated)

Commits
  • 5fed214 prepared the 2.18.6 release
  • e7a92aa minor #5639 Move fix reports (classes and schemas) (keradus)
  • 552bf42 Move fix reports (classes and schemas)
  • 2638d59 minor #5646 Cleanup YodaStyleFixerTest (kubawerlos)
  • 9aad69e Cleanup YodaStyleFixerTest
  • dd17ef9 minor #5564 DX: make integration tests matching entries in FixerFactoryTest (...
  • e89da2d minor #5637 DX: do not calculate bitmap via helper anymore (keradus)
  • 2e54b06 DX: do not calculate bitmap via helper anymore
  • 0acd4d5 minor #5636 DX: remove 'create' method in internal classes (keradus)
  • 3cc28f8 DX: remove 'create' method in internal classes
  • Additional commits viewable in compare view


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)
dependabot[bot] commented 3 years ago

Looks like friendsofphp/php-cs-fixer is no longer being updated by Dependabot, so this is no longer needed.