Skip to content

chore(deps): bump the composer-all group across 1 directory with 4 updates#43

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/composer/composer-all-af00ba2e9e
Open

chore(deps): bump the composer-all group across 1 directory with 4 updates#43
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/composer/composer-all-af00ba2e9e

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 17, 2026

Copy link
Copy Markdown

Bumps the composer-all group with 4 updates in the / directory: yahnis-elsts/plugin-update-checker, dealerdirect/phpcodesniffer-composer-installer, pestphp/pest and wp-coding-standards/wpcs.

Updates yahnis-elsts/plugin-update-checker from 5.6 to 5.7

Release notes

Sourced from yahnis-elsts/plugin-update-checker's releases.

5.7

  • Added optional support for the "autoupdate" field that allows triggering unattended plugin updates. To enable it, you need to both set autoupdate to true in plugin update metadata and call $updateChceker->allowAutoupdateField() in your plugin. Props to @​hisman for part of the implementation.
  • BitBucket: Added support for basic auth with API tokens. Props to @​cristianozanca for part of the implementation.
  • BitBucket: Removed OAuth 1 support since it's no longer supported by BitBucket.
  • Replaced all htmlentities() calls with esc_html(). This takes advantage of automatic character set detection in WP core, and should eliminate some static analysis warnings. See #597.
  • Replaced all wp_redirect() calls with wp_safe_redirect(). This shouldn't matter in practice since PUC only ever does internal redirects, but it pacifies some static analysis tools. See #597.
  • Added and updated translations:
Commits
  • 275a96a Bump version number to 5.7
  • 8b2396f Minor: Update year in the license block
  • 299a869 Minor: Update docs for BitBucket auth
  • c31b762 Remove OAuth 1 support for the BitBucket integration.
  • eceb677 BitBucket support: Support basic auth with API tokens.
  • 3ceae95 Don't allow autoupdate = true unless you call $checked->allowAutoupdateField(...
  • b0acf15 Minor: Typo
  • 9c044de Update README with regex filtering for GitHub release assets
  • 68a70bf Merge pull request #602 from hisman/add-autoupdate-field-to-plugininfo
  • 36f3c2b Add default value to the autoupdate field
  • Additional commits viewable in compare view

Updates dealerdirect/phpcodesniffer-composer-installer from 1.2.0 to 1.2.1

Release notes

Sourced from dealerdirect/phpcodesniffer-composer-installer's releases.

v1.2.1

Changed

  • Various housekeeping, including improvements to CI.

Fixed

  • Fix potential error when running composer install with an open_basedir restriction in effect. Thanks @​srebb ! #271, #272

New Contributors

Full Changelog: PHPCSStandards/composer-installer@v1.2.0...v1.2.1

Changelog

Sourced from dealerdirect/phpcodesniffer-composer-installer's changelog.

[v1.2.1] - 2026-05-06

Changed

  • Various housekeeping, including improvements to CI.

Fixed

  • Fix potential error when running composer install with an open_basedir restriction in effect. Thanks [@​srebb] ! #271, #272

#271: PHPCSStandards/composer-installer#271 #272: PHPCSStandards/composer-installer#272

Commits
  • 963f0c6 Merge pull request #284 from PHPCSStandards/feature/changelog-for-release-1.2.1
  • b1bf91e Changelog for the 1.2.1 release
  • 0ded545 Resolve relative paths to absolute before validation to avoid open_basedir wa...
  • 467286b Merge pull request #283 from PHPCSStandards/dependabot/github_actions/ramsey/...
  • 83c65e6 Merge pull request #282 from PHPCSStandards/dependabot/github_actions/action-...
  • d384a67 GH Actions: Bump ramsey/composer-install from 3.1.1 to 4.0.0
  • c3f9878 GH Actions: Bump shivammathur/setup-php in the action-runners group
  • 7e6a7a3 Merge pull request #275 from PHPCSStandards/feature/tests-phpcsversions-updat...
  • 4a03570 Merge pull request #274 from PHPCSStandards/feature/dependabot-every-two-weeks
  • 375c41d Merge pull request #276 from PHPCSStandards/dependabot/github_actions/action-...
  • Additional commits viewable in compare view

Updates pestphp/pest from 4.6.3 to 4.7.5

Release notes

Sourced from pestphp/pest's releases.

v4.7.5

  • fix: escape generated test case filename (thanks @​luuhung1217)
  • chore: upgrade github actions commits

v4.7.4

  • fix: internal plugin runtime exception
  • chore: bumps actions/checkout from 6.0.3 to 7.0.0

v4.7.3

  • fix: improve dd output on parallel testing
  • fix: gitlab url not being possible to change
  • fix: team city output being duplicated

v4.7.2

  • fix: pao dealing with pest's fatal errors

v4.7.1

  • fix: improve reporting fatal exceptions
  • chore: various security improvements

v4.7.0

  • maintenance release
Commits

Updates wp-coding-standards/wpcs from 3.3.0 to 3.4.0

