chore(deps): bump guzzle to 7.12.1 and psr7 to 2.12.1 for security advisories#23392
Merged
Merged
Conversation
Resolves security advisories failing the Security Check CI job: - guzzle: CVE-2026-55568, CVE-2026-55767 - psr7: CVE-2026-48998, CVE-2026-49214, CVE-2026-55766 Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
composer.lockDev Package changes
Settings · Docs · Powered by Private Packagist |
Coverage Report for CI Build 78708Coverage decreased (-0.5%) to 53.324%Details
Uncovered ChangesNo uncovered changes found. Coverage RegressionsNo coverage regressions found. Coverage Stats💛 - Coveralls |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Context
The Security Check CI job (Symfony's security checker, which scans
composer.lockagainst the published advisory database) started failing because new security advisories were published against the versions we had pinned.guzzlehttp/guzzle7.10.0 is flagged for CVE-2026-55568 (HTTPS proxy silently downgraded to cleartext) and CVE-2026-55767 (dot-only cookie domains matching all hosts), and the transitiveguzzlehttp/psr72.8.0 is flagged for CVE-2026-48998, CVE-2026-49214 and CVE-2026-55766 (host confusion and CRLF injection). Both libraries are prefixed intovendor_prefixed/and ship with the plugin, so moving them to patched releases is the fix.Summary
This PR can be summarized in the following changelog entry:
Relevant technical choices:
composer.jsonfromguzzlehttp/guzzle: 7.10.0to7.12.1, the latest patched stable release, matching the existing exact-version pin style of the other dev dependencies.guzzlehttp/psr7is a transitive dependency, so it was raised to2.12.1by runningcomposer update guzzlehttp/guzzle guzzlehttp/psr7 --with-dependencies. As a side effect of resolution,guzzlehttp/promisesmoved to 2.5.0 andsymfony/polyfill-php80to v1.37.0; neither has open advisories.vendor_prefixed/is gitignored and rebuilt by the pipeline, so onlycomposer.jsonandcomposer.lockchange here.composer check-branch-csandcomposer lint-branchare clean (no PHP source changed). The unit suite passes; one unrelated time/order-dependent activation-cleanup scheduling test flaked in a single full-suite run but passes in isolation on this branch and in a full run on a clean trunk, so it is not caused by this change.Test instructions
Test instructions for the acceptance test before the PR gets merged
This PR can be acceptance tested by following these steps:
composer.lock, confirmguzzlehttp/guzzleresolves to 7.12.1 andguzzlehttp/psr7to 2.12.1.Relevant test scenarios
Test instructions for QA when the code is in the RC
QA can test this PR by following these steps:
Impact check
This PR affects the following parts of the plugin, which may require extra testing:
Other environments
[shopify-seo], added test instructions for Shopify and attached theShopifylabel to this PR.[yoast-doc-extension], added test instructions for Yoast SEO for Google Docs and attached theGoogle Docs Add-onlabel to this PR.Documentation
Quality assurance
grunt build:imagesand committed the results, if my PR introduces or edits images or SVGs.Innovation
innovationlabel.Fixes #