Skip to content
This repository was archived by the owner on Jan 17, 2025. It is now read-only.

Bump wimg/php-compatibility from 9.1.1 to 9.3.4#44

Closed
dependabot-preview[bot] wants to merge 1 commit intomasterfrom
dependabot/composer/wimg/php-compatibility-9.3.4
Closed

Bump wimg/php-compatibility from 9.1.1 to 9.3.4#44
dependabot-preview[bot] wants to merge 1 commit intomasterfrom
dependabot/composer/wimg/php-compatibility-9.3.4

Conversation

@dependabot-preview
Copy link
Contributor

Bumps wimg/php-compatibility from 9.1.1 to 9.3.4.

Release notes

Sourced from wimg/php-compatibility's releases.

PHPCompatibility 9.3.4

See all related issues and PRs in the 9.3.4 milestone.

Fixed

  • 🐛 PHPCompatibility.Keywords.ForbiddenNames: false positive for list when used in a foreach() condition. #930. Fixes #928, #929

Credits

Thanks go out to Sergii Bondarenko for their contribution to this version. 👏

PHPCompatibility 9.3.3

See all related issues and PRs in the 9.3.3 milestone.

Added

  • PHPCompatibility.Constants.NewConstants sniff: detection of yet more (undocumented) PHP 7.2 Sodium constants. #924
  • PHPCompatibility.Keywords.ForbiddenNames sniff: detect the use of more reserved keywords which are not allowed to be used to name certain constructs. #923. Fixes #922

Fixed

  • 🐛 PHPCompatibility.FunctionNameRestrictions.RemovedPHP4StyleConstructors: false positive detecting PHP4-style constructors when declared in interfaces. The class implementing the interface will not have the same name as the interface, so the actual method would not be regarded as a PHP4 style constructor. #921

Credits

Thanks go out to Nikhil for their contribution to this version. 👏

PHPCompatibility 9.3.2

See all related issues and PRs in the 9.3.2 milestone.

Added

  • PHPCompatibility.Constants.NewConstants sniff: detection of the PHP 7.2 SODIUM_CRYPTO_PWHASH_ALG_ARGON2ID13 constant. #915
  • 📚 Readme: a list of projects which are build upon or extend PHPCompatibility. #904

Changed

  • 📌 PHPCompatibility.FunctionNameRestrictions.RemovedPHP4StyleConstructors: minor efficiency fix to make the sniff faster. #912
  • 📌 PHPCompatibility.FunctionNameRestrictions.ReservedFunctionNames: functions marked as @deprecated in the function docblock will now be ignored by this sniff. #917. Fixes #911
  • 📝 PHPCompatibility.FunctionDeclarations.ForbiddenToStringParameters: the $ooScopeTokens property is now protected, it should never have been public in the first place. #907
  • ♻️ More code documentation fixes. #903, #916
  • 📚 Readme/Contributing: various tweaks. #904, #905

Fixed

  • 🐛 PHPCompatibility.FunctionUse.OptionalToRequiredFunctionParameters: false positive when a class is instantiated which has the same name as one of the affected functions. #914. Fixes #913
  • 🐛 PHPCompatibility.FunctionUse.RequiredToOptionalFunctionParameters: false positive when a class is instantiated which has the same name as one of the affected functions. #914
  • 🐛 PHPCompatibility.MethodUse.NewDirectCallsToClone: false positive on calling __clone() from within the class being cloned #910. Fixes #629 (comment)
  • 🐛 PHPCompatibility.Miscellaneous.ValidIntegers: binary numbers using an uppercase B were not always recognized correctly. #909

PHPCompatibility 9.3.1

See all related issues and PRs in the 9.3.1 milestone.

Changed

Fixed

... (truncated)
Changelog

Sourced from wimg/php-compatibility's changelog.

[9.3.4] - 2019-11-15

See all related issues and PRs in the [9.3.4 milestone].

Fixed

  • 🐛 PHPCompatibility.Keywords.ForbiddenNames: false positive for list when used in a foreach() condition. #930. Fixes #928, #929

Credits