Release notes

Sourced from wp-coding-standards/wpcs's releases.

3.4.0

We're happy to welcome @​rodrigoprimo as co-maintainer of WordPressCS as of this release.

Added

Changed

  • The minimum required PHP_CodeSniffer version to 3.13.5 (was 3.13.4). #2761
  • The minimum required PHPCSUtils version to 1.2.2 (was 1.1.0). #2761
  • The default value for minimum_wp_version, as used by a number of sniffs detecting usage of deprecated WP features, has been updated to 6.7. #2757
  • WordPress.NamingConventions.PrefixAllGlobals has been updated to recognize pluggable functions introduced in WP up to WP 7.0.0. #2747
  • WordPress.WP.ClassNameCase has been updated to recognize classes introduced in WP up to WP 7.0.0. #2747
  • WordPress.WP.DeprecatedFunctions now detects functions deprecated in WordPress up to WP 7.0.0. #2747
  • The ConstantsHelper::is_use_of_global_constant() method will no longer flag a constant alias created via an import use statement as it were the use of a global constant. #2579
  • The ConstantsHelper::is_in_function_call() method will now act fully case-agnostic for the function names being checked. #2706 Previously, the $valid_functions parameter would need to be passed with the function names as keys in lowercase.
  • WordPress.PHP.NoSilencedErrors: error silencing is no longer accepted for the parse_url() function. #2701
  • Improved the wording of the error message for WordPress.Arrays.ArrayDeclarationSpacing.AssociativeArrayFound. #2688
  • Improved the wording of the error message for WordPress.PHP.RestrictedPHPFunctions. #2702
  • Various housekeeping, including documentation and test improvements. Includes a contribution by @​dd32.

Deprecated

  • WordPress.Arrays.ArrayDeclarationSpacing: the allow_single_item_single_line_associative_arrays property has been deprecated in favor of the new allow_single_item_single_line_explicit_key_arrays property. #2696 This is a name change only. The functionality of these properties is the same.

Fixed

  • WordPress.DB.PreparedSQL and WordPress.DB.PreparedSQLPlaceholders: false positive for static method calls to a non-global class named wpdb. #2753
  • WordPress.Security.EscapeOutput: false positive for get_search_query() when the $escaped parameter was passed as fully qualified or non-lowercase true. #2618
  • WordPress.Security.EscapeOutput: false negative for _deprecated_file() calls when the basename( __FILE__ ) pattern used non-standard casing for either basename() and/or __FILE__. #2729
  • WordPress.WP.AlternativeFunctions: false negative when class functions/constants/properties use the same name as select global WP constants/functions. #2617
  • WordPress.WP.AlternativeFunctions: false positive for fully qualified references to the global PHP stream constants \STDIN, \STDOUT, and \STDERR. #2617
  • WordPress.WP.CronInterval: false positive when the callback function reference used a different case than the function declaration, even though they are in the same file. #2730
Changelog

Sourced from wp-coding-standards/wpcs's changelog.

[3.4.0] - 2026-07-16

We're happy to welcome [@​rodrigoprimo] as co-maintainer of WordPressCS as of this release.

Added

Changed

  • The minimum required PHP_CodeSniffer version to 3.13.5 (was 3.13.4). #2761
  • The minimum required PHPCSUtils version to 1.2.2 (was 1.1.0). #2761
  • The default value for minimum_wp_version, as used by a number of sniffs detecting usage of deprecated WP features, has been updated to 6.7. #2757
  • WordPress.NamingConventions.PrefixAllGlobals has been updated to recognize pluggable functions introduced in WP up to WP 7.0.0. #2747
  • WordPress.WP.ClassNameCase has been updated to recognize classes introduced in WP up to WP 7.0.0. #2747
  • WordPress.WP.DeprecatedFunctions now detects functions deprecated in WordPress up to WP 7.0.0. #2747
  • The ConstantsHelper::is_use_of_global_constant() method will no longer flag a constant alias created via an import use statement as it were the use of a global constant. #2579
  • The ConstantsHelper::is_in_function_call() method will now act fully case-agnostic for the function names being checked. #2706 Previously, the $valid_functions parameter would need to be passed with the function names as keys in lowercase.
  • WordPress.PHP.NoSilencedErrors: error silencing is no longer accepted for the parse_url() function. #2701
  • Improved the wording of the error message for WordPress.Arrays.ArrayDeclarationSpacing.AssociativeArrayFound. #2688
  • Improved the wording of the error message for WordPress.PHP.RestrictedPHPFunctions. #2702
  • Various housekeeping, including documentation and test improvements. Includes a contribution by [@​dd32].

Deprecated

  • WordPress.Arrays.ArrayDeclarationSpacing: the allow_single_item_single_line_associative_arrays property has been deprecated in favor of the new allow_single_item_single_line_explicit_key_arrays property. #2696 This is a name change only. The functionality of these properties is the same.

