Skip to content

fix(deps): update all non-major dependencies (minor)

Reiter, Christoph requested to merge renovate/all-minor-patch into main

This MR contains the following updates:

Package Type Update Change
dragonmantank/cron-expression require minor 3.1.0 -> 3.3.0
friendsofphp/php-cs-fixer require-dev minor 3.4.0 -> 3.5.0
phpstan/phpstan require-dev minor 1.2.0 -> 1.4.0
vimeo/psalm require-dev minor 4.15.0 -> 4.18.1

Release Notes

dragonmantank/cron-expression

v3.3.0

Compare Source

Added
  • Added ability to register your own expression aliases (#​132)
Changed
  • Changed how Day of Week and Day of Month resolve when one or the other is * or ?
Fixed
  • PHPStan should no longer error out

v3.2.4

Compare Source

Added
  • N/A
Changed
  • Changed how Day of Week increment/decrement to help with DST changes (#​131)
Fixed
  • N/A

v3.2.3

Compare Source

Added
  • N/A
Changed
  • Changed how minutes and hours increment/decrement to help with DST changes (#​131)
Fixed
  • N/A

v3.2.2

Compare Source

Added
  • N/A
Changed
  • Marked some methods @internal (#​124)
Fixed
  • Fixed issue with small ranges and large steps that caused an error with range() (#​88)
  • Fixed issue where wraparound logic incorrectly considered high bound on range (#​89)

v3.2.1

Compare Source

Added
  • N/A
Changed
  • Added PHP 8.1 to testing (#​125)
Fixed
  • Allow better mixture of ranges, steps, and lists (#​122)
  • Fixed return order when multiple dates are requested and inverted (#​121)
  • Better handling over DST (#​115)
  • Fixed PHPStan tests (#​130)

v3.2.0

Compare Source

Added
  • Added alias for @midnight (#​117)
Changed
  • Improved testing for instance of field in tests (#​105)
  • Optimization for determining multiple run dates (#​75)
  • CronExpression properties changed from private to protected (#​106)
Fixed
  • N/A
FriendsOfPHP/PHP-CS-Fixer

v3.5.0

Compare Source

  • 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)
phpstan/phpstan

v1.4.0

Compare Source

This release fixes 25 issues! 🎉

Major new features 🚀

  • Support for PHP 8.1 readonly properties (RFC)
    • Readonly properties must be assigned in the constructor of the declaring class
    • Memoized type of a readonly property is not invalidated even when calling a method with side effects
    • Readonly properties cannot be passed by reference
  • Improved detection of incorrect types assigned to properties:

Improvements 🔧

Bugfixes 🐛

Thanks to some internal refactorings listed below, the following issues have been fixed: #​5337, #​4910, #​5316, #​5607, #​3766, #​3858, #​3310, #​3264, #​2806, #​5328, #​3044, #​6184, #​3339, #​5656, #​5362, #​3867, #​5707

Function signature fixes 🤖

v1.3.3

Compare Source

Improvements 🔧

v1.3.2

Compare Source

Improvements

Bugfixes 🐛

Function signature fixes 🤖

v1.3.1

Compare Source

Bugfixes 🐛

Function signature fixes 🤖

v1.3.0

Compare Source

Major new features 🚀

  • Support for PHP 8.1 Enums - RFC
  • Upgraded Roave/BetterReflection to 5.0.0
    • PHP 7.1+ is still supported because the dependency is downgraded automatically in our own fork
    • This brings plenty of bugfixes, for example PHP 8.0 Attributes can now be read in static reflection context
  • PHPStan now works when OPCache is enabled!
  • The development repository phpstan/phpstan-src is now PHP 8.0+ only, while the distribution package phpstan/phpstan still supports PHP 7.1+.
    • This is achieved thanks to automatic downgrade of source code using Rector during PHAR compilation
    • PHPStan now ships with Symfony PHP polyfills for PHP 7.2-8.0.

Improvements 🔧

Bugfixes 🐛

Function signature fixes 🤖

vimeo/psalm

v4.18.1

Compare Source

What's changed

Fixed

Full Changelog: https://github.com/vimeo/psalm/compare/4.18...4.18.1

v4.18

Compare Source

Compatibility

Psalm now required Composer 2.

What's Changed

Deprecations
Features
Fixes
Internal changes

New Contributors

Full Changelog: https://github.com/vimeo/psalm/compare/4.17.0...4.18

v4.17.0

Compare Source

What's Changed

Features
Fixes
Internal changes

New Contributors

Full Changelog: https://github.com/vimeo/psalm/compare/4.16.1...4.17.0

v4.16.1

Compare Source

What's Changed

Fixes

Full Changelog: https://github.com/vimeo/psalm/compare/4.16.0...4.16.1

v4.16.0

Compare Source

What's Changed

Removed
  • Codebase::$use_referencing_files, Context::$possible_param_types and FunctionLikeStorage::$template_covariants were removed. We do not believe they were used by anyone, thus we don't consider it to be a BC break
Features
Fixes
Docs
Internal changes

New Contributors

Full Changelog: https://github.com/vimeo/psalm/compare/v4.15.0...4.16.0


Configuration

📅 Schedule: "every weekend" (UTC).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever MR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This MR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this MR, click this checkbox.

This MR has been generated by Renovate Bot.

Edited by Reiter, Christoph

Merge request reports