Thanks go out to [Sergii Bondarenko] for their contribution to this version. 👏

[9.3.3] - 2019-11-11

See all related issues and PRs in the [9.3.3 milestone].

Added

  • PHPCompatibility.Constants.NewConstants sniff: detection of yet more (undocumented) PHP 7.2 Sodium constants. #924
  • PHPCompatibility.Keywords.ForbiddenNames sniff: detect the use of more reserved keywords which are not allowed to be used to name certain constructs. #923. Fixes #922

Fixed

  • 🐛 PHPCompatibility.FunctionNameRestrictions.RemovedPHP4StyleConstructors: false positive detecting PHP4-style constructors when declared in interfaces. The class implementing the interface will not have the same name as the interface, so the actual method would not be regarded as a PHP4 style constructor. #921

Credits

Thanks go out to [Nikhil] for their contribution to this version. 👏

[9.3.2] - 2019-10-16

See all related issues and PRs in the [9.3.2 milestone].

Added

  • PHPCompatibility.Constants.NewConstants sniff: detection of the PHP 7.2 SODIUM_CRYPTO_PWHASH_ALG_ARGON2ID13 constant. #915
  • 📚 Readme: a list of projects which are build upon or extend PHPCompatibility. #904

Changed

  • 📌 PHPCompatibility.FunctionNameRestrictions.RemovedPHP4StyleConstructors: minor efficiency fix to make the sniff faster. #912
  • 📌 PHPCompatibility.FunctionNameRestrictions.ReservedFunctionNames: functions marked as @deprecated in the function docblock will now be ignored by this sniff. #917. Fixes #911
  • 📝 PHPCompatibility.FunctionDeclarations.ForbiddenToStringParameters: the $ooScopeTokens property is now protected, it should never have been public in the first place. #907
  • ♻️ More code documentation fixes. #903, #916
  • 📚 Readme/Contributing: various tweaks. #904, #905

Fixed

  • 🐛 PHPCompatibility.FunctionUse.OptionalToRequiredFunctionParameters: false positive when a class is instantiated which has the same name as one of the affected functions. #914. Fixes #913
  • 🐛 PHPCompatibility.FunctionUse.RequiredToOptionalFunctionParameters: false positive when a class is instantiated which has the same name as one of the affected functions. #914
  • 🐛 PHPCompatibility.MethodUse.NewDirectCallsToClone: false positive on calling __clone() from within the class being cloned #910. Fixes #629 (comment)
  • 🐛 PHPCompatibility.Miscellaneous.ValidIntegers: binary numbers using an uppercase B were not always recognized correctly. #909

[9.3.1] - 2019-09-06

... (truncated)
Commits
  • 1f37659 Merge pull request #933 from PHPCompatibility/develop
  • fc52bb8 Merge pull request #931 from PHPCompatibility/feature/changelog-9.3.4
  • e7efb9c Changelog for PHPCompatibility 9.3.4
  • 5f2333c Merge pull request #930 from PHPCompatibility/feature/928-bug-fix-forbidden-n...
  • 16bccca ForbiddenNames: allow for foreach( ... as list() ) {}
  • 1af08ca Merge pull request #926 from PHPCompatibility/develop
  • f79c3a2 Merge pull request #925 from PHPCompatibility/feature/changelog-9.3.3
  • 90cbae2 Changelog for PHPCompatibility 9.3.3
  • 1835efd Merge pull request #921 from PHPCompatibility/feature/php4constructors-should...
  • a5cef3c Merge pull request #924 from PHPCompatibility/feature/new-constants-more-sodi...
  • 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)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Pull request limits (per update run and/or open at any time)
  • Automerge options (never/patch/minor, and dev/runtime dependencies)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

@dependabot-preview dependabot-preview bot added the dependencies Pull requests that update a dependency file label Nov 18, 2019
@dependabot-preview
Copy link
Contributor Author

Superseded by #47.

@dependabot-preview dependabot-preview bot deleted the dependabot/composer/wimg/php-compatibility-9.3.4 branch December 30, 2019 04:15
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants