Closes #5331: Upgrade to Drupal 11.4.x.#5679
Open
joeparsons wants to merge 9 commits into
Open
Conversation
There was a problem hiding this comment.
Pull request overview
Updates Arizona Quickstart to target Drupal core 11.4.x (currently 11.4.0-beta1) and adjusts Quickstart custom code/tests/patches to accommodate Drupal 11.4 deprecations and behavior changes (text processing, filter callbacks, theme uninstall UX).
Changes:
- Bump
drupal/core-recommendedto11.4.0-beta1and refresh/add patches required for 11.4 compatibility. - Replace deprecated text/filter APIs (
text_summary(),check_markup(), procedural filter callbacks) with their service/render equivalents. - Update functional test flow and install profile defaults (remove deprecated History module).
Reviewed changes
Copilot reviewed 10 out of 10 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| themes/custom/az_barrio/tests/src/Functional/AzBarrioAdminTest.php | Adjusts admin functional test for the new theme uninstall confirmation step. |
| modules/custom/az_search_api/src/Plugin/search_api/processor/AZSearchSummary.php | Switches summary generation from text_summary() to the TextSummary service. |
| modules/custom/az_publication/src/Plugin/Filter/AZDOIFilter.php | Updates DOI filter implementation to align with core filter URL changes. |
| modules/custom/az_publication/src/Entity/AZAuthor.php | Adds typing annotation to help static analysis for base field definitions. |
| modules/custom/az_publication/az_publication.module | Replaces deprecated APIs (views_get_current_view(), check_markup()) with 11.4-compatible approaches. |
| modules/custom/az_migration/src/Plugin/migrate/process/TextFormatRecognizer.php | Refactors format rendering to use processed_text + renderer + filter manager instead of deprecated helpers. |
| modules/custom/az_event/az_event.module | Replaces text_summary() with the TextSummary service. |
| modules/custom/az_card/src/Plugin/Field/FieldWidget/AZCardWidget.php | Replaces check_markup() with processed_text rendering for widget preview. |
| composer.json | Upgrades core-recommended and updates/adds patches for Drupal 11.4 compatibility. |
| az_quickstart.info.yml | Removes deprecated drupal:history from default install module list. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Member
Author
|
One of the changes inlcuded in 11.4.0-rc1 seems to be breaking site installs (both with drush and through install.php): |
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.
Description
Drupal 11.4.0-beta1 has been released so it's time to look at what it will take to upgrade Quickstart to 11.4.x.
Full list of change records for Drupal 11.4.0
Changes included in this PR
Updated core patches that no longer applied
<br />but should return<br>for HTML5Added patch for search_exclude contrib module which was broken by 11.4.x change
Updated Quickstart custom module code for various 11.4.x changes/deprecations
Removed core
historymodule from Quickstart's list of modules installed by default because it is deprecatedRelease notes
Related issues
Closes #5331
How to test
Types of changes
Arizona Quickstart (install profile, custom modules, custom theme)
Drupal core
Drupal contrib projects
Checklist