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

build(deps-dev): bump the dev-dependencies group with 7 updates #626

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Sep 5, 2024

Bumps the dev-dependencies group with 7 updates:

Package From To
glpi-project/tools 0.6.4 0.7.3
mikey179/vfsstream 1.6.11 1.6.12
php-parallel-lint/php-parallel-lint 1.3.2 1.4.0
phpstan/extension-installer 1.3.1 1.4.3
phpstan/phpstan 1.10.32 1.12.1
phpstan/phpstan-deprecation-rules 1.1.4 1.2.0
squizlabs/php_codesniffer 3.7.2 3.10.2

Updates glpi-project/tools from 0.6.4 to 0.7.3

Changelog

Sourced from glpi-project/tools's changelog.

[0.7.3] - 2024-06-20

  • Do not check licence headers of docker compose config files.

[0.7.2] - 2024-01-10

  • Fix copyright unduplicate logic in licence headers check command.

[0.7.1] - 2023-10-16

  • Fix default project directory on licence headers check command.

[0.7.0] - 2023-10-16

  • Update PHP namespace to prevent conflicts with GLPI core tools.
  • Add a PHPStan rule to ensure that global variable types are defined in PHPDoc.
Commits
  • a076482 Update changelog
  • b3d1e22 Do not check licence headers of docker compose config files
  • 72fe4c0 Update changelog
  • 735217d Fix copyright unduplicate logic
  • dfdec6f Replace deprecated usage of ::set-output
  • 4bc5a72 Update changelog
  • f890ad5 Fix licence headers check default project dir
  • 5f2b059 Update changelog
  • 91ae052 Update PHP namespace to prevent conflicts with GLPI core tools
  • 83f017a PHPStan rule to ensure that global variable types are defined in PHPDoc
  • See full diff in compare view

Updates mikey179/vfsstream from 1.6.11 to 1.6.12

Release notes

Sourced from mikey179/vfsstream's releases.

v1.6.12

What's Changed

New Contributors

Full Changelog: bovigo/vfsStream@v1.6.11...v1.6.12

Changelog

Sourced from mikey179/vfsstream's changelog.

1.6.12 (2024-08-29)

  • Drop php 5 and 7.0 support as new versions enforced a syntax change that is not compatible with the old versions.
Commits
  • fe695ec Set date for new release
  • 3f7ee8d Merge pull request #292 from bovigo/drop-php-5-support
  • 001a279 Cleanup test bootstrap and changelog
  • 2e39a43 Disable coverage for php 7.1
  • a4a4e4c Upgrade tests to run on newer phpunit
  • dafa558 Attempt to fix phpunit run
  • b345f0e Drop support for php 5
  • 796ae51 Merge pull request #290 from skilld-labs/v1.6
  • 1ee7fa3 Fix PHP 8.4 deprecate-implicitly-nullable-types
  • See full diff in compare view

Updates php-parallel-lint/php-parallel-lint from 1.3.2 to 1.4.0

Release notes

Sourced from php-parallel-lint/php-parallel-lint's releases.

v1.4.0

New version with support up to PHP 8.3 and preliminary support for PHP 8.4.

Added

  • The "skip linting" feature can now be used in PHP files starting with a shebang, #146 from @​xaben.

Fixed

  • PHP 8.4 deprecation notice, #154 from @​Ayesh and @​jrfnl.
  • Bug fix: the PHP version check in the application bootstrap did not work on PHP < 5.3, #100 from @​jrfnl, fixes #62.
  • Bug fix: files containing the ~ character in their name can now be processed correctly, #118 from @​jrfnl.
  • Bug fix: error message sometimes displayed on last line of code snippet, #98 from @​jrfnl, fixes #93.
  • Bug fix: error message would sometimes contain duplicate information, #117 from @​jrfnl.
  • Bug fix: the "in file .. on line part" text did not always get cleaned correctly from the error message, #118 from @​jrfnl.

Changed

Internal

#62: php-parallel-lint/PHP-Parallel-Lint#62 #93: php-parallel-lint/PHP-Parallel-Lint#93 #96: php-parallel-lint/PHP-Parallel-Lint#96 #97: php-parallel-lint/PHP-Parallel-Lint#97 #98: php-parallel-lint/PHP-Parallel-Lint#98 #99: php-parallel-lint/PHP-Parallel-Lint#99 #100: php-parallel-lint/PHP-Parallel-Lint#100

... (truncated)

Changelog

Sourced from php-parallel-lint/php-parallel-lint's changelog.

1.4.0 - 2024-03-27

Added

  • The "skip linting" feature can now be used in PHP files starting with a shebang, #146 from [@​xaben].

