chore(deps): update all non-major dependencies (minor)
This MR contains the following updates:
Package | Type | Update | Change |
---|---|---|---|
friendsofphp/php-cs-fixer | require-dev | minor |
3.4.0 -> 3.9.5
|
league/uri (source) | require | minor |
6.5.0 -> 6.7.1
|
Release Notes
FriendsOfPHP/PHP-CS-Fixer
v3.9.5
- bug: AlternativeSyntaxAnalyzer - fix for nested else (#6495)
- bug: Fix cases related to binary strings (#6432)
- bug: Fix trailing whitespace after moving brace (#6489)
- bug: NoUnneededControlParenthesesFixer - Fix some curly close cases (#6502)
- bug: TypeColonTransformer - fix for backed enum types (#6494)
- DX: Add tests for type colon in backed enums (#6497)
- DX: Fix CI static analysis workflow (#6506)
- DX: Fix PHPStan errors (#6504)
- DX: Increase PHPStan level to 6 (#6468)
- DX: Narrow docblock types in Runner and Report (#6465)
- DX: Narrow docblock types in Tokenizer (#6293)
- minor: extract NoMultipleStatementsPerLineFixer from BracesFixer (#6458)
- minor: Let PhpdocLineSpan fixer detect docblocks when seperator from token with attribute (#6343)
v3.9.4
- bug: Fix various indentation issues (#6480)
- bug: Fix wrong brace position after static return type (#6485)
- bug: Prevent breaking functions returning by reference (#6487)
v3.9.3
- bug: Fix BinaryOperatorSpacesFixer adding whitespace outside PHP blocks (#6476)
- bug: Fix brace location after multiline function signature (#6475)
v3.9.2
- bug: Fix indentation after control structure in switch (#6473)
v3.9.1
- bug: Add attributes support to
statement_indentation
(#6429) - bug: BinaryOperatorSpacesFixer - Allow to align
=
inside array definitions (#6444) - bug: BinaryOperatorSpacesFixer - Fix align of operator with function declaration (#6445)
- bug: ConstantCaseFixer - Do not touch enum case (#6367)
- bug: CurlyBracesPositionFixer - multiple elseifs (#6459)
- bug: Fix #6439 issue in
StaticLambda
fixer (#6440) - bug: FullOpeningTagFixer - fix substr check for pre PHP8 (#6388)
- bug: IncrementStyleFixer - NoSpacesInsideParenthesisFixer - prio (#6416)
- bug: LambdaNotUsedImportFixer must run before MethodArgumentSpaceFixer (#6453)
- bug: MethodArgumentSpaceFixer - first element in same line, space before comma and inconsistent indent (#6438)
- bug: NoSuperfluousPhpdocTagsFixer - fix for promoted properties (#6403)
- bug: StatementIndentationFixer - Fix indentation for multiline traits use (#6402)
- bug: StrictComparisonFixer must rune before ModernizeStrposFixer (#6455)
- bug: TokensAnalyzer - fix intersection types considered as binary operator (#6414)
- DX:
ISSUE_TEMPLATE
hints to check applied rules (#6398) - DX: Add more type hints (#6383)
- DX: Fix CI/CD issues (#6411)
- DX: cleanup test (#6410)
- DX: integrate MRLint (#6406)
- feature: BlankLineBetweenImportGroupsFixer - Introduction (#6365)
- feature: DateTimeCreateFromFormatCallFixer - Add DateTimeImmutable support (#6350)
- feature: Extract StatementIndentationFixer from BracesFixer (#5960)
- feature: ModernizeStrposFixer - fix leading backslash with yoda (#6377)
- feature: NoExtraBlankLinesFixer - Add
attributes
option - Fix support forenum
case
(#6426) - feature: NoUnneededControlParenthesesFixer - Fix more cases (#6409)
- feature: NoUselessNullsafeOperatorFixer - Introduction (#6425)
- feature: OrderedTrait - Move Phpdoc with trait import (#6361)
- feature: PhpdocOrderByValueFixer - Allow sorting of mixin annotations by value (#6446)
- feature: TrailingCommaInMultiline - Add
match
support (#6381) - minor: Allow Composer Normalize plugin (#6454)
- minor: ExplicitStringVariableFixer - Fix to PHP8.2 compat code (#6424)
- minor: Extract ControlStructureBracesFixer from BracesFixer (#6399)
- minor: NoBinaryStringFixer - Fix more cases (#6442)
- minor: NoSuperfluousPhpdocTagsFixer - Attribute handling (#6382)
- minor: PhpCsFixerSet - Update blank_line_before_statement config (#6389)
- minor: Remove unnecessary PHP version constraints (#6461)
- minor: SingleImportPerStatementFixer - fix PSR12 set (#6415)
- minor: SingleSpaceAfterConstructFixer - add option
type_colon
(#6434) - minor: SymfonySet - Add SimpleToComplexStringVariableFixer (#6423)
- minor: Update PHPStan (#6467)
- minor: extract CurlyBracesPositionFixer from BracesFixer (#6452)
v3.8.0
- bug #6322 PhpdocTypesFixer - fix recognizing callable (kubawerlos)
- bug #6331 ClassReferenceNameCasingFixer - Fix false hits (SpacePossum)
- bug #6333 BinaryOperatorSpacesFixer - Fix for alignment in
elseif
(paulbalandan, SpacePossum) - bug #6337 PhpdocTypesFixer - fix recognising callable without return type (kubawerlos)
- feature #6286 DateTimeCreateFromFormatCallFixer - Introduction (liquid207)
- feature #6312 TypesSpacesFixer - add option for CS of catching multiple types of exceptions (SpacePossum)
- minor #6326 Bump migration sets used to PHP7.4 (SpacePossum)
- minor #6328 DX: .gitignore ASC file (keradus)
v3.7.0
- bug #6112 [BinaryOperatorSpacesFixer] Fix align of
=
inside calls of methods (VincentLanglet) - bug #6279 ClassReferenceNameCasingFixer - Fix for double arrow (SpacePossum)
- bug #6280 Fix bunch of enum issus (SpacePossum)
- bug #6283 ClassReferenceNameCasingFixer - detect imports (SpacePossum)
- feature #5892 NewWithBracesFixer - option to remove braces (jrmajor)
- feature #6081 Allow multiline constructor arguments in an anonymous classes (jrmajor, SpacePossum)
- feature #6274 SingleLineCommentSpacingFixer - Introduction (SpacePossum)
- feature #6300 OrderedClassElementsFixer - handle enums (gharlan)
- feature #6304 NoTrailingCommaInSinglelineFunctionCallFixer - Introduction (SpacePossum)
- minor #6277 Add
is_scalar
,sizeof
,ini_get
in list of compiled functions (jderusse) - minor #6284 ClassReferenceNameCasingFixer - Update doc (SpacePossum)
- minor #6289 PHP7.4 - clean up tests (SpacePossum)
- minor #6290 PHP7.4 - properties types (SpacePossum)
- minor #6291 PHP7.4 - remove run time checks (SpacePossum)
- minor #6292 PhpUnitDedicateAssertFixer - Fix more count cases (SpacePossum)
- minor #6294 PhpUnitDedicateAssertFixer - add assertInstanceOf support (SpacePossum)
- minor #6295 PhpUnitTestCaseIndicator - Check if PHPUnit-test class extends anothe… (SpacePossum)
- minor #6298 Fix checkbashisms download ans SCA violations (SpacePossum)
- minor #6301 BracesFixer - handle enums (gharlan)
- minor #6302 Bump checkbashisms version (kubawerlos)
- minor #6303 PHP8 - Utilize "get_debug_type" (SpacePossum)
- minor #6316 bump xdebug-handler (SpacePossum)
- minor #6327 bump polyfills (SpacePossum)
v3.6.0
- bug #6063 PhpdocTypesOrderFixer - Improve nested types support (ruudk, julienfalque)
- bug #6197 FullyQualifiedStrictTypesFixer - fix same classname is imported from … (SpacePossum)
- bug #6241 NoSuperfluousPhpdocTagsFixer - fix for reference and splat operator (kubawerlos)
- bug #6243 PhpdocTypesOrderFixer - fix for intersection types (kubawerlos)
- bug #6254 PhpUnitDedicateAssertFixer - remove
is_resource
. (drupol) - bug #6264 TokensAnalyzer - fix isConstantInvocation detection for mulitple exce… (SpacePossum)
- bug #6265 NullableTypeDeclarationForDefaultNullValueFixer - handle "readonly" a… (SpacePossum)
- bug #6266 SimplifiedIfReturnFixer - handle statement in loop without braces (SpacePossum)
- feature #6262 ClassReferenceNameCasingFixer - introduction (SpacePossum)
- feature #6267 NoUnneededImportAliasFixer - Introduction (SpacePossum)
- minor #6199 HeaderCommentFixer - support monolithic files with shebang (kubawerlos, keradus)
- minor #6231 Fix priority descriptions and tests. (SpacePossum)
- minor #6237 DX: Application - better display version when displaying gitSha (keradus)
- minor #6242 Annotation - improve on recognising types with reference and splat operator (kubawerlos)
- minor #6250 Tokens - optimize cache clear (SpacePossum)
- minor #6269 Docs: redo warnings in RST docs to fix issue on website docs (keradus)
- minor #6270 ClassReferenceNameCasingFixer - Add missing test cases for catch (SpacePossum)
- minor #6273 Add priority test (SpacePossum)
v3.5.0
- bug #6058 Fix
Tokens::insertSlices
not moving around all affected tokens (paulbalandan, SpacePossum) - bug #6160 NonPrintableCharacterFixer - fix for when removing non-printable character break PHP syntax (kubawerlos)
- bug #6165 DeclareEqualNormalizeFixer - fix for declare having multiple directives (kubawerlos)
- bug #6170 NonPrintableCharacterFixer - fix for string in single quotes, having non-breaking space, linebreak, and single quote inside (kubawerlos)
- bug #6181 UseTransformer - Trait import in enum fix (PHP8.1) (SpacePossum)
- bug #6188 PhpdocTo(Param|Property|Return)TypeFixer - fix for type intersections (kubawerlos)
- bug #6202 SquareBraceTransformer - fix for destructing square brace after double arrow (kubawerlos)
- bug #6209 OrderedClassElementsFixer - PHP8.0 support abstract private methods in traits (SpacePossum)
- bug #6224 ArgumentsAnalyzer - support PHP8.1 readonly (SpacePossum)
- feature #4571 BlankLineBeforeStatementFixer - can now add blank lines before doc-comments (addiks, SpacePossum)
- feature #5953 GetClassToClassKeywordFixer - introduction (paulbalandan)
- minor #6108 Drop support for Symfony v4 (keradus)
- minor #6163 CI: update used PHP version (keradus)
- minor #6167 SingleSpaceAfterConstructFixer - allow multiline const (y_ahiru, SpacePossum)
- minor #6168 indexes -> indices (SpacePossum)
- minor #6171 Fix tests and CS (SpacePossum)
- minor #6172 DX: Tokens::insertSlices - groom code and fix tests (keradus)
- minor #6174 PhpdocAlignFixer: fix property-read/property-write descriptions not getting aligned (antichris)
- minor #6177 DX: chmod +x for benchmark.sh file (keradus)
- minor #6180 gitlab reporter - add fixed severity to match format (cbourreau)
- minor #6183 Simplify DiffConsoleFormatter (kubawerlos)
- minor #6184 Do not support array of patterns in Preg methods (kubawerlos)
- minor #6185 Upgrade PHPStan (kubawerlos)
- minor #6189 Finder - fix usage of ignoreDotFiles (kubawerlos)
- minor #6190 DX: DiffConsoleFormatter - escape - (keradus)
- minor #6194 Update Docker setup (julienfalque)
- minor #6196 clean ups (SpacePossum)
- minor #6198 DX: format dot files (kubawerlos)
- minor #6200 DX: Composer's branch-alias leftovers cleanup (kubawerlos)
- minor #6203 Bump required PHP to 7.4 (keradus)
- minor #6205 DX: bump PHPUnit to v9, PHPUnit bridge to v6 and Prophecy-PHPUnit to v2 (keradus)
- minor #6210 NullableTypeDeclarationForDefaultNullValueFixer - fix tests (HypeMC)
- minor #6212 bump year 2021 -> 2022 (SpacePossum)
- minor #6215 DX: Doctrine\Annotation\Tokens - fix phpstan violations (keradus)
- minor #6216 DX: Doctrine\Annotation\Tokens - drop unused methods (keradus)
- minor #6217 DX: lock SCA tools for MR builds (keradus)
- minor #6218 Use composer/xdebug-handler v3 (gharlan)
- minor #6222 Show runtime on version command (SpacePossum)
- minor #6229 Simplify Tokens::isMonolithicPhp tests (kubawerlos)
- minor #6232 Use expectNotToPerformAssertions where applicable (SpacePossum)
- minor #6233 Update Tokens::isMonolithicPhp (kubawerlos)
- minor #6236 Annotation - improve getting variable name (kubawerlos)
thephpleague/uri
v6.7.1
Added
- None
Fixed
-
UriInfo::isCrossOrigin
method is fix to make it work with any PSR-7 compliant object 205
Deprecated
- None
Remove
- None
v6.7.0
Added
-
UriInfo::isCrossOrigin
method
Fixed
- None
Deprecated
- None
Remove
- None
v6.6.0
Added
- None
Fixed
- Some errors are moved from
TypeError
toInvalidArgumentException
to align with otherUriInterface
PSR-7 implementations. - Improved documentation by @GwendolenLynch
- Added PSR7 compliance tests from the PHP-HTTP group
Deprecated
- None
Remove
- Support for PHP7.3
Configuration
-
If you want to rebase/retry this MR, click this checkbox.
This MR has been generated by Renovate Bot.
Edited by Reiter, Christoph