diff --git a/CHANGELOG.md b/CHANGELOG.md index 563f2e9ab..c876c4f56 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Toolkit change log +## Version 10.12.0 + - DQA-9180: Unsupported packages should enable config-sync. + - DQA-9265: Increase timeout in getPackageLatestVersion(). + - DQA-9198: Intermittent failures for toolkit:install-dependencies. + - DQA-9467: Remove dependency on composer/class-map-generator. + - DQA-9396: Component check not validating constraints. + - DQA-9426: Create toolkit command to run AXE Scanner. + - DQA-8660: Create command toolkit:lint-css. + ## Version 10.11.2 - DQA-9217: Align SANITIZE_OPTS on .opts.yml. diff --git a/docs/guide/commands.rst b/docs/guide/commands.rst index 21420846a..cef0c8d67 100644 --- a/docs/guide/commands.rst +++ b/docs/guide/commands.rst @@ -67,8 +67,9 @@ See bellow current list of available commands: toolkit:import-config [DEPRECATED] Run the Drupal config import. toolkit:install-clean [tk-iclean] Install a clean website. toolkit:install-clone [tk-iclone] Install a clone website. - toolkit:install-dependencies Install packages present in the opts.yml file under extra_pkgs section. + toolkit:install-dependencies Install packages present in the .opts.yml file under extra_pkgs section. toolkit:install-dump [tk-idump] Import the production snapshot. + toolkit:lint-css [tk-css] Run lint CSS. 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. @@ -77,10 +78,13 @@ See bellow current list of available 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 [tk-req] Check the Toolkit Requirements. + toolkit:run-axe-scan [tk-axe] Run the axe-scan. + toolkit:run-axe-scan-summary [tk-axe-sum] Run the axe-scan summary. toolkit:run-blackfire [tk-bfire|tbf] Run Blackfire. toolkit:run-deploy [tk-deploy] Run deployment sequence. toolkit:run-gitleaks [tk-gitleaks] Executes the Gitleaks. toolkit:run-phpcbf [tk-phpcbf] Run PHP code autofixing. + toolkit:setup-axe-scan Make sure axe-scan is installed and properly configured. toolkit:setup-behat Setup the Behat file. toolkit:setup-blackfire-behat Copy the needed resources to run Behat with Blackfire. toolkit:setup-eslint Setup the ESLint configurations and dependencies. diff --git a/phpdoc.dist.xml b/phpdoc.dist.xml index 7abcb5733..ca3ef58f7 100644 --- a/phpdoc.dist.xml +++ b/phpdoc.dist.xml @@ -9,7 +9,7 @@ docs - + latest diff --git a/src/Toolkit.php b/src/Toolkit.php index b15d90e65..3aa56035f 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.11.2'; + public const VERSION = '10.12.0'; /** * The Toolkit repository.