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

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 12, 2023

Updates the requirements on mimmi20/ua-browser-type, mimmi20/ua-device-type, mimmi20/coding-standard, phpunit/phpunit and rector/rector to permit the latest version.
Updates mimmi20/ua-browser-type to 9.0.2

Release notes

Sourced from mimmi20/ua-browser-type's releases.

add new client types

What’s Changed

🕸 Dependencies:

  • composer(deps-dev): bump the minor-patch-dependencies group with 2 updates by @​dependabot (#315)
  • composer(deps-dev): bump the minor-patch-dependencies group with 2 updates by @​dependabot (#314)
  • composer(deps-dev): bump the minor-patch-dependencies group with 5 updates by @​dependabot (#312)

🧹 Maintenance:

📦 Documentation:

👨🏼‍💻 Contributors

@​dependabot, @​dependabot[bot] and @​mimmi20

Commits
  • 27ef1b3 Merge pull request #316 from mimmi20/updates
  • debc7ca fix test
  • ae4fe8b add new client types
  • fbf0dab update workflow
  • bc766e7 Merge pull request #315 from mimmi20/dependabot/composer/master/minor-patch-d...
  • f3fb73b composer(deps-dev): bump the minor-patch-dependencies group with 2 updates
  • a8a4e99 Merge pull request #314 from mimmi20/dependabot/composer/master/minor-patch-d...
  • a2bf902 composer(deps-dev): bump the minor-patch-dependencies group with 2 updates
  • a45c5c4 Merge pull request #313 from mimmi20/updates
  • 70a7430 update config for dependabot
  • Additional commits viewable in compare view

Updates mimmi20/ua-device-type to 9.0.2

Release notes

Sourced from mimmi20/ua-device-type's releases.

update dependencies

What’s Changed

🕸 Dependencies:

  • composer(deps-dev): bump the minor-patch-dependencies group with 2 updates by @​dependabot (#323)
  • composer(deps-dev): bump the minor-patch-dependencies group with 2 updates by @​dependabot (#322)
  • composer(deps-dev): bump the minor-patch-dependencies group with 5 updates by @​dependabot (#320)

🧹 Maintenance:

📦 Documentation:

👨🏼‍💻 Contributors

@​dependabot, @​dependabot[bot] and @​mimmi20

Commits
  • b7cfbc7 Merge pull request #324 from mimmi20/updates
  • cdaaebe update workflow
  • 7c0fb5d Merge pull request #323 from mimmi20/dependabot/composer/master/minor-patch-d...
  • 2db8703 composer(deps-dev): bump the minor-patch-dependencies group with 2 updates
  • 7f7c922 Merge pull request #322 from mimmi20/dependabot/composer/master/minor-patch-d...
  • 7a4fac7 composer(deps-dev): bump the minor-patch-dependencies group with 2 updates
  • 725e81f Merge pull request #321 from mimmi20/updates
  • 34839ef update config for dependabot
  • be1f8e3 Merge pull request #320 from mimmi20/dependabot/composer/master/minor-patch-d...
  • 95127d9 composer(deps-dev): bump the minor-patch-dependencies group with 5 updates
  • See full diff in compare view

Updates mimmi20/coding-standard to 5.1.15

Commits
  • 9485f6e Merge pull request #381 from mimmi20/dependabot/composer/master/friendsofphp/...
  • 5b2486a composer(deps): update friendsofphp/php-cs-fixer requirement
  • c1fb927 Merge pull request #379 from mimmi20/dependabot/composer/master/friendsofphp/...
  • 250ab4c composer(deps): update friendsofphp/php-cs-fixer requirement
  • 537c3fa Merge pull request #380 from mimmi20/dependabot/github_actions/master/minor-p...
  • 97b7fa7 github-actions: bump the minor-patch-dependencies group with 1 update
  • a8f1a1d Merge pull request #378 from mimmi20/dependabot/composer/master/minor-patch-d...
  • 1a077cc composer(deps-dev): bump the minor-patch-dependencies group with 1 update
  • 0f8e563 Merge pull request #377 from mimmi20/updates
  • 33ecfb2 exclude packages from grouping
  • See full diff in compare view

Updates phpunit/phpunit to 10.3.3

Changelog

Sourced from phpunit/phpunit's changelog.

[10.3.3] - 2023-09-05

Fixed

  • #5484: TestDox name prettifier only supports backed enumerations
  • #5487: Tests are run more than once if <testsuites> has overlapping <directory>s
  • #5498: Hook methods are run in wrong order

[10.3.2] - 2023-08-15

Deprecated

  • #5423: TestCase::throwException() is no longer deprecated
  • #5425: InvocationMocker::willReturnOnConsecutiveCalls() is no longer deprecated
  • #5444: MockBuilder::setMockClassName() is no longer deprecated

[10.3.1] - 2023-08-04

Fixed

  • #5459: assertStringMatchesFormat() should allow string type (not non-empty-string) for $actual parameter

[10.3.0] - 2023-08-04

Added

  • #5368: Control when PHP's garbage collector is triggered
  • #5428: Attribute #[WithoutErrorHandler] to disable PHPUnit's error handler for a test method
  • #5431: Add more garbage collector details to event telemetry

Changed

  • Errors (E_USER_ERROR), deprecations (E_DEPRECATED, E_USER_DEPRECATED), notices (E_STRICT, E_NOTICE, E_USER_NOTICE), and warnings (E_WARNING, E_USER_WARNINGS) are now displayed grouped by issue
  • When a test case class inherits test methods from a parent class then, by default (when no test reordering is requested), the test methods from the class that is highest in the inheritance tree (instead of the class that is lowest in the inheritance tree) are now run first
  • Invocation count expectation failure messages have been slightly improved
  • When a test case class inherits test methods from a parent class then the TestDox output for such a test case class now starts with test methods from the class that is highest in the inheritance tree (instead of the class that is lowest in the inheritance tree)
  • TestCase::createStub(), TestCase::createStubForIntersectionOfInterfaces(), and TestCase::createConfiguredStub() are now static (and can be used from static data provider methods)
  • The internal methods __phpunit_*() have been removed from the Stub and MockObject interfaces

Deprecated

  • #5214: Deprecate TestCase::iniSet() (this method only has a @deprecated annotation for now; using this method will trigger a deprecation warning in PHPUnit 11; this method will be removed in PHPUnit 12)
  • #5216: Deprecate TestCase::setLocale() (this method only has a @deprecated annotation for now; using this method will trigger a deprecation warning in PHPUnit 11; this method will be removed in PHPUnit 12)
  • #5421: Deprecate MockBuilder::enableAutoReturnValueGeneration() and MockBuilder::disableAutoReturnValueGeneration() (these methods only have a @deprecated annotation for now; using these methods will trigger a deprecation warning in PHPUnit 11; these methods will be removed in PHPUnit 12)
  • #5423: Deprecate TestCase::returnValue(), TestCase::onConsecutiveCalls(), TestCase::returnValueMap(), TestCase::returnArgument(), TestCase::returnSelf(), TestCase::returnCallback(), and TestCase::throwException() (these methods only have a @deprecated annotation for now; using these methods will trigger a deprecation warning in PHPUnit 11; these methods will be removed in PHPUnit 12)
  • #5425: Deprecate InvocationMocker::willReturnOnConsecutiveCalls() (this method only has a @deprecated annotation for now; using this method will trigger a deprecation warning in PHPUnit 11; this method will be removed in PHPUnit 12)
  • #5444: Deprecate MockBuilder::setMockClassName() (this method only has a @deprecated annotation for now; using this method will trigger a deprecation warning in PHPUnit 11; this method will be removed in PHPUnit 12)

Fixed

... (truncated)

Commits

Updates rector/rector to 0.18.2

Release notes

Sourced from rector/rector's releases.

Released Rector 0.18.2

New Features and Changes 🥳

  • Add MyCLabs enum equals + keeping methods (#4645), Thanks @​K0nias!
  • [TypeDeclaration] skip variadic constructor param of mixed type on AddParamTypeFromPropertyTypeRector (#4887), Thanks @​Celebrate-Reinhard!
  • [TypeDeclaration] Do not add default value when assigned in __construct() on TypedPropertyFromStrictGetterMethodReturnTypeRector (#4886)
  • [TypeDeclaration] Add ReturnTypeFromStrictFluentReturnRector (#4890)
  • Add single value concat support to EncapsedStringsToSprintfRector (#4897)
  • Add number support to concat EncapsedStringsToSprintfRector (#4898)
  • [DeadCode] Remove @​return void on return self on RemoveUselessReturnTagRector (#4894)
  • Add test case for caching $rectorConfig->rules() changed (#4903)
  • [CodeQuality] Add NumberCompareToMaxFuncCallRector (#4914)
  • [TypeDeclaration] Add return self object support on ReturnTypeFromStrictFluentReturnRector (#4915)
  • [TypeDeclaration] Add return static object support on ReturnTypeFromStrictFluentReturnRector (#4916)

Bugfixes 🐛

  • [Caching] Add VersionResolver::PACKAGE_VERSION to FileHashComputer::compute() so cache cleared on composer update got new version (#4904)
  • [TypeDeclaration] Using ClassMethodReturnTypeOverrideGuard on ReturnTypeFromStrictParamRector (#4878)
  • [e2e] $rectorConfig->skip() should not skip inside different path over config (#4882)
  • Fix missing default string in TypedPropertyFromStrictGetterMethodReturnTypeRector (#4885)
  • Fix tests fixture updater (#4892)
  • Fix union type check of object (#4893)
  • Simplify isMatchingUnionType() (#4895), Thanks @​staabm!
  • Skip identical to false in SimplifyBoolIdenticalTrueRector, as exact comparison is stronger than negated expression (#4901)
  • Fix Rector invalidation in case of changes sets or rules (#4902)
  • [TypeDeclaration] Skip mixing native + docblock union assign on TypedPropertyFromAssignsRector (#4905)
  • StrictArrayParamDimFetchRector: Skip objects (#4907), Thanks @​staabm!
  • FamilyRelationsAnalyzer: final classes can't have children (#4913), Thanks @​staabm!
  • [Config] Remove $isBound usage as cause empty configuration on RectorConfig (#4880)
Commits
  • 8606564 Rector 0.18.2
  • a4c5e31 Updated Rector to commit 0abb641afd13ce5e3b9de47cbc099bd2c81ff765
  • 2bbdfcf Updated Rector to commit a21a3f17578cb8e13505ffe0e797ecfd12e86c4f
  • 4c7551d Updated Rector to commit aa7282195caab5889ee067ca3fb5eda62f26ed1b
  • dbdeb21 Updated Rector to commit 6d009ccad0aacd102fdacba00eb59b32a1104582
  • 2ae279b Updated Rector to commit 093bcb63a19db3fcdab8264897c584212d755463
  • f4213d1 Updated Rector to commit 8c5cfafd4429765fecd1f3db9546cdb9abef080f
  • e31a8c2 Updated Rector to commit 1812281273ff14f76b8b81ab5321ee4b7e656684
  • bdf398e Updated Rector to commit 4a3627e63426e3c590ec21815621f6684ff41f87
  • 491915e Updated Rector to commit 5595f80ed176f93485f50ff6dabad79cedbb72dc
  • 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

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

Updates `mimmi20/ua-browser-type` to 9.0.2
- [Release notes](https://github.com/mimmi20/ua-browser-type/releases)
- [Commits](mimmi20/ua-browser-type@9.0.1...9.0.2)

Updates `mimmi20/ua-device-type` to 9.0.2
- [Release notes](https://github.com/mimmi20/ua-device-type/releases)
- [Commits](mimmi20/ua-device-type@9.0.1...9.0.2)

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

Updates `phpunit/phpunit` to 10.3.3
- [Changelog](https://github.com/sebastianbergmann/phpunit/blob/10.3.3/ChangeLog-10.3.md)
- [Commits](sebastianbergmann/phpunit@10.3.2...10.3.3)

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

---
updated-dependencies:
- dependency-name: mimmi20/ua-browser-type
  dependency-type: direct:production
  dependency-group: minor-patch-dependencies
- dependency-name: mimmi20/ua-device-type
  dependency-type: direct:production
  dependency-group: minor-patch-dependencies
- dependency-name: mimmi20/coding-standard
  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 September 12, 2023 04:54
@dependabot dependabot bot added dependencies Pull requests that update a dependency file patch labels Sep 12, 2023
@github-actions
Copy link
Contributor

Dependency Review

✅ No vulnerabilities or license issues found.

Scanned Manifest Files

composer.json
  • mimmi20/coding-standard@>= 5.1.15, < 6.0.0
  • mimmi20/ua-browser-type@>= 9.0.2, < 10.0.0
  • mimmi20/ua-device-type@>= 9.0.2, < 10.0.0
  • phpunit/phpunit@>= 10.3.3, < 11.0.0
  • rector/rector@>= 0.18.2, < 0.19.0
  • mimmi20/coding-standard@>= 5.1.13, < 6.0.0
  • mimmi20/ua-browser-type@>= 9.0.1, < 10.0.0
  • mimmi20/ua-device-type@>= 9.0.1, < 10.0.0
  • phpunit/phpunit@>= 10.3.2, < 11.0.0
  • rector/rector@>= 0.18.1, < 0.19.0

Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 3, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Jan 3, 2025
@dependabot dependabot bot deleted the dependabot/composer/master/minor-patch-dependencies-ad3f554d14 branch January 3, 2025 19:25
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant