- 🇺🇸United States japerry KVUO
Repurposing this support request into the larger issue. The purge drush commands currently require a sub module to be enabled. This is sub-optimal because composer cannot easily detect the drush commands services from a sub module.
The PR will move and rewrite the drush commands, while still providing backwards compatibility
- Status changed to Needs review
over 1 year ago 5:59pm 15 August 2023 - 🇭🇺Hungary Balu Ertl Budapest 🇪🇺
Balu Ertl → made their first commit to this issue’s fork.
- Status changed to RTBC
over 1 year ago 3:51pm 21 September 2023 - 🇭🇺Hungary Balu Ertl Budapest 🇪🇺
The steps I followed to simulate a possible scenario of updating the module to its new version:
$ composer require 'drupal/purge:3.4'
– assume the latest stable version being installed on a site$ drush en purge_drush purge_queuer_coretags purge_processor_cron
– enable all the sub-modules as the docs of v3.4 prescribes$ drush pdia
– Diagnostics report (maybe with a red line at its top) should appear$ drush ptyp
– an 8-item list should appear- Leave the
purge_drush
sub-module enabled on the site $ composer clear-cache
$ composer require "drupal/purge:dev-3078507-refactor-drush-commands" -W
– temporarily this represents the future version$ drush updb
– no DB updates were detected for me$ drush cc
, then „0” – empty Drush’ cache$ drush cr
$ drush pdia
– the diagnostics report should appear$ drush ptyp
– an 8-item list should appear
This way I ensured that the Drush commands were still properly discovered and usable before moving up them from their sub-module.
- last update
over 1 year ago 570 pass, 10 fail - @balu-ertl opened merge request.
- last update
over 1 year ago 570 pass, 10 fail - last update
over 1 year ago 570 pass, 10 fail - last update
over 1 year ago 570 pass, 10 fail - last update
over 1 year ago 597 pass, 4 fail - last update
over 1 year ago 610 pass - last update
over 1 year ago 610 pass - last update
over 1 year ago 610 pass -
japerry →
committed 0cdda178 on 8.x-3.x authored by
Balu Ertl →
Issue #3078507 by japerry, Balu Ertl: Refactor drush commands into base...
-
japerry →
committed 0cdda178 on 8.x-3.x authored by
Balu Ertl →
- Status changed to Fixed
over 1 year ago 4:35am 26 September 2023 - 🇺🇸United States japerry KVUO
Fixed!
Note: the drush queues will be automatically enabled if you have drush_purge enabled now. If you don't, you can manually enable the plugins within the purge ui.
- 🇭🇺Hungary Balu Ertl Budapest 🇪🇺
On my local instance, Composer automatically updates the required
"dev-3.x"
version this is how I realized that the plugin class has suddenly disappeared:@japerry do you think we should leave behind placeholders for the classes within the
/modules/purge_drush/src/Plugin/Purge
directory to notify others about the deprecation? - 🇺🇸United States japerry KVUO
This only requires a cache refresh, which was added as a database update to purge.
Automatically closed - issue fixed for 2 weeks with no activity.
- Status changed to Fixed
over 1 year ago 11:09pm 18 October 2023 - 🇦🇺Australia acbramley
enable_by_default = true
was removed from the Drush processor plugin for whatever reason so anyone upgrading to 3.5 will need to rundrush p:processor-add drush_purge_queue_work
(which gets output when trying to run the queue-work command) and then export configuration.This probably should have been included in an update hook in this issue.