v2.4.8
A small maintenance release focused on the Drupal 11 kickstart's composer.json and a bats test-suite fix. No changes to add-on commands or configuration behavior.
Changes
- Drupal 11 kickstart: drop the recipe-unpack workaround. Removed the ewcomposer/unpack dependency, its woredeyonas/Drupal-Recipe-Unpack VCS repository, and the related allow-plugins entry from kickstart/d11/composer.json. Modern Drupal core now ships its own recipe-unpack command (drupal.org #3522189), so the third-party package is no longer needed for new Drupal 11 projects. (#68)
- Drupal 11 kickstart: composer.json cleanup. Added symfony/runtime to allow-plugins, and removed the core patch for the resolved "Stream wrappers not registered when installing module's default config" issue (drupal.org #3416735), since it's fixed upstream. (#67)
Fixes
- Bats test suite. Replaced echo "$var" | grep -q ... with grep -q ... <<< "$var" across tests/test.bats to avoid a subshell/pipe quirk that could cause spurious test failures. (#67)
Upgrade notes
These changes only affect the Drupal 11 kickstart template used by ddev aljibe-assistant when bootstrapping new projects. Existing projects are not touched automatically. If you maintain a project whose composer.json was originally generated from this kickstart and you relied on the recipe-unpack package or the core patch, review your own composer.json before removing them manually.