Fixed

  • WordPress.DB.PreparedSQL and WordPress.DB.PreparedSQLPlaceholders: false positive for static method calls to a non-global class named wpdb. #2753
  • WordPress.Security.EscapeOutput: false positive for get_search_query() when the $escaped parameter was passed as fully qualified or non-lowercase true. #2618
  • WordPress.Security.EscapeOutput: false negative for _deprecated_file() calls when the basename( __FILE__ ) pattern used non-standard casing for either basename() and/or __FILE__. #2729
  • WordPress.WP.AlternativeFunctions: false negative when class functions/constants/properties use the same name as select global WP constants/functions. #2617
  • WordPress.WP.AlternativeFunctions: false positive for fully qualified references to the global PHP stream constants \STDIN, \STDOUT, and \STDERR. #2617
  • WordPress.WP.CronInterval: false positive when the callback function reference used a different case than the function declaration, even though they are in the same file. #2730

#2453: WordPress/WordPress-Coding-Standards#2453 #2455: WordPress/WordPress-Coding-Standards#2455 #2458: WordPress/WordPress-Coding-Standards#2458 #2464: WordPress/WordPress-Coding-Standards#2464 #2487: WordPress/WordPress-Coding-Standards#2487 #2488: WordPress/WordPress-Coding-Standards#2488 #2489: WordPress/WordPress-Coding-Standards#2489 #2490: WordPress/WordPress-Coding-Standards#2490 #2491: WordPress/WordPress-Coding-Standards#2491 #2493: WordPress/WordPress-Coding-Standards#2493 #2495: WordPress/WordPress-Coding-Standards#2495 #2496: WordPress/WordPress-Coding-Standards#2496 #2579: WordPress/WordPress-Coding-Standards#2579 #2586: WordPress/WordPress-Coding-Standards#2586

... (truncated)

Commits
  • 469c18c Merge pull request #2762 from WordPress/develop
  • 816fc74 Merge pull request #2758 from WordPress/feature/changelog-3.4.0
  • 598dab1 README: minor markdown fix
  • 2b16e01 Changelog for the release of WordPressCS 3.4.0
  • 04244a8 Merge pull request #2763 from WordPress/update-phpcs-sample-file
  • 00931f5 Update minimum_wp_version in phpcs.xml.dist.sample
  • 6f1cb5c Merge pull request #2729 from WordPress/fix-escape-output-basename-case-insen...
  • c19172f Merge pull request #2761 from WordPress/feature/composer-update-minimum-versions
  • 219b182 Merge pull request #2754 from WordPress/tests-array-walking-functions-helper
  • d69ed7f Composer: raise the minimum supported PHPCS version to 3.13.5
  • 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 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

Bumps the composer-all group with 4 updates in the / directory: [yahnis-elsts/plugin-update-checker](https://github.com/YahnisElsts/plugin-update-checker), [dealerdirect/phpcodesniffer-composer-installer](https://github.com/PHPCSStandards/composer-installer), [pestphp/pest](https://github.com/pestphp/pest) and [wp-coding-standards/wpcs](https://github.com/WordPress/WordPress-Coding-Standards).


Updates `yahnis-elsts/plugin-update-checker` from 5.6 to 5.7
- [Release notes](https://github.com/YahnisElsts/plugin-update-checker/releases)
- [Commits](YahnisElsts/plugin-update-checker@v5.6...v5.7)

Updates `dealerdirect/phpcodesniffer-composer-installer` from 1.2.0 to 1.2.1
- [Release notes](https://github.com/PHPCSStandards/composer-installer/releases)
- [Changelog](https://github.com/PHPCSStandards/composer-installer/blob/main/CHANGELOG.md)
- [Commits](PHPCSStandards/composer-installer@v1.2.0...v1.2.1)

Updates `pestphp/pest` from 4.6.3 to 4.7.5
- [Release notes](https://github.com/pestphp/pest/releases)
- [Changelog](https://github.com/pestphp/pest/blob/4.x/RELEASE.md)
- [Commits](pestphp/pest@v4.6.3...v4.7.5)

Updates `wp-coding-standards/wpcs` from 3.3.0 to 3.4.0
- [Release notes](https://github.com/WordPress/WordPress-Coding-Standards/releases)
- [Changelog](https://github.com/WordPress/WordPress-Coding-Standards/blob/develop/CHANGELOG.md)
- [Commits](WordPress/WordPress-Coding-Standards@3.3.0...3.4.0)

---
updated-dependencies:
- dependency-name: yahnis-elsts/plugin-update-checker
  dependency-version: '5.7'
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: composer-all
- dependency-name: dealerdirect/phpcodesniffer-composer-installer
  dependency-version: 1.2.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: composer-all
- dependency-name: pestphp/pest
  dependency-version: 4.7.5
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: composer-all
- dependency-name: wp-coding-standards/wpcs
  dependency-version: 3.4.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: composer-all
...

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 Jul 17, 2026
@socket-security

Copy link
Copy Markdown

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