diff --git a/CHANGELOG.md b/CHANGELOG.md index c2f571253..9462605d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Toolkit change log +## Version 10.9.0 + - DQA-8674: Include ASDA_URL in the list of forbidden variables. + - DQA-8699: Update toolkit information in composer and repository. + - DQA-8671: Update toolkit code-review command. + - DQA-8673: Remove old implementation for ASDA. + - DQA-8672: Add possibility to download-dump from other sources. + - DQA-6867: Integrate ECL Build with toolkit. + - DQA-8756: Fix .env and parse_ini_file issue. + - DQA-8739: Include PHP 8.3 support for toolkit. + ## Version 10.8.1 - DQA-8659: Drop pm:security from component-check command. - DQA-8654: Align project information endpoint with new Envs structure. diff --git a/docs/guide/commands.rst b/docs/guide/commands.rst index 59821472a..4395bc7f1 100644 --- a/docs/guide/commands.rst +++ b/docs/guide/commands.rst @@ -33,17 +33,17 @@ See bellow current list of available commands: drupal:symlink-project Symlink project as module, theme or profile in the proper directory. drupal:upgrade-status [tdus] Check project compatibility for Drupal 9/10 upgrade. toolkit - toolkit:build-assets [tk-bassets|tk-assets|tba] Build theme assets (Css and Js). + toolkit:build-assets [tk-assets|tba] Build theme assets (Css and Js). toolkit:build-dev [tk-bdev] Build site for local development. toolkit:build-dev-reset [tk-bdev-reset] Build site for local development from scratch with a clean git. toolkit:build-dist [tk-bdist] Build the distribution package. toolkit:check-phpcs-requirements Make sure that the config file exists and configuration is correct. toolkit:check-version Check the Toolkit version. - toolkit:code-review This command will execute all the testing tools. + toolkit:code-review Execute all or specific tools for static testing. toolkit:complock-check Check if 'composer.lock' exists on the project root folder. toolkit:component-check Check composer for components that are not whitelisted/blacklisted. toolkit:create-dump [tk-cdump] Export the local snapshot. - toolkit:download-dump [tk-ddump] Download ASDA snapshot. + toolkit:download-dump [tk-ddump] Download database snapshot. toolkit:fix-permissions Run script to fix permissions (experimental). toolkit:hooks-delete-all [tk-hdel] Remove all existing hooks, this will ignore active hooks list. toolkit:hooks-disable [tk-hdis] Disable the git hooks. @@ -58,10 +58,10 @@ See bellow current list of available commands: toolkit:lint-js [tk-js|tljs] Run lint JS. toolkit:lint-php [tk-php|tlp] Run lint PHP. toolkit:lint-yaml [tk-yaml|tly] Run lint YAML. - toolkit:opts-review Check project's .opts.yml file for forbidden commands. + toolkit:opts-review [tk-opts-review] Check project's .opts.yml file for forbidden commands. toolkit:patch-download [tk-pd] Download remote patches into a local directory. toolkit:patch-list [tk-pl] Lists remote patches from the root composer.json. - toolkit:requirements Check the Toolkit Requirements. + toolkit:requirements [tk-req] Check the Toolkit Requirements. toolkit:run-blackfire [tk-bfire|tbf] Run Blackfire. toolkit:run-deploy [tk-deploy] Run deployment sequence. toolkit:run-gitleaks [tk-gitleaks] Executes the Gitleaks. diff --git a/phpdoc.dist.xml b/phpdoc.dist.xml index bbbdcceb1..66f2c8a24 100644 --- a/phpdoc.dist.xml +++ b/phpdoc.dist.xml @@ -9,7 +9,7 @@ docs - + latest diff --git a/src/TaskRunner/Commands/BuildCommands.php b/src/TaskRunner/Commands/BuildCommands.php index 59dbb6f32..b3df9ba09 100644 --- a/src/TaskRunner/Commands/BuildCommands.php +++ b/src/TaskRunner/Commands/BuildCommands.php @@ -279,6 +279,7 @@ public function buildDevReset(array $options = [ /** * Build theme assets (Css and Js). + * * Install task runner, additional packages and execute. * * @param array $options diff --git a/src/Toolkit.php b/src/Toolkit.php index 3de5aac94..1dd0cb259 100644 --- a/src/Toolkit.php +++ b/src/Toolkit.php @@ -14,7 +14,7 @@ final class Toolkit /** * Constant holding the current version. */ - public const VERSION = '10.8.1'; + public const VERSION = '10.9.0'; /** * The Toolkit repository.