Update php-dev #36

Merged
Renovate merged 1 commits from renovate/php-dev into main 2025-02-07 00:14:01 +00:00
Contributor

This PR contains the following updates:

Package Type Update Change
phpunit/phpunit (source) require-dev patch 11.5.6 -> 11.5.7
rector/rector (source) require-dev patch 2.0.7 -> 2.0.8

Release Notes

sebastianbergmann/phpunit (phpunit/phpunit)

v11.5.7: PHPUnit 11.5.7

Compare Source

Changed
  • #​5951: The includeUncoveredFiles configuration option is no longer deprecated
  • #​6117: Include source location information for issues triggered during test in --debug output
  • #​6119: Improve message for errors that occur while parsing attributes
  • #​6120: Allow negative priorities for hook methods

How to install or update PHPUnit

rectorphp/rector (rector/rector)

v2.0.8: Released: Rector 2.0.8

Compare Source

New Features 🥳


Bugfixes 🐛

  • [CodeQuality] Skip with comment inside on SimplifyIfElseToTernaryRector (#​6683)
  • [CodeQuality] Skip windows absolute path on AbsolutizeRequireAndIncludePathRector (#​6684)
  • [Strict] Handle in assign on BooleanInIfConditionRuleFixerRector (#​6685)
  • Replace ambiguous wrapped_with_brackets with existing attribute wrapped_in_parentheses (#​6691)
  • [NodeTypeResolver] Clean up wrap in parentheses check ReprintNodeVisitor (#​6692)
  • [Php80][TypeDeclaration] Fix crash on ClassPropertyAssignToConstructorPromotionRector + ReturnNeverTypeRector (#​6694)
  • CodeClimate output format (#​6697), Thanks @​VitalyArt!
  • Exclude node modules path (#​6702), Thanks @​vaishnavyogesh!
  • Fix str_getcsv() escape argument on PHP 8.4 (#​6704)
  • [Php74] Handle crash curly based array on trait on CurlyToSquareBracketArrayStringRector (#​6706)
  • [Php73] Handle infinite cast on StringifyStrNeedlesRector (#​6707)
  • Clean up unused use (#​6708)
  • fix: NewlineBeforeNewAssignSetRector variable as same name like property (#​6705), Thanks @​guideloince!
  • [TypeDeclaration] Skip override trait method on StrictStringParamConcatRector (#​6711)
  • [Test] Clean up test on WorkerCommandLineFactoryTest (#​6714)
  • [DX] Move isWindows() method from AbstractRectorTestCase to AbstractLazyTestCase (#​6715)
  • [Performance] Use exactly equal or append / file path check on RealpathMatcher (#​6716)
  • [TypeDeclaration] Allow union with closure type on property on TypedPropertyFromAssignsRector (#​6717)
  • [DeadCode] Skip union falsy mixed on trait on RecastingRemovalRector (#​6718)
  • Skip hexa chars in EncapsedStringsToSprintfRector (#​6719)
  • [CodingStyle] Rename method: containsASCIIChar to containsControlASCIIChar on EncapsedStringsToSprintfRector (#​6720)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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

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


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [phpunit/phpunit](https://phpunit.de/) ([source](https://github.com/sebastianbergmann/phpunit)) | require-dev | patch | `11.5.6` -> `11.5.7` | | [rector/rector](https://getrector.org) ([source](https://github.com/rectorphp/rector)) | require-dev | patch | `2.0.7` -> `2.0.8` | --- ### Release Notes <details> <summary>sebastianbergmann/phpunit (phpunit/phpunit)</summary> ### [`v11.5.7`](https://github.com/sebastianbergmann/phpunit/releases/tag/11.5.7): PHPUnit 11.5.7 [Compare Source](https://github.com/sebastianbergmann/phpunit/compare/11.5.6...11.5.7) ##### Changed - [#&#8203;5951](https://github.com/sebastianbergmann/phpunit/issues/5951): The `includeUncoveredFiles` configuration option is no longer deprecated - [#&#8203;6117](https://github.com/sebastianbergmann/phpunit/issues/6117): Include source location information for issues triggered during test in `--debug` output - [#&#8203;6119](https://github.com/sebastianbergmann/phpunit/issues/6119): Improve message for errors that occur while parsing attributes - [#&#8203;6120](https://github.com/sebastianbergmann/phpunit/issues/6120): Allow negative priorities for hook methods *** [How to install or update PHPUnit](https://docs.phpunit.de/en/11.5/installation.html) </details> <details> <summary>rectorphp/rector (rector/rector)</summary> ### [`v2.0.8`](https://github.com/rectorphp/rector/releases/tag/2.0.8): Released: Rector 2.0.8 [Compare Source](https://github.com/rectorphp/rector/compare/2.0.7...2.0.8) #### New Features :partying_face: - feat: add coding style levels ([#&#8203;6695](https://github.com/rectorphp/rector-src/pull/6695)), Thanks [@&#8203;carlos-granados](https://github.com/carlos-granados)! <br> #### Bugfixes :bug: - \[CodeQuality] Skip with comment inside on SimplifyIfElseToTernaryRector ([#&#8203;6683](https://github.com/rectorphp/rector-src/pull/6683)) - \[CodeQuality] Skip windows absolute path on AbsolutizeRequireAndIncludePathRector ([#&#8203;6684](https://github.com/rectorphp/rector-src/pull/6684)) - \[Strict] Handle in assign on BooleanInIfConditionRuleFixerRector ([#&#8203;6685](https://github.com/rectorphp/rector-src/pull/6685)) - Replace ambiguous wrapped_with_brackets with existing attribute wrapped_in_parentheses ([#&#8203;6691](https://github.com/rectorphp/rector-src/pull/6691)) - \[NodeTypeResolver] Clean up wrap in parentheses check ReprintNodeVisitor ([#&#8203;6692](https://github.com/rectorphp/rector-src/pull/6692)) - \[Php80]\[TypeDeclaration] Fix crash on ClassPropertyAssignToConstructorPromotionRector + ReturnNeverTypeRector ([#&#8203;6694](https://github.com/rectorphp/rector-src/pull/6694)) - CodeClimate output format ([#&#8203;6697](https://github.com/rectorphp/rector-src/pull/6697)), Thanks [@&#8203;VitalyArt](https://github.com/VitalyArt)! - Exclude node modules path ([#&#8203;6702](https://github.com/rectorphp/rector-src/pull/6702)), Thanks [@&#8203;vaishnavyogesh](https://github.com/vaishnavyogesh)! - Fix str_getcsv() escape argument on PHP 8.4 ([#&#8203;6704](https://github.com/rectorphp/rector-src/pull/6704)) - \[Php74] Handle crash curly based array on trait on CurlyToSquareBracketArrayStringRector ([#&#8203;6706](https://github.com/rectorphp/rector-src/pull/6706)) - \[Php73] Handle infinite cast on StringifyStrNeedlesRector ([#&#8203;6707](https://github.com/rectorphp/rector-src/pull/6707)) - Clean up unused use ([#&#8203;6708](https://github.com/rectorphp/rector-src/pull/6708)) - fix: NewlineBeforeNewAssignSetRector variable as same name like property ([#&#8203;6705](https://github.com/rectorphp/rector-src/pull/6705)), Thanks [@&#8203;guideloince](https://github.com/guideloince)! - \[TypeDeclaration] Skip override trait method on StrictStringParamConcatRector ([#&#8203;6711](https://github.com/rectorphp/rector-src/pull/6711)) - \[Test] Clean up test on WorkerCommandLineFactoryTest ([#&#8203;6714](https://github.com/rectorphp/rector-src/pull/6714)) - \[DX] Move isWindows() method from AbstractRectorTestCase to AbstractLazyTestCase ([#&#8203;6715](https://github.com/rectorphp/rector-src/pull/6715)) - \[Performance] Use exactly equal or append / file path check on RealpathMatcher ([#&#8203;6716](https://github.com/rectorphp/rector-src/pull/6716)) - \[TypeDeclaration] Allow union with closure type on property on TypedPropertyFromAssignsRector ([#&#8203;6717](https://github.com/rectorphp/rector-src/pull/6717)) - \[DeadCode] Skip union falsy mixed on trait on RecastingRemovalRector ([#&#8203;6718](https://github.com/rectorphp/rector-src/pull/6718)) - Skip hexa chars in EncapsedStringsToSprintfRector ([#&#8203;6719](https://github.com/rectorphp/rector-src/pull/6719)) - \[CodingStyle] Rename method: containsASCIIChar to containsControlASCIIChar on EncapsedStringsToSprintfRector ([#&#8203;6720](https://github.com/rectorphp/rector-src/pull/6720)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xODEuNiIsInVwZGF0ZWRJblZlciI6IjM3LjE4MS42IiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->
Renovate added 1 commit 2025-02-07 00:04:12 +00:00
Renovate scheduled this pull request to auto merge when all checks succeed 2025-02-07 00:04:13 +00:00
Renovate merged commit fd0f74bdad into main 2025-02-07 00:14:01 +00:00
Sign in to join this conversation.
No Reviewers
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: camelia-studio/Kumora#36
No description provided.