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 2 updates #322

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 13, 2024

Updates the requirements on phpstan/phpstan and rector/rector to permit the latest version.
Updates phpstan/phpstan to 1.10.58

Release notes

Sourced from phpstan/phpstan's releases.

1.10.58

Improvements 🔧

Bugfixes 🐛

Internals 🔍

  • Prevent unnecessary isSuperTypeOf() calls (#2895), thanks @​staabm!
  • Simplify ClassPropertiesNode->getUninitializedProperties() (#2899), thanks @​staabm!
Commits
  • a235183 PHPStan 1.10.58
  • 156ee64 Updated PHPStan to commit 156ee64ba93b44adf242513a86efafc9f4faebff
  • 1f1b521 Updated PHPStan to commit 1f1b521fbf7013c79afd0d95cd6b591742acd525
  • 61c9177 Updated PHPStan to commit 61c9177b84cfaff1c7ef705a7afc76bc78903d59
  • 083f489 Fix doctrine/persistence
  • 9a790f2 Fix efabrica-team/phpstan-latte
  • 813d15e Updated PHPStan to commit 813d15e31fa4267547b5e7a0e84622cbb269b3f9
  • a7ff362 Updated PHPStan to commit a7ff3622b40c1ca8bcefcde1c84f6e7da18c7fbe
  • 51cffd4 Updated PHPStan to commit 51cffd49dcf08e17f201f3fb70c29a589d94a234
  • aeadbe2 Updated PHPStan to commit aeadbe28e0b0a05a3a48723ac310cf6c0d852711
  • Additional commits viewable in compare view

Updates rector/rector to 1.0.0

Release notes

Sourced from rector/rector's releases.

Released Rector 1.0.0 🎉🎉🎉

The stable Rector version is here. It was about time and we've done all planned changes by the end of 2023.

What could be better time and place to release a stable Rector than live on stage during talk 🎉

While this release brings stable API, it will be easier to stay up to date as well. The 1.x versioning behaves as expected with composer update (compared to special 0.x).

Our main focus is on improving developers experience. This release brings new features that help with custom rules writing, adding Rector to CI and adding Rector to any legacy project in general.

Some features are partially available in previous version, but we'd like to highligh them because since 1.0 you can use them all together.

Zen Config with Autocomplete

If you run Rector for the first time, it will create a rector.php config with your project paths for you. In past we used various class constants references to add commonly used rule sets. This required knowledge about these classes and was often missed.

We've changed this to work with single configuration class. It provides autocomplete for available sets, including attributes:

use Rector\Config\RectorConfig;
return RectorConfig::configure()
->withPreparedSets(codeQuality: true, codingStyle: true)
->withAttributesSets(symfony: true, doctrine: true)
->withPaths([
DIR . '/src',
DIR . '/tests',
])
->withRootFiles();

PHP Sets Automated

To keep up to date with you PHP, now you can use single method:

use Rector\Config\RectorConfig;
return RectorConfig::configure()
->withPhpSets();
</tr></table>

... (truncated)

Commits
  • 362258a Rector 1.0.0
  • 64d401b Updated Rector to commit 9a44c19598a21aff4b6b38f9a0db3b5ca30337c6
  • 428336c Updated Rector to commit 09398c3d4f07bb6ad664a55b87cab955278a467e
  • d00ebb8 Updated Rector to commit 56c250771518c2aa2e17bc64c9986c2dbe9b6fd8
  • See full diff 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

…dates

Updates the requirements on [phpstan/phpstan](https://github.com/phpstan/phpstan) and [rector/rector](https://github.com/rectorphp/rector) to permit the latest version.

Updates `phpstan/phpstan` to 1.10.58
- [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.57...1.10.58)

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

---
updated-dependencies:
- dependency-name: phpstan/phpstan
  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 February 13, 2024 03:05
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Feb 13, 2024
Copy link
Contributor

Dependency Review

✅ No vulnerabilities or license issues found.

Scanned Manifest Files

composer.json
  • phpstan/phpstan@>= 1.10.58, < 2.0.0
  • rector/rector@>= 1.0.0, < 2.0.0
  • phpstan/phpstan@>= 1.10.57, < 2.0.0
  • rector/rector@>= 0.19.8, < 0.20.0

Copy link

codeclimate bot commented Feb 13, 2024

Code Climate has analyzed commit c333461 and detected 0 issues on this pull request.

The test coverage on the diff in this pull request is 100.0% (50% is the threshold).

This pull request will bring the total coverage in the repository to 100.0% (0.0% change).

View more on Code Climate.

@mimmi20 mimmi20 merged commit cc12f2e into master Feb 13, 2024
65 checks passed
@mimmi20 mimmi20 deleted the dependabot/composer/master/minor-patch-dependencies-f901f81c3c branch February 13, 2024 07:37
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