Problem/Motivation
For anyone that used config_filter 1.x in Drupal 8, it has always been possible to uninstall modules via config import, which means that all your deployment needed was something like drush updb
and drush csim
.
In Drupal 9 with config_filter 2.x and drush cim
(i.e. using the config transformation API of Drupal core) it now refuses to import the config at all due to dependency issues.
This manifests as this error message:
The import failed due to the following reasons:
Configuration module_name.settings depends
on the Module Name module that will not be
installed after import.
The problem is that it is looking at the active config in the database and deciding that it can't import, even though the imported config says that module_name.settings should be deleted.
A related problem is this one:
Unexpected error during import with operation update for system.action.node_delete_action: The "node_delete_action" plugin does not exist
It shows this error even though system.action.node_delete_action.yml says the plugin is entity:delete_action:node
. It refuses to import because the current active config says the plugin is node_delete_action
.
Steps to reproduce
Example situations where this occurs:
- Uninstalling a module via a
drush cim
during deployment.
- Uninstalling production modules via
drush cim
in local VM when using an imported database (e.g. with config_split where the module is enabled in a prod split which is not enabled in VM)
- Importing system.action.*.yml where the plugin has been changed.
Proposed resolution
The config import logic should consider the config being imported rather than what currently exists, particularly when it comes to working out dependencies.