pear / Services_Openstreetmap

Makes communicating with the Open Street Map API, and Nominatim, from PHP intuitive.
https://pear.php.net/package/Services_OpenStreetMap/
BSD 3-Clause "New" or "Revised" License
199 stars 53 forks source link

Bump rector/rector from 0.8.7 to 0.12.21 #166

Closed dependabot[bot] closed 2 years ago

dependabot[bot] commented 2 years ago

Bumps rector/rector from 0.8.7 to 0.12.21.

Release notes

Sourced from rector/rector's releases.

Released Rector 0.12.21

New RectorConfig to configure your rector.php Without Effort!

  • Add RectorConfig for custom configuration methods (#2019) (#2063)

Before

use Rector\Core\Configuration\Option;
use Rector\Php74\Rector\Property\TypedPropertyRector;
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;

return static function (ContainerConfigurator $containerConfigurator): void { $parameters = $containerConfigurator->parameters(); $parameters->set(Option::PARALLEL, true); $parameters->set(Option::AUTO_IMPORT_NAMES, true);

$services = $containerConfigurator->services();
$services->set(TypedPropertyRector::class);

};

Now

use Rector\Php74\Rector\Property\TypedPropertyRector;
use Rector\Config\RectorConfig;

return static function (RectorConfig $rectorConfig): void { $rectorConfig->parallel(); $rectorConfig->importNames();

$rectorConfig->rule(TypedPropertyRector::class);

};

New Features :tada:

  • Add new rule to add explicit public scope to unscoped class methods (#2022), Thanks @​Firehed!
  • [Transform] Add FileGetContentsAndJsonDecodeToStaticCallRector (#2059)
  • Add VarAnnotationIncorrectNullableRector for fixing incorrect null type in @​var (#2053), Thanks @​dorrogeray!
  • Add ReturnAnnotationIncorrectNullableRector for fixing incorrect null type in @​return (#2060), Thanks @​dorrogeray!
  • [TypeDeclaration] Make TypedPropertyFromAssignsRector configurable with INLINE_PUBLIC (#2052), Thanks @​samsonasik!
  • Add ParamAnnotationIncorrectNullableRector for fixing incorrect null type in @​param (#2069), Thanks @​dorrogeray!
  • Add configurable InlineSimplePropertyAnnotationRector for inlining of simple annotations (#2070), Thanks @​dorrogeray!
  • [Php74] Handle standalone false on php >=8 feature enabled on TypedPropertyRector (#2084), Thanks @​samsonasik!

... (truncated)

Commits
  • 2fb3b1c Rector 0.12.21
  • 5a655d6 Updated Rector to commit 11fdd74f8abe3deefbb2492c00868c57184fd484
  • 5d5bb83 Updated Rector to commit c7ff21825ec2c480bba1f09f09d2d650b37de5b4
  • 6bec008 Updated Rector to commit 996caa3f1f7c92c3b811cf51eb2fb887bb27d230
  • 4b9139b Updated Rector to commit b8d06063052510644cd2224cdf468aa2181e78dd
  • 5f10b80 Updated Rector to commit 46d2c00038e83165e8e9b2d773cfa5deb838c243
  • c821b32 Updated Rector to commit 92c2fc1035a6d03fd2b3e3fe7f7d8571ba26b69a
  • 99ecd74 Updated Rector to commit f0cad1a722a091bbc309345d92c2617ced64a130
  • 840e8ec Updated Rector to commit 6cb95c1be3852a2d3295837320335104f0a24438
  • cfa1942 Updated Rector to commit 73bf29c279191373755f08c2fdff45c013443c37
  • Additional commits viewable in compare view


Dependabot compatibility score

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 ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
sonarcloud[bot] commented 2 years ago

Kudos, SonarCloud Quality Gate passed!    Quality Gate passed

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 0 Code Smells

No Coverage information No Coverage information
0.0% 0.0% Duplication

dependabot[bot] commented 2 years ago

Superseded by #167.