Fixed

  • PHP 8.4 deprecation notice, #154 from [@​Ayesh] and [@​jrfnl].
  • Bug fix: the PHP version check in the application bootstrap did not work on PHP < 5.3, #100 from [@​jrfnl], fixes #62.
  • Bug fix: files containing the ~ character in their name can now be processed correctly, #118 from [@​jrfnl].
  • Bug fix: error message sometimes displayed on last line of code snippet, #98 from [@​jrfnl], fixes #93.
  • Bug fix: error message would sometimes contain duplicate information, #117 from [@​jrfnl].
  • Bug fix: the "in file .. on line part" text did not always get cleaned correctly from the error message, #118 from [@​jrfnl].

Changed

Internal

#62: php-parallel-lint/PHP-Parallel-Lint#62 #93: php-parallel-lint/PHP-Parallel-Lint#93 #96: php-parallel-lint/PHP-Parallel-Lint#96 #97: php-parallel-lint/PHP-Parallel-Lint#97 #98: php-parallel-lint/PHP-Parallel-Lint#98 #99: php-parallel-lint/PHP-Parallel-Lint#99 #100: php-parallel-lint/PHP-Parallel-Lint#100 #102: php-parallel-lint/PHP-Parallel-Lint#102

... (truncated)

Commits
  • 6db5635 Changed version to 1.4.0
  • dd8accf README: update supported versions
  • c1600cd Changelog for the 1.4.0 release
  • d8ccacd CHANGELOG: order link list alphabetically
  • 359379e GH Actions: fix duplicate release
  • 9447a5c GH Actions: version update for various predefined actions
  • c6dad33 OutputTest: fix risky test
  • c09ad7f Make PHP 8.4 implicit nullability fix compatible with PHP < 7.1
  • 4d65d62 [PHP 8.4] Fixes for implicit nullability deprecation
  • b90851f Skip shebang sequence if it is the first line
  • Additional commits viewable in compare view

Updates phpstan/extension-installer from 1.3.1 to 1.4.3

Release notes

Sourced from phpstan/extension-installer's releases.

1.4.3

  • 85e90b3 - Allow PHPStan ^2.0 (currently in development)

1.4.2

1.4.1

  • f6b87fa - Test more Composer versions
  • 4ce4d5c - Revert "Bump composer-plugin-api"

1.4.0

  • 5b19a72 - Fix
  • bf14f4a - Skip zero/inf bounds
  • 2586069 - Convert constraints into strings consistently
  • aae3978 - Dump PHPStan version constraint for each package
  • bfd401b - Fix CI
  • 7e654f8 - Fix
  • 792118f - Fix CS
  • 487e1ad - Open 1.4.x-dev
  • 219172e - Dump PHPStan version constraint to GeneratedConfig
  • 9416e06 - Bump composer-plugin-api
  • 2ea5b42 - Update lock-closed-issues.yml
  • dd08fd9 - chore(deps): update cbrgm/mastodon-github-action action to v2
  • 03b1d7e - chore(deps): update metcalfc/changelog-generator action to v4.3.1
  • 5861df6 - chore(deps): update metcalfc/changelog-generator action to v4.2.0
  • abd5064 - chore(deps): update dessant/lock-threads action to v5
  • dcbaea0 - chore(deps): update actions/checkout action to v4
  • 181c23c - Update .gitattributes
  • 7aa403a - Next-gen coding standard workflow
  • a7ce75f - chore(deps): update dependency slevomat/coding-standard to v8.12.1
  • cf5912d - Revert "Next-gen coding standard workflow"
  • 4255c03 - Next-gen coding standard workflow
Commits

Updates phpstan/phpstan from 1.10.32 to 1.12.1

Release notes

Sourced from phpstan/phpstan's releases.

1.12.1

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 🐛

... (truncated)

Commits
  • d8ed7ff PHPStan 1.12.1
  • 5892e8d Updated PHPStan to commit 5892e8debfbe2f44306e6707c457665784b7dacd
  • 9e61f32 Update errors identifiers
  • 5909fb2 Updated PHPStan to commit 5909fb2dc78cbee46927c2cb23f7491dfef34165
  • 2867030 Update errors identifiers
  • c50b71f Updated PHPStan to commit c50b71fd961e9009419b8fddac835b15696f4ff5
  • 0f026c5 Update errors identifiers
  • f5e2e32 Updated PHPStan to commit f5e2e32932644d61b3745e3b0f2c0910f722a86d
  • 058e74f Updated PHPStan to commit 058e74f2b27e8f58669f7fb115741d6b27c50c80
  • 5aeb128 Update errors identifiers
  • Additional commits viewable in compare view

Updates phpstan/phpstan-deprecation-rules from 1.1.4 to 1.2.0

Release notes

Sourced from phpstan/phpstan-deprecation-rules's releases.

