Skip to content

Bump the php-dev group across 1 directory with 4 updates #465

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 9, 2025

Bumps the php-dev group with 3 updates in the / directory: overtrue/phplint, phpstan/phpstan and slevomat/coding-standard.

Updates overtrue/phplint from 9.5.6 to 9.6.0

Release notes

Sourced from overtrue/phplint's releases.

9.6.0 - 2025-04-09

Added

Changed

  • drop support of PHPStan 1.x, raising min version to 2.0 now

Fixed

  • PHPUnit coverage code attributes usage

Full Changelog: 9.5.6...9.6.0

Changelog

Sourced from overtrue/phplint's changelog.

9.6.0 - 2025-04-09

Added

Changed

  • drop support of PHPStan 1.x, raising min version to 2.0 now

Fixed

  • PHPUnit coverage code attributes usage

Full Changelog: 9.5.6...9.6.0

Commits

Updates phpstan/phpstan from 1.12.20 to 1.12.23

Release notes

Sourced from phpstan/phpstan's releases.

1.12.23

Fix condition of fall-through case not used for exhaustive checks (#3900), #11064, #3488, #8719, #12722, thanks @​rvanvelzen!

1.12.22

Improvements 🔧

Bugfixes 🐛

1.12.21

Bugfixes 🐛

Function signature fixes 🤖

Commits
  • 29201e7 PHPStan 1.12.23
  • ce0aaf2 Updated PHPStan to commit ce0aaf2bffcb61273675aea8c8c5251fe02bd58d
  • 85b21fb PHPStan 1.12.22
  • 4111d0f Updated PHPStan to commit 4111d0f5951338d3fa9735edd8ae38de90d15456
  • 791e708 Updated PHPStan to commit 791e708efd0e4f2b845d6d9a34494f54c493ca81
  • 9cd58b5 Updated PHPStan to commit 9cd58b5a912dd4d014effd431e1754ab145bef8f
  • fe595cb Updated PHPStan to commit fe595cba71279d990a8be265d594b470265ea318
  • 14276fd PHPStan 1.12.21
  • 7d8742a Updated PHPStan to commit 7d8742a37c9103067f8750facea0557bb4a0dea8
  • 8734057 Updated PHPStan to commit 8734057fed407949994e79eb3785cc0bed8f5520
  • Additional commits viewable in compare view

Updates slevomat/coding-standard from 8.16.0 to 8.16.2

Release notes

Sourced from slevomat/coding-standard's releases.

8.16.2

🐛 Fixes

  • SlevomatCodingStandard.TypeHints.ReturnTypeHint: Fixed false positive
  • SlevomatCodingStandard.Variables.UnusedVariable: Fixed false positive
  • SlevomatCodingStandard.TypeHints.DisallowMixedTypeHint: Fix logic error (thanks to @​jrfnl)

8.16.1

🐛 Fixes

  • Fixed BC break
Commits
  • 8bf0408 Slevomat.Classes.ClassMemberSpacing: More tests
  • 080bc06 TypeHints/DisallowMixedTypeHint: fix logic error
  • 1136fb9 SlevomatCodingStandard.Variables.UnusedVariable: Fixed false positive
  • 1071c98 SlevomatCodingStandard.TypeHints.ReturnTypeHint: Fixed false positive
  • 266a906 Updated dependencies
  • 490023f Revert "Enable PHP 7.4+ sniffs always"
  • b58063e Fixed build status badge
  • 0118b67 Fix reference to SlevomatCodingStandard.Arrays.ArrayAccess in README
  • b7e363a Readme: add ClassConstantTypeHint sniff
  • See full diff in compare view

Updates squizlabs/php_codesniffer from 3.11.3 to 3.12.1

Release notes

Sourced from squizlabs/php_codesniffer's releases.

3.12.1 - 2025-04-04

Added

  • Documentation for the following sniffs:
    • Squiz.Commenting.BlockComment
    • Thanks to Colin Stewart for the patch.

Changed

Deprecated

  • The Generic.Functions.CallTimePassByReference sniff. See #921.
    • This sniff will be removed in version 4.0.0.

Fixed

  • Fixed bug #906 : Fixer: prevent InvalidArgumentExceptions when displaying verbose information.
  • Fixed bug #907 : Tokenizer/PHP: tokenization of tokens related to union, intersection and DNF types in combination with PHP 8.4 final properties.
  • Fixed bug #908 : Tokenizer/PHP: tokenization of ? in nullable types for readonly properties.
  • Fixed bug #916 : Tokenizer/PHP: goto was not recognized as a terminating statement for a case/default in a switch control structure.

Other

  • PHP_CodeSniffer 4.0 is coming soon! Interested in a sneak peek ? Join the live stream at any time on April 14, 15, 17 or 18. Read the open invitation (#924) for all the details.

New Contributors

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

Statistics

Closed: 0 issues Merged: 24 pull requests

Follow @​phpcs on Mastodon or @​PHP_CodeSniffer on X to stay informed.

Please consider funding the PHP_CodeSniffer project. If you already do so: thank you!

3.12.0 - 2025-03-18

Added

  • Added support for PHP 8.4 final properties to File::getMemberProperties() through a new is_final array index in the return value. #834

... (truncated)

Changelog

Sourced from squizlabs/php_codesniffer's changelog.

[3.12.1] - 2025-04-04

Added

  • Documentation for the following sniffs:
    • Squiz.Commenting.BlockComment
    • Thanks to [Colin Stewart][@​costdev] for the patch.

Changed

  • Generic.WhiteSpace.HereNowdocIdentifierSpacing: improved error message text.
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patch.
  • Various housekeeping, including improvements to the tests and documentation.

Deprecated

  • The Generic.Functions.CallTimePassByReference sniff. See #921.
    • This sniff will be removed in version 4.0.0.

Fixed

  • Fixed bug #906 : Fixer: prevent InvalidArgumentExceptions when displaying verbose information.
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patch.
  • Fixed bug #907 : Tokenizer/PHP: tokenization of tokens related to union, intersection and DNF types in combination with PHP 8.4 final properties.
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patch.
  • Fixed bug #908 : Tokenizer/PHP: tokenization of ? in nullable types for readonly properties.
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patch.
  • Fixed bug #916 : Tokenizer/PHP: goto was not recognized as a terminating statement for a case/default in a switch control structure.
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patch.

Other

  • PHP_CodeSniffer 4.0 is coming soon! Interested in a sneak peek ? Join the live stream at any time on April 14, 15, 17 or 18. Read the open invitation (#924) for all the details.

#906: PHPCSStandards/PHP_CodeSniffer#906 #907: PHPCSStandards/PHP_CodeSniffer#907 #908: PHPCSStandards/PHP_CodeSniffer#908 #916: PHPCSStandards/PHP_CodeSniffer#916 #921: PHPCSStandards/PHP_CodeSniffer#921 #924: PHPCSStandards/PHP_CodeSniffer#924

[3.12.0] - 2025-03-18

Added

  • Added support for PHP 8.4 final properties to File::getMemberProperties() through a new is_final array index in the return value. #834
  • Generators/HTML: each section title now has a unique anchor link, which can be copied when hovering over a title. #859
    • This should make sharing a link to a specific section of the documentation more straight-forward.
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patch.
  • Documentation for the following sniffs:
    • Squiz.Classes.ClassFileName
    • Squiz.Classes.ValidClassName
    • Thanks to [Brian Dunne][@​braindawg] for the patches.

... (truncated)

Commits
  • ea16a1f Merge pull request #925 from PHPCSStandards/feature/changelog-3.12.1
  • 3bf90b6 Changelog for the 3.12.1 release
  • a51ef18 Merge pull request #923 from rodrigoprimo/documentation-function-call-argumen...
  • 02ff468 Generic/FunctionCallArgumentSpacing: improve XML documentation
  • 7a47e82 Generic/FunctionCallArgumentSpacing: fix code examples in the XML doc
  • a80fde9 Generic/FunctionCallArgumentSpacing: update XML doc to remove info about spac...
  • 5757c5b Merge pull request #919 from PHPCSStandards/feature/generic-heredocnowdociden...
  • 4f7ccf3 Merge pull request #916 from PHPCSStandards/feature/tokenizer-php-goto-is-ter...
  • 835d578 Merge pull request #922 from rodrigoprimo/documentation-useless-overriding-me...
  • 52dd82b Generic/UselessOverridingMethod: improve documentation description and
  • 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 php-dev group with 3 updates in the / directory: [overtrue/phplint](https://github.com/overtrue/phplint), [phpstan/phpstan](https://github.com/phpstan/phpstan) and [slevomat/coding-standard](https://github.com/slevomat/coding-standard).


Updates `overtrue/phplint` from 9.5.6 to 9.6.0
- [Release notes](https://github.com/overtrue/phplint/releases)
- [Changelog](https://github.com/overtrue/phplint/blob/main/CHANGELOG.md)
- [Commits](overtrue/phplint@9.5.6...9.6.0)

Updates `phpstan/phpstan` from 1.12.20 to 1.12.23
- [Release notes](https://github.com/phpstan/phpstan/releases)
- [Changelog](https://github.com/phpstan/phpstan/blob/2.1.x/CHANGELOG.md)
- [Commits](phpstan/phpstan@1.12.20...1.12.23)

Updates `slevomat/coding-standard` from 8.16.0 to 8.16.2
- [Release notes](https://github.com/slevomat/coding-standard/releases)
- [Commits](slevomat/coding-standard@8.16.0...8.16.2)

Updates `squizlabs/php_codesniffer` from 3.11.3 to 3.12.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.11.3...3.12.1)

---
updated-dependencies:
- dependency-name: overtrue/phplint
  dependency-version: 9.6.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: php-dev
- dependency-name: phpstan/phpstan
  dependency-version: 1.12.23
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: php-dev
- dependency-name: slevomat/coding-standard
  dependency-version: 8.16.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: php-dev
- dependency-name: squizlabs/php_codesniffer
  dependency-version: 3.12.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: php-dev
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file php Pull requests that update Php code labels Apr 9, 2025
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 php Pull requests that update Php code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants