Commits on Source (47)
-
-
Issue #3313346 by omkar.podey, tedbow: UpdateReady is not displaying all the messages for statusCheck validation results
-
-
Issue #3109082 by phenaproxima, Schnitzel, yash.rode, tedbow, wiifm, heddn, Leksat: Allow hosting platforms to declare that they don't support Package Manager
-
Issue #3313630 by Theresa.Grannum, phenaproxima: Automatic Updates help has the wrong route name and errors
-
Issue #3312669 by phenaproxima, Theresa.Grannum: Add help text explaining how to set an alternate port for cron
-
Issue #3312373 by omkar.podey, phenaproxima: Automatic Updates Extensions' UpdateReady form should dispatch StatusCheckEvent
-
-
-
Adam G-H authored
-
Issue #3315139 by kunal.sachdev: package_manager.update_data_subscriber does not have to be declared dynamically
-
Issue #3314946 by omkar.podey: UpdateReady mistakenly assigns a special CSS class to all validation results
-
Issue #3314805 by phenaproxima, kunal.sachdev: Create a base class for UpdaterForm and UpdateReady to help run status checks and display the results
-
Adam G-H authored
-
Issue #3302527 by omkar.podey: Updater::dispatch() doesn't need to handle a StageValidationException with no message
-
Adam G-H authored
-
Issue #3310696 by tedbow, Shabbir, omkar.podey: if only newer releases are pre-releases Updating from one minor to latest version Drupal version, module does not show any other updates
-
Issue #3314787 by kunal.sachdev, phenaproxima, tedbow: StagedDBUpdateValidator will throw an exception during status check if the stage exists, but is unclaimed
-
-
-
Issue #3298889 by yash.rode, tedbow: Make \Drupal\package_manager_test_api\ApiController more easily extendable
-
-
Adam G-H authored
-
-
Issue #3317267 by phenaproxima: Deprecate the overridability of Stage::TEMPSTORE_LOCK_KEY and Stage::TEMPSTORE_METADATA_KEY
-
Adam G-H authored
-
Adam G-H authored
-
Adam G-H authored
-
Adam G-H authored
-
Ted Bowman authored
Issue #3316721 by kunal.sachdev, tedbow: Add script to convert this module into a core merge request
-
Ted Bowman authored
Issue #3280403 by kunal.sachdev, tedbow: Show all updates for all supported branches in the current major on the update form
-
Ted Bowman authored
Showing
- .gitattributes 1 addition, 0 deletions.gitattributes
- automatic_updates.install 15 additions, 4 deletionsautomatic_updates.install
- automatic_updates.module 95 additions, 89 deletionsautomatic_updates.module
- automatic_updates.post_update.php 18 additions, 0 deletionsautomatic_updates.post_update.php
- automatic_updates.routing.yml 24 additions, 26 deletionsautomatic_updates.routing.yml
- automatic_updates.services.yml 19 additions, 57 deletionsautomatic_updates.services.yml
- automatic_updates_extensions/automatic_updates_extensions.routing.yml 4 additions, 4 deletions...dates_extensions/automatic_updates_extensions.routing.yml
- automatic_updates_extensions/src/BatchProcessor.php 9 additions, 0 deletionsautomatic_updates_extensions/src/BatchProcessor.php
- automatic_updates_extensions/src/ExtensionUpdater.php 1 addition, 1 deletionautomatic_updates_extensions/src/ExtensionUpdater.php
- automatic_updates_extensions/src/Form/UpdateReady.php 29 additions, 32 deletionsautomatic_updates_extensions/src/Form/UpdateReady.php
- automatic_updates_extensions/src/Form/UpdaterForm.php 6 additions, 11 deletionsautomatic_updates_extensions/src/Form/UpdaterForm.php
- automatic_updates_extensions/src/Validator/UpdateReleaseValidator.php 1 addition, 1 deletion...dates_extensions/src/Validator/UpdateReleaseValidator.php
- automatic_updates_extensions/tests/modules/automatic_updates_extensions_test_api/automatic_updates_extensions_test_api.info.yml 1 addition, 0 deletions...s_test_api/automatic_updates_extensions_test_api.info.yml
- automatic_updates_extensions/tests/modules/automatic_updates_extensions_test_api/automatic_updates_extensions_test_api.routing.yml 6 additions, 0 deletions...est_api/automatic_updates_extensions_test_api.routing.yml
- automatic_updates_extensions/tests/modules/automatic_updates_extensions_test_api/src/ApiController.php 10 additions, 59 deletions...tomatic_updates_extensions_test_api/src/ApiController.php
- automatic_updates_extensions/tests/src/Build/ModuleUpdateTest.php 1 addition, 1 deletion...c_updates_extensions/tests/src/Build/ModuleUpdateTest.php
- automatic_updates_extensions/tests/src/Functional/UpdaterFormTest.php 68 additions, 9 deletions...dates_extensions/tests/src/Functional/UpdaterFormTest.php
- automatic_updates_extensions/tests/src/Kernel/ExtensionUpdaterTest.php 54 additions, 2 deletions...ates_extensions/tests/src/Kernel/ExtensionUpdaterTest.php
- composer.json 11 additions, 4 deletionscomposer.json
- config/install/automatic_updates.settings.yml 1 addition, 0 deletionsconfig/install/automatic_updates.settings.yml
automatic_updates.post_update.php
0 → 100644
... | ... | @@ -13,7 +13,7 @@ |
"require": { | ||
"ext-json": "*", | ||
"drupal/core": "^9.3", | ||
"php-tuf/composer-stager": "^1.1", | ||
"php-tuf/composer-stager": "^1.2", | ||
"composer/composer": "^2.2.12 || ^2.3.5", | ||
"composer-runtime-api": "^2.1", | ||
"symfony/config": "^4.4 || ^6.1", | ||
... | ... | @@ -31,11 +31,18 @@ |
"test": [ | ||
"Composer\\Config::disableProcessTimeout", | ||
"scripts/phpunit.sh" | ||
] | ||
], | ||
"core-convert": "Drupal\\automatic_updates\\CoreCovert\\Converter::doConvert" | ||
}, | ||
"scripts-descriptions": { | ||
"phpcbf": "Automatically fixes standards violations where possible.", | ||
"phpcs": "Checks code for standards compliance.", | ||
"test": "Runs PHPUnit tests." | ||
} | ||
"test": "Runs PHPUnit tests.", | ||
"core-convert": "Converts this module to a core merge request. Excepts 2 arguments. 1) The core clone directory. 2) The core merge request branch." | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Drupal\\automatic_updates\\CoreCovert\\": "scripts/src" | ||
} | ||
} | ||
} |