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 dependencies group with 5 updates #646

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 22, 2024

Bumps the dependencies group with 5 updates:

Package From To
codeception/verify 3.1.0 3.2.0
jangregor/phpstan-prophecy 1.0.0 1.0.2
phpstan/phpstan 1.10.62 1.10.67
phpunit/phpunit 9.6.17 9.6.19
squizlabs/php_codesniffer 3.9.0 3.9.1

Updates codeception/verify from 3.1.0 to 3.2.0

Release notes

Sourced from codeception/verify's releases.

3.2.0

Commits

Updates jangregor/phpstan-prophecy from 1.0.0 to 1.0.2

Release notes

Sourced from jangregor/phpstan-prophecy's releases.

1.0.2

What's Changed

Full Changelog: Jan0707/phpstan-prophecy@1.0.1...1.0.2

Release 1.0.1 (2024-04-02)

This tag should fix problems

What's Changed (autogenerated)

... (truncated)

Changelog

Sourced from jangregor/phpstan-prophecy's changelog.

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

Unreleased

For a full diff see [1.0.0...main][1.0.0...master].

Commits
  • 5ee56c7 Allow PHPUnit 10 & 11 (#334)
  • 1db519b Merge pull request #333 from Jan0707/dependabot/github_actions/shivammathur/s...
  • 4ebaecc github-actions(deps): Bump shivammathur/setup-php from 2.30.1 to 2.30.2
  • db82f70 Fix conflict version constraint (#332)
  • 4c63fb0 Merge pull request #329 from Jan0707/dependabot/github_actions/shivammathur/s...
  • 9e41f40 github-actions(deps): Bump shivammathur/setup-php from 2.30.0 to 2.30.1
  • dfa3e26 Remove problematic test case and revert baseline (#328)
  • 6ad823e Enhancement: Use --ansi option
  • b677ccd Fix: Run 'make coding-standards'
  • d750af9 Merge pull request #316 from imofix/fix-internal-phpstan-error
  • Additional commits viewable in compare view

Updates phpstan/phpstan from 1.10.62 to 1.10.67

Release notes

Sourced from phpstan/phpstan's releases.

1.10.67

This is the last release, or one of the last releases, in 1.10.x series. The next one is going to be PHPStan 1.11, and it's going to be released at some point in May 2024.

Improvements 🔧

Bugfixes 🐛

Function signature fixes 🤖

Internals 🔍

  • composer-dependency-analyser: update to 1.5.0 (support functions) (#3011), thanks @​janedbal!

1.10.66

Improvements 🔧

Bugfixes 🐛

Function signature fixes 🤖

... (truncated)

Commits
  • 16ddbe7 PHPStan 1.10.67
  • 7961f7a Updated PHPStan to commit 7961f7ae1fe815b0796e4d73717f1b117d4a7163
  • 7f8f9cc Updated PHPStan to commit 7f8f9cce7f3903e505916c7afe04b7912570b5e2
  • f71da02 Updated PHPStan to commit f71da02958da0dd6b40193c64fcb6da12daf7227
  • 074de75 Updated PHPStan to commit 074de75ff3bffd32e554e3ce8b0dbbde003e471e
  • 1453c3f Updated PHPStan to commit 1453c3f160075f299dc4fc3b3098e8b0b3739b85
  • 4a4c739 Updated PHPStan to commit 4a4c739f9ff85b6c73659c21f8f3b8b7af8c82c9
  • 28c5729 Updated PHPStan to commit 28c57296288b78707902fdb4cdf9313a60eff363
  • a80cd8a Update Larastan
  • 336ab5c Update baselines
  • Additional commits viewable in compare view

Updates phpunit/phpunit from 9.6.17 to 9.6.19

Release notes

Sourced from phpunit/phpunit's releases.

PHPUnit 9.6.19

Changed

  • The namespaces of dependencies are now prefixed with PHPUnitPHAR instead of just PHPUnit for the PHAR distribution of PHPUnit

How to install or update PHPUnit

PHPUnit 9.6.18

Changed

  • #5763: Release nullable type changes for PHPUnit 9.6

How to install or update PHPUnit

Changelog

Sourced from phpunit/phpunit's changelog.

[9.6.19] - 2024-04-05

Changed

  • The namespaces of dependencies are now prefixed with PHPUnitPHAR instead of just PHPUnit for the PHAR distribution of PHPUnit

[9.6.18] - 2024-03-21

Changed

  • #5763: Release nullable type changes for PHPUnit 9.6
Commits

Updates squizlabs/php_codesniffer from 3.9.0 to 3.9.1

Release notes

Sourced from squizlabs/php_codesniffer's releases.

3.9.1 - 2024-03-31

Added

  • Documentation for the following sniffs:
    • Generic.PHP.RequireStrictTypes
    • Squiz.WhiteSpace.MemberVarSpacing
    • Squiz.WhiteSpace.ScopeClosingBrace
    • Squiz.WhiteSpace.SuperfluousWhitespace
    • Thanks to Jay McPartland and Rodrigo Primo for the patches.

Changed

  • The following sniffs have received performance related improvements:
    • Generic.CodeAnalysis.UselessOverridingMethod
    • Generic.Files.ByteOrderMark
    • Thanks to Rodrigo Primo for the patches.
  • Performance improvement for the "Diff" report. Should be most notable for Windows users. #355
  • The test suite has received some performance improvements. Should be most notable for contributors using Windows. #351
    • External standards with sniff tests using the PHP_CodeSniffer native test framework will also benefit from these changes.
    • Thanks to Juliette Reinders Folmer for the patch.
  • Various housekeeping, including improvements to the tests and documentation.

Fixed

  • Fixed bug #289 : Squiz.WhiteSpace.OperatorSpacing and PSR12.Operators.OperatorSpacing : improved fixer conflict protection by more strenuously avoiding handling operators in declare statements.
  • Fixed bug #366 : Generic.CodeAnalysis.UselessOverridingMethod : prevent false negative when the declared method name and the called method name do not use the same case.
  • Fixed bug #368 : Squiz.Arrays.ArrayDeclaration fixer did not handle static closures correctly when moving array items to their own line.
  • Fixed bug #404 : Test framework : fixed PHP 8.4 deprecation notice.

New Contributors

The PHP_CodeSniffer project is happy to welcome the following new contributors: @​jaymcp @​jpoliveira08

Statistics

Closed: 2 issues Merged: 52 pull requests

If you like to stay informed about releases and more, follow @​phpcs on Mastodon or @​PHP_CodeSniffer on X.

Changelog

Sourced from squizlabs/php_codesniffer's changelog.

[3.9.1] - 2024-03-31

Added

  • Documentation for the following sniffs:
    • Generic.PHP.RequireStrictTypes
    • Squiz.WhiteSpace.MemberVarSpacing
    • Squiz.WhiteSpace.ScopeClosingBrace
    • Squiz.WhiteSpace.SuperfluousWhitespace
    • Thanks to [Jay McPartland][@​jonmcp] and [Rodrigo Primo][@​rodrigoprimo] for the patches.

Changed

  • The following sniffs have received performance related improvements:
    • Generic.CodeAnalysis.UselessOverridingMethod
    • Generic.Files.ByteOrderMark
    • Thanks to [Rodrigo Primo][@​rodrigoprimo] for the patches.
  • Performance improvement for the "Diff" report. Should be most notable for Windows users. #355
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patch.
  • The test suite has received some performance improvements. Should be most notable contributors using Windows. #351
    • External standards with sniff tests using the PHP_CodeSniffer native test framework will also benefit from these changes.
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patch.
  • Various housekeeping, including improvements to the tests and documentation.

Fixed

  • Fixed bug #289 : Squiz.WhiteSpace.OperatorSpacing and PSR12.Operators.OperatorSpacing : improved fixer conflict protection by more strenuously avoiding handling operators in declare statements.
  • Fixed bug #366 : Generic.CodeAnalysis.UselessOverridingMethod : prevent false negative when the declared method name and the called method name do not use the same case.
  • Fixed bug #368 : Squiz.Arrays.ArrayDeclaration fixer did not handle static closures correctly when moving array items to their own line.
  • Fixed bug #404 : Test framework : fixed PHP 8.4 deprecation notice.
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patch

#289: PHPCSStandards/PHP_CodeSniffer#289 #351: PHPCSStandards/PHP_CodeSniffer#351 #355: PHPCSStandards/PHP_CodeSniffer#355 #366: PHPCSStandards/PHP_CodeSniffer#366 #368: PHPCSStandards/PHP_CodeSniffer#368 #404: PHPCSStandards/PHP_CodeSniffer#404

Commits
  • 267a440 Merge pull request #428 from PHPCSStandards/feature/changelog-3.9.1
  • 9daf6fb Changelog for the 3.9.1 release
  • 218d2a5 Merge pull request #379 from michalbundyra/fix/followup-369
  • fff9d82 Follow-up #369 - Squiz.Arrays.ArrayDeclaration for static
  • eeb5c29 Merge pull request #426 from PHPCSStandards/feature/tests-fix-invalid-testcase
  • 36aa41a IsReferenceTest: fix invalid test case
  • c5e1807 Merge pull request #422 from PHPCSStandards/feature/test-othercontextsensitiv...
  • 6f46b10 Tests/OtherContextSensitiveKeywordsTest: fix unintentional parse error
  • 846fbf0 Merge pull request #417 from PHPCSStandards/feature/contributing-add-note-abo...
  • cf42e5b CONTRIBUTING: add note about the community cc-list
  • 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

Bumps the dependencies group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [codeception/verify](https://github.com/Codeception/Verify) | `3.1.0` | `3.2.0` |
| [jangregor/phpstan-prophecy](https://github.com/Jan0707/phpstan-prophecy) | `1.0.0` | `1.0.2` |
| [phpstan/phpstan](https://github.com/phpstan/phpstan) | `1.10.62` | `1.10.67` |
| [phpunit/phpunit](https://github.com/sebastianbergmann/phpunit) | `9.6.17` | `9.6.19` |
| [squizlabs/php_codesniffer](https://github.com/PHPCSStandards/PHP_CodeSniffer) | `3.9.0` | `3.9.1` |


Updates `codeception/verify` from 3.1.0 to 3.2.0
- [Release notes](https://github.com/Codeception/Verify/releases)
- [Changelog](https://github.com/Codeception/Verify/blob/master/CHANGELOG.md)
- [Commits](Codeception/Verify@3.1.0...3.2.0)

Updates `jangregor/phpstan-prophecy` from 1.0.0 to 1.0.2
- [Release notes](https://github.com/Jan0707/phpstan-prophecy/releases)
- [Changelog](https://github.com/Jan0707/phpstan-prophecy/blob/master/CHANGELOG.md)
- [Commits](Jan0707/phpstan-prophecy@1.0.0...1.0.2)

Updates `phpstan/phpstan` from 1.10.62 to 1.10.67
- [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.62...1.10.67)

Updates `phpunit/phpunit` from 9.6.17 to 9.6.19
- [Release notes](https://github.com/sebastianbergmann/phpunit/releases)
- [Changelog](https://github.com/sebastianbergmann/phpunit/blob/9.6.19/ChangeLog-9.6.md)
- [Commits](sebastianbergmann/phpunit@9.6.17...9.6.19)

Updates `squizlabs/php_codesniffer` from 3.9.0 to 3.9.1
- [Release notes](https://github.com/PHPCSStandards/PHP_CodeSniffer/releases)
- [Changelog](https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/CHANGELOG.md)
- [Commits](PHPCSStandards/PHP_CodeSniffer@3.9.0...3.9.1)

---
updated-dependencies:
- dependency-name: codeception/verify
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: jangregor/phpstan-prophecy
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: phpstan/phpstan
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: phpunit/phpunit
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: squizlabs/php_codesniffer
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependency Issues or PR releated to entities label Apr 22, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 29, 2024

Superseded by #647.

@dependabot dependabot bot closed this Apr 29, 2024
@dependabot dependabot bot deleted the dependabot/composer/dependencies-472ead11d6 branch April 29, 2024 02:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependency Issues or PR releated to entities
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants