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-dev): bump the minor-patch-dependencies group with 5 updates #10

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 9, 2023

Updates the requirements on infection/infection, mimmi20/coding-standard, phpstan/phpstan, phpunit/phpunit and rector/rector to permit the latest version.
Updates infection/infection to 0.27.9

Release notes

Sourced from infection/infection's releases.

Fix an issue with numeric data provider keys in PHPUnit >= 10

Fixed:

Full Changelog: infection/infection@0.27.8...0.27.9

Commits
  • 61e6d06 Revert "Disable Box Requirements Checker as it conflicts as the package "symf...
  • 23c94d5 build: Disable the requirement checker (#1903)
  • 5583296 Disable Box Requirements Checker as it conflicts as the package "symfony/serv...
  • 6a46a15 Fix an issue with numeric data provider keys and run tests with format clear ...
  • 5d7a36f Upgrade to Box 4.5.1 (#1766)
  • f456c92 ci: Skip tests if Symfony6 & locked (#1837)
  • See full diff in compare view

Updates mimmi20/coding-standard to 5.2.0

Release notes

Sourced from mimmi20/coding-standard's releases.

fix property names

What’s Changed

🐞 Bugs:

🕸 Dependencies:

🧹 Maintenance:

👨🏼‍💻 Contributors

@​mimmi20

Commits
  • acdf54a Merge pull request #422 from mimmi20/updates
  • 4e344c7 update dependencies
  • 35fcb33 fix property names
  • 12012d2 Merge pull request #419 from mimmi20/dependabot/composer/master/friendsofphp/...
  • ac90c0b remove deleted rector
  • 073ab02 composer(deps): update friendsofphp/php-cs-fixer requirement
  • 0a43762 Merge pull request #418 from mimmi20/dependabot/composer/master/minor-patch-d...
  • 2b938c9 composer(deps-dev): bump the minor-patch-dependencies group with 1 update
  • e4370c4 Merge pull request #417 from mimmi20/dependabot/composer/master/minor-patch-d...
  • d5fa2a5 composer(deps-dev): bump the minor-patch-dependencies group with 1 update
  • See full diff in compare view

Updates phpstan/phpstan to 1.10.48

Release notes

Sourced from phpstan/phpstan's releases.

1.10.48

Bleeding edge 🔪

If you want to see the shape of things to come and adopt bleeding edge features early, you can include this config file in your project's phpstan.neon:

includes:
	- vendor/phpstan/phpstan/conf/bleedingEdge.neon

Of course, there are no backwards compatibility guarantees when you include this file. The behaviour and reported errors can change in minor versions with this file included. Learn more

Improvements 🔧

Bugfixes 🐛

Function signature fixes 🤖

Commits
  • 087ed4b PHPStan 1.10.48
  • 8ada96c Update baselines
  • fa5d5f9 Updated PHPStan to commit fa5d5f958b051b088fb0824d377a091273d6436c
  • 34dfd6a Updated PHPStan to commit 34dfd6aa45963c83cb5f733dae4890ed1a63cbda
  • cf2c8bb Updated PHPStan to commit cf2c8bbd9ebd2ebe300dbd310e136ad603d7def3
  • a1fffb3 Updated PHPStan to commit a1fffb3346e09f1e8e8d987d4282263295a55142
  • 3a12724 Updated PHPStan to commit 3a12724fd636b1bcf36c22b36e8f765d97150895
  • 0a3a968 Updated PHPStan to commit 0a3a968b86773a54e102baee4f63d39a556c97fc
  • 1b126c9 Updated PHPStan to commit 1b126c9a49ec934b381e35a58bf412292762cbef
  • 942eaa4 Update baselines
  • Additional commits viewable in compare view

Updates phpunit/phpunit to 10.5.2

Changelog

Sourced from phpunit/phpunit's changelog.

10.5.2 - 2023-12-05

Fixed

  • #5561: JUnit XML logger does not handle assertion failures in before-test methods
  • #5567: Infinite recursion when recursive / self-referencing arrays are checked whether they contain only scalar values

10.5.1 - 2023-12-01

Fixed

  • #5593: Return Value Generator fails to correctly create test stub for method with static return type declaration when used recursively
  • #5596: PHPUnit\Framework\TestCase has @internal annotation in PHAR

10.5.0 - 2023-12-01

Added

  • #5532: #[IgnoreDeprecations] attribute to ignore E_(USER_)DEPRECATED issues on test class and test method level
  • #5551: Support for omitting parameter default values for willReturnMap()
  • #5577: --composer-lock CLI option for PHAR binary that displays the composer.lock used to build the PHAR

Changed

  • MockBuilder::disableAutoReturnValueGeneration() and MockBuilder::enableAutoReturnValueGeneration() are no longer deprecated

Fixed

  • #5563: createMockForIntersectionOfInterfaces() does not automatically register mock object for expectation verification
Commits

Updates rector/rector to 0.18.12

Release notes

Sourced from rector/rector's releases.

Released Rector 0.18.12

New Features 🥳

  • [CodeQuality] Add RemoveUselessIsObjectCheckRector (#5316)
  • [PHP83] Implements a rule to add types to class constants (#5290), Thanks @​peterfox!

Bugfixes 🐛

  • [TypeDeclaration] Skip iterable already there in AddReturnTypeDeclarationFromYieldsRector (#5291)
  • [TypeDeclaration] Remove ParamTypeFromStrictTypedPropertyRector as seems similar feature with AddParamTypeFromPropertyTypeRector (#5293)
  • [CodingStyle] Remove AddArrayDefaultToArrayPropertyRector as based on docblock types and public contract, better use type declaration set instad (#5298)
  • [TypeDeclaration] Skip return void in abstract empty class in AddVoidReturnTypeWhereNoReturnRector (#5311)
  • [Php80] Skip PDO::query() on AddParamBasedOnParentClassMethodRector (#5313)
  • [TypeDeclaration] Add If else assign support on TypedPropertyFromAssignsRector (#5314)
  • [CodeQuality] Make CommonNotEqualRector skip if not <> (#5292)
  • [Naming] Skip singularize "cms" on RenameForeachValueVariableToMatchExprVariableRector (#5294)
  • [TypeDeclaration][Performance] Check typed param already early on ParamTypeByMethodCallTypeRector (#5295)
  • [Strict] Fix DisallowedEmptyRuleFixerRector empty() allow string '0' check (#5296)
  • [EarlyReturn] Skip duplicating complex expression in ChangeAndIfToEarlyReturnRector (#5301)
  • [Scoped] Exclude symfony/console/Debug/CliRequest.php from parallel-lint PHP 7.2 syntax check (#5304)
  • Skip RenameMethodRector in never (#5305), Thanks @​staabm!
  • [CodeQuality] Skip with else on SimplifyForeachToCoalescingRector (#5307)
  • [Doc] Typo fix on sample code documentation on SimplifyForeachToCoalescingRector (#5308)
  • [Privatization] Skip call non-private method on non-final class on PrivatizeLocalGetterToPropertyRector (#5309)
  • [Privatization] Fix first class callable in PrivatizeLocalGetterToPropertyRector (#5310)
  • [TypeDeclaration] Keep constant false return type from strict native call (#5223), Thanks @​tomi85!
  • [PHP 7.0] Skip mt_rand() replacement as not valuable (#5315)
  • [Strict] Allow check '0' empty zero on BooleanInTernaryOperatorRuleFixerRector on string type (#5297)
  • Fix annotation to attribute parsing string (#5317)
  • [Instanceof] Fix combination of dead instance and compare (#5319)
  • Remove isPositiveInteger() check for third argument to strpos() (#5257), Thanks @​ikari7789!
  • Remove return type in case of void in RemoveUselessReturnTagRector (#5318)
  • [DeadCode] Skip @​return never with void on RemoveUselessReturnTagRector (#5320)
  • [DeadCode] Remove useless nullable @​return doc on RemoveUselessReturnTagRector (#5321)
Commits
  • ed8d535 Rector 0.18.12
  • 6cba206 Updated Rector to commit 80cf5781c3bf477076753e2a0c2890ae0ecbb4c1
  • ee373e6 Updated Rector to commit 41729c25cb33ec5219433d5e101d6d54ed4045a2
  • d9834a6 Updated Rector to commit 8e6d46a58fff8e6bd5276b9ae473bfb91460b487
  • ab4ff53 Updated Rector to commit 026398c9e1078cb3ac5cac41767b620872166859
  • 07dd432 Updated Rector to commit b8e6818ed04f3aa07218569509bd819db3649820
  • 7124cd0 Updated Rector to commit 055ab62e3fa14a1aaccd2a5e7f2a9fd354fbd600
  • e7fa7d1 Updated Rector to commit 18617f9880d098bceae210512c190c8d44aa7811
  • 9d01b5b Updated Rector to commit d9c5d8f09bfd68e7496c07c23ddac03447cfbb32
  • cd89d88 Updated Rector to commit e3f909cf030971b542c9c508298c729abb60eefe
  • Additional commits viewable in compare view

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Fixes #9

…dates

Updates the requirements on [infection/infection](https://github.com/infection/infection), [mimmi20/coding-standard](https://github.com/mimmi20/coding-standard), [phpstan/phpstan](https://github.com/phpstan/phpstan), [phpunit/phpunit](https://github.com/sebastianbergmann/phpunit) and [rector/rector](https://github.com/rectorphp/rector) to permit the latest version.

Updates `infection/infection` to 0.27.9
- [Release notes](https://github.com/infection/infection/releases)
- [Changelog](https://github.com/infection/infection/blob/master/CHANGELOG.md)
- [Commits](infection/infection@0.27.8...0.27.9)

Updates `mimmi20/coding-standard` to 5.2.0
- [Release notes](https://github.com/mimmi20/coding-standard/releases)
- [Commits](mimmi20/coding-standard@5.1.27...5.2.0)

Updates `phpstan/phpstan` to 1.10.48
- [Release notes](https://github.com/phpstan/phpstan/releases)
- [Changelog](https://github.com/phpstan/phpstan/blob/1.11.x/CHANGELOG.md)
- [Commits](phpstan/phpstan@1.10.47...1.10.48)

Updates `phpunit/phpunit` to 10.5.2
- [Changelog](https://github.com/sebastianbergmann/phpunit/blob/10.5.2/ChangeLog-10.5.md)
- [Commits](sebastianbergmann/phpunit@10.5.1...10.5.2)

Updates `rector/rector` to 0.18.12
- [Release notes](https://github.com/rectorphp/rector/releases)
- [Commits](rectorphp/rector@0.18.11...0.18.12)

---
updated-dependencies:
- dependency-name: infection/infection
  dependency-type: direct:development
  dependency-group: minor-patch-dependencies
- dependency-name: mimmi20/coding-standard
  dependency-type: direct:development
  dependency-group: minor-patch-dependencies
- dependency-name: phpstan/phpstan
  dependency-type: direct:development
  dependency-group: minor-patch-dependencies
- dependency-name: phpunit/phpunit
  dependency-type: direct:development
  dependency-group: minor-patch-dependencies
- dependency-name: rector/rector
  dependency-type: direct:development
  dependency-group: minor-patch-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from mimmi20 as a code owner December 9, 2023 03:53
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Dec 9, 2023
Copy link
Contributor

github-actions bot commented Dec 9, 2023

Dependency Review

✅ No vulnerabilities or license issues found.

Scanned Manifest Files

composer.json
  • infection/infection@>= 0.27.9, < 0.28.0
  • mimmi20/coding-standard@>= 5.2.0, < 6.0.0
  • phpstan/phpstan@>= 1.10.48, < 2.0.0
  • phpunit/phpunit@>= 10.5.2, < 11.0.0
  • rector/rector@>= 0.18.12, < 0.19.0
  • infection/infection@>= 0.27.8, < 0.28.0
  • mimmi20/coding-standard@>= 5.1.27, < 6.0.0
  • phpstan/phpstan@>= 1.10.47, < 2.0.0
  • phpunit/phpunit@>= 10.5.1, < 11.0.0
  • rector/rector@>= 0.18.11, < 0.19.0

@mimmi20 mimmi20 added the maintenance Maintenance label Dec 9, 2023
Copy link

codecov bot commented Dec 9, 2023

Codecov Report

All modified and coverable lines are covered by tests ✅

Comparison is base (75b816b) 100.00% compared to head (f581ed8) 100.00%.

Additional details and impacted files
@@             Coverage Diff             @@
##              master       #10   +/-   ##
===========================================
  Coverage     100.00%   100.00%           
  Complexity        29        29           
===========================================
  Files              4         4           
  Lines             97        97           
===========================================
  Hits              97        97           
Flag Coverage Δ
php-8.1 100.00% <ø> (ø)
phpunit 100.00% <ø> (ø)
ubuntu-20.04 100.00% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@mimmi20 mimmi20 merged commit 18ed332 into master Dec 9, 2023
72 checks passed
@mimmi20 mimmi20 deleted the dependabot/composer/master/minor-patch-dependencies-52ccf87389 branch December 9, 2023 11:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file maintenance Maintenance
Projects
None yet
Development

Successfully merging this pull request may close these issues.

add .noai file
1 participant