-
-
Notifications
You must be signed in to change notification settings - Fork 0
Updated Drupal dependencies and held 'rector/rector' at 2.6.2. #321
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
4ece8f7
Updated Drupal core dependencies.
AlexSkrypnyk 98f1c5b
Updated contrib modules.
AlexSkrypnyk 96a35a8
Restored Drupal deprecation set selection in 'rector.php'.
AlexSkrypnyk fd4be53
Replaced isset guards with null coalescing assignment.
AlexSkrypnyk e686b38
Held 'rector/rector' at 2.6.2 and reverted its configuration change.
AlexSkrypnyk File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Routine maintenance round - no security releases.
composer audit --lockedreturns zero advisories against the resulting lock, and drupal.org's contrib advisories list none for any project updated here.None of these nine constraint changes were hand-edited. This repo sets
"bump-after-update": trueunderconfig(line 140), so Composer raises each direct dependency's floor to whatever the update resolved. That is why the constraints move in lockstep with the lock file and why the diff carries no deliberate version decisions to review.One package was deliberately excluded:
rector/rectorstays on2.6.2. Its^2.6.2constraint is visible here as unchanged context, and it is intentionally left as a range rather than pinned - the newer release is still permitted, this round simply does not take it. The reason is thatrector2.6.5turnsRectorConfigBuilder::withSetProviders()into a deprecated no-op, and its documented replacementwithComposerBased(drupal: true)is inert against the installedpalantirnet/drupal-rector, which ships noDrupalSetListclass. Taking that release would leave this project's Drupal deprecation rule sets loading from nowhere whileahoy lintstill reported green - a silent loss of coverage. Holding at2.6.2keepsrector.phpworking as written and out of this diff entirely. Once drupal-rector shipsDrupalSetList::COMPOSER_BASED, a later round can take2.6.5without any configuration change.vincentlanglet/twig-cs-fixer^4.0.2→^4.1.0is the only minor bump among the direct dependencies. It added no findings against this codebase;ahoy lintis clean.The remaining eight are patch-level floor raises on
drupal/ai_provider_openai,drupal/drupal_helpers,drupal/generated_content,drupal/key_auth,drupal/preview_link,drupal/testmode,symfony/http-clientandphpstan/phpstan. No package was added or removed, no major version moved, and nothing here changes configuration or database schema, so the deployment needs no config import or update hook beyond the usual.drupal/coreitself stays on11.4.5- no newer release existed at the time of this run - so the core phase of the update moved only core's transitive Symfony and Guzzle stack, visible incomposer.lockrather than here.