Skip to content

Commit

Permalink
Prepare release 10.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
joaocsilva committed Feb 15, 2024
1 parent b63ac69 commit 0c4c975
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 7 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
10 changes: 5 additions & 5 deletions docs/guide/commands.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion phpdoc.dist.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<paths>
<output>docs</output>
</paths>
<version number="10.8.1">
<version number="10.9.0">
<folder>latest</folder>
<api>
<source dsn=".">
Expand Down
1 change: 1 addition & 0 deletions src/TaskRunner/Commands/BuildCommands.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/Toolkit.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 0c4c975

Please sign in to comment.