Update composer dependencies - #93
Merged
Merged
Conversation
API Specification - Non-breaking changesNo changelog changes |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## develop #93 +/- ##
=============================================
+ Coverage 37.14% 37.63% +0.49%
- Complexity 948 955 +7
=============================================
Files 133 135 +2
Lines 2972 2997 +25
=============================================
+ Hits 1104 1128 +24
- Misses 1868 1869 +1
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
This was referenced Aug 26, 2026
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.
Link to ticket
TODO: no ticket linked yet — please add before review.
Description
composer audithas been failing ondevelop— 15 advisories across four packages — so this is a plaincomposer updatewithin the existing constraints. It clears all 15:composer audit --lockednow reports none.The four that carried advisories:
guzzlehttp/guzzleeasycorp/easyadmin-bundleaccess_controlguzzlehttp/psr7api-platform/coreGuzzle and PSR-7 come in under the OIDC library, so they reach the login path; EasyAdmin is the whole admin UI and is the largest single jump here (5.0.11 → 5.5.1, one minor line to another).
97 lock entries move in total, Symfony 8.1.0 → 8.1.5 across the board among them.
composer.jsonis untouched — nothing needed a constraint change.Two regenerated files ride along, both consequences rather than choices:
public/api-spec-v1.yaml, becausesymfony/yamlnow writes sequence items on their own line (the JSON spec is byte-identical, so no API change), andconfig/reference.php, which Symfony rewrites oncache:clear.Screenshot of the result
No user interface changes of our own. EasyAdmin's own 5.5 changes are visible in the admin UI, so it is worth a click through the CRUD screens on staging.
Checklist
No new tests: this changes dependencies only, and the existing suite (45 tests, including the admin smoke test) is what verifies it. PHPUnit, PHPStan, PHP-CS-Fixer, twig-cs-fixer, markdownlint and Prettier all pass locally.
Additional comments or questions
The EasyAdmin jump is the one to look at twice. The advisory forces at least 5.5.1 — CVE-2026-54087 is fixed in 5.0.13, but the access-control bypass is only fixed in 5.5.1 — so staying on the 5.0 line was not an option.
AdminSmokeTestpasses and PHPStan is clean, neither of which proves the admin UI still looks right.This also carries
itk-dev/openid-connect-bundle5.0.0 → 5.1.1, which^5.0allows. 5.1 deprecates leavingclient_secret_expires_atunset, sodevelopwill log that deprecation until #92 lands and configures it. #92 supersedes this with 6.0.0, and the two will conflict incomposer.lock; merging this first and rebasing #92 is the simpler order.