Add new route to run deploy hook implementations from the UI

Created on 30 March 2021, about 4 years ago
Updated 31 October 2023, over 1 year ago

Problem/Motivation

Drush 10.3.0 added a new deploy command to standardize the order of Drush commands during Drupal deployments. drush deploy also runs the `deploy:hook` subcommand in its end to have hook_deploy_NAME(&$sandbox) implementations from MODULE_NAME.deploy.php files picked up after configuration import has run. This allows us to trigger programmatic content updates after the relying configuration has been imported. Classic example: You add a new field with a default value to an existing entity type; to have this default value set for all existing entities you need to set it programmatically. And you want to do this all in one release. hook_update_N is too early as the configuration which adds this new field hasn't been imported yet. Instead, implement the content updates in hook_deploy_NAME and it will be triggered after the new field with the default value has been created and registered in the database.

This issue is about bringing that hook into core and adding a route /admin/deploy to run those post deployment hooks.

Steps to reproduce

Implement a hook_deploy_NAME and try to run it from /admin/deploy

Proposed resolution

Add a new route to allow deploy hooks to be run from the UI, for example /admin/deploy.

Remaining tasks

Add documentation for hook_deploy_NAME from drush to core.

Decide on what to name the new route.

Add menu items

Implement batch

Add tests

Release notes

User interface changes

New page, similar to the config import, with a list of pending deploy hooks and a "run" button which runs them in a batch.
Maybe a link on the config import page when there is nothing to import but pending deploy hooks.

API changes

Adding possibility to run hook_deploy_NAME from the UI.

Data model changes

none

Release notes snippet

tbd

✨ Feature request
Status

Active

Version

11.0 πŸ”₯

Component
Database updateΒ  β†’

Last updated about 1 month ago

No maintainer
Created by

leymannx Berlin

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • πŸ‡¬πŸ‡§United Kingdom Leo Pitt

    I find this confusing. So is hook_deploy_NAME() going to be added to Drupal core (as opposed to drush only)? And if so, does anyone know the issue where this is being addressed?

  • πŸ‡¨πŸ‡­Switzerland bircher πŸ‡¨πŸ‡Ώ

    RE #16: This here is the that issue :D

    I think one of the reasons this has not gained any traction is that almost everyone uses drush anyway and Drupal core or contrib should not actually have any deploy hooks. Deploy hooks are meant for modules that are unique to a specific site as the point is to being able to rely on a particular configuration which is exported and committed along with the hook implementation.

    But if you wish to have a UI for it in core then this is the issue. Alternatively it would also be relatively easy to create a contrib module for it.
    Ultimately this is something that has to be decided by ... the framework managers, I guess?

  • πŸ‡ΊπŸ‡ΈUnited States moshe weitzman Boston, MA

    This issue. It will be added when someone is motivated to make an MR and shepherd it through to completion. So far nobody has turned up to do that.

  • πŸ‡«πŸ‡·France duaelfr Montpellier, France

    Minor changes for clarity

Production build 0.71.5 2024