1.2.0

  • fa8cce7 - Update lock-closed-issues.yml
  • 8342041 - Merge remote-tracking branch 'origin/1.1.x' into 1.2.x
  • d457b73 - Update PHPStan version
  • ff4f00f - Update FetchingDeprecatedConstRuleTest.php
  • 437ac71 - Fix build
  • e9ea332 - Update metcalfc/changelog-generator action to v4.3.1
  • f71dbf6 - Update cbrgm/mastodon-github-action action to v2
  • 10f0e35 - Merge branch '1.1.x' into 1.2.x
  • 674d785 - Fix build
  • e7fe22b - Update metcalfc/changelog-generator action to v4.2.0
  • 83345f7 - Update dessant/lock-threads action to v5
  • 788ea1b - remove phpstan/phpstan-php-parser
  • 4175e8a - Update actions/checkout action to v4
  • f1cacde - Fix a typo
  • 1884f9f - Next-gen coding standard workflow
  • 2313a63 - Modernize rules to use RuleErrorBuilder and report error identifiers
  • ca9e4fd - Open 1.2.x-dev
Commits
  • fa8cce7 Update lock-closed-issues.yml
  • 8342041 Merge remote-tracking branch 'origin/1.1.x' into 1.2.x
  • d457b73 Update PHPStan version
  • ff4f00f Update FetchingDeprecatedConstRuleTest.php
  • 437ac71 Fix build
  • e9ea332 Update metcalfc/changelog-generator action to v4.3.1
  • f71dbf6 Update cbrgm/mastodon-github-action action to v2
  • 10f0e35 Merge branch '1.1.x' into 1.2.x
  • 674d785 Fix build
  • e7fe22b Update metcalfc/changelog-generator action to v4.2.0
  • Additional commits viewable in compare view

Updates squizlabs/php_codesniffer from 3.7.2 to 3.10.2

Commits

You can trigger a rebase of this PR 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 dev-dependencies group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [glpi-project/tools](https://github.com/glpi-project/tools) | `0.6.4` | `0.7.3` |
| [mikey179/vfsstream](https://github.com/bovigo/vfsStream) | `1.6.11` | `1.6.12` |
| [php-parallel-lint/php-parallel-lint](https://github.com/php-parallel-lint/PHP-Parallel-Lint) | `1.3.2` | `1.4.0` |
| [phpstan/extension-installer](https://github.com/phpstan/extension-installer) | `1.3.1` | `1.4.3` |
| [phpstan/phpstan](https://github.com/phpstan/phpstan) | `1.10.32` | `1.12.1` |
| [phpstan/phpstan-deprecation-rules](https://github.com/phpstan/phpstan-deprecation-rules) | `1.1.4` | `1.2.0` |
| [squizlabs/php_codesniffer](https://github.com/squizlabs/PHP_CodeSniffer) | `3.7.2` | `3.10.2` |


Updates `glpi-project/tools` from 0.6.4 to 0.7.3
- [Changelog](https://github.com/glpi-project/tools/blob/develop/CHANGELOG.md)
- [Commits](glpi-project/tools@0.6.4...0.7.3)

Updates `mikey179/vfsstream` from 1.6.11 to 1.6.12
- [Release notes](https://github.com/bovigo/vfsStream/releases)
- [Changelog](https://github.com/bovigo/vfsStream/blob/v1.6.12/CHANGELOG.md)
- [Commits](bovigo/vfsStream@v1.6.11...v1.6.12)

Updates `php-parallel-lint/php-parallel-lint` from 1.3.2 to 1.4.0
- [Release notes](https://github.com/php-parallel-lint/PHP-Parallel-Lint/releases)
- [Changelog](https://github.com/php-parallel-lint/PHP-Parallel-Lint/blob/develop/CHANGELOG.md)
- [Commits](php-parallel-lint/PHP-Parallel-Lint@v1.3.2...v1.4.0)

Updates `phpstan/extension-installer` from 1.3.1 to 1.4.3
- [Release notes](https://github.com/phpstan/extension-installer/releases)
- [Commits](phpstan/extension-installer@1.3.1...1.4.3)

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

Updates `phpstan/phpstan-deprecation-rules` from 1.1.4 to 1.2.0
- [Release notes](https://github.com/phpstan/phpstan-deprecation-rules/releases)
- [Commits](phpstan/phpstan-deprecation-rules@1.1.4...1.2.0)

Updates `squizlabs/php_codesniffer` from 3.7.2 to 3.10.2
- [Release notes](https://github.com/squizlabs/PHP_CodeSniffer/releases)
- [Commits](https://github.com/squizlabs/PHP_CodeSniffer/commits)

---
updated-dependencies:
- dependency-name: glpi-project/tools
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: mikey179/vfsstream
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: php-parallel-lint/php-parallel-lint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: phpstan/extension-installer
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: phpstan/phpstan
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: phpstan/phpstan-deprecation-rules
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: squizlabs/php_codesniffer
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
Copy link
Author

dependabot bot commented on behalf of github Oct 1, 2024

Superseded by #665.

@dependabot dependabot bot closed this Oct 1, 2024
@dependabot dependabot bot deleted the dependabot/composer/10.0/bugfixes/dev-dependencies-8b0a4eccf9 branch October 1, 2024 21: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 php Pull requests that update Php code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants