- Status changed to Postponed: needs info
almost 2 years ago 2:47pm 16 January 2023 - πΊπΈUnited States adrianm6254
I ran into the same issue. This is not a multidev.
I am using Core 10.0.8
automatic_updates 8.x-2.7I installed automatic_updates using
ddev composer require drupal/automatic_updates
Next I run
ddev drush pm:install automatic_updates
and I get the following error:In CheckExceptionOnInvalidReferenceBehaviorPass.php line 83: The service "project_browser.composer_validator.core_not_updated" has a dependency on a non-existent service "Drupal\package_manager\PathLocator". Did you mean this: "package_manager.path_locator"? Failed to run drush pm:install automatic_updates: exit status 1
I uninstalled auromatic_updates using
ddev drush pm:uninstall automatic_updates
and I get this message:In PmCommands.php line 177: The following module(s) are not installed: automatic_updates. No modules to uninstall. Failed to run drush pm:uninstall automatic_updates: exit status 1
I remove the module using
ddev composer remove drupal/automatic_updates
After uninstalling automatic_updates when I run database update
ddev drush updb
I get this error:[error] (Currently using Missing or invalid modules The following modules are marked as installed in the core.extension configuration, but they are missing: * automatic_updates * package_manager Review the suggestions for resolving this incompatibility [1] to repair your installation, and then re-run update.php. [1] https://www.drupal.org/docs/updating-drupal/troubleshooting-database-updates) // Requirements check reports errors. Do you wish to continue?: yes.
- πΊπΈUnited States phenaproxima Massachusetts
Project Browser is only compatible with Automatic Updates 3.0.x now. I think they were going to add a
conflict
with 2.x in their composer.json, in order to prevent the situation you're running into, but I'm not sure if they've done that yet.Anyway, you should be able to clear caches if you install
drupal/automatic_updates:3.0.x-dev
.