Skip to content

Commit

Permalink
Release 9.3.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
joaocsilva committed Jan 19, 2023
1 parent 4d62e9f commit 15de786
Showing 5 changed files with 24 additions and 8 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Toolkit change log

## Version 9.3.0
- DQA-5410: Improve load of database during clone install.
- DQA-5473: Tests for DrupalCommands.
- DQA-5760: Fix overridden configurations not working.
- DQA-5643: Apply to 'ensureArray' all tasks.
- DQA-5484: Better error handling.
- DQA-5743: Create task to self-update docker-compose.yml.
- DQA-5317: Allow multiple config files to be loaded.
- DQA-5885: Add command drupal:symlink-project.
- DQA-4768: Allow myloader to be used.
- DQA-5913: PHP 8.2 support.
- DQA-5945: Allow option dumpfile in install-clone command.
- DQA-5946: Add config command copy-dir.

## Version 9.2.0
- DQA-5384: Improve test coverage for toolkit.
- DQA-5102: Set outdated as soft block.
2 changes: 2 additions & 0 deletions docs/guide/commands.rst
Original file line number Diff line number Diff line change
@@ -28,6 +28,7 @@ See bellow current list of available commands:
drupal:site-install [drupal:si|dsi] Install target site.
drupal:site-post-install Run Drupal post-install commands.
drupal:site-pre-install Run Drupal pre-install 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 [tba|tk-assets] Build theme assets (Css and Js).
@@ -39,6 +40,7 @@ See bellow current list of available commands:
toolkit:code-review This command will execute all the testing tools.
toolkit:complock-check Check if 'composer.lock' exists on the project root folder.
toolkit:component-check Check composer.json for components that are not whitelisted/blacklisted.
toolkit:create-dump Export the local snapshot.
toolkit:download-dump Download ASDA snapshot.
toolkit:fix-permissions Run script to fix permissions (experimental).
toolkit:hooks-delete-all Remove all existing hooks, this will ignore active hooks list.
2 changes: 1 addition & 1 deletion phpdoc.dist.xml
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@
<paths>
<output>docs</output>
</paths>
<version number="9.2.0">
<version number="9.3.0">
<folder>latest</folder>
<api>
<source dsn=".">
2 changes: 1 addition & 1 deletion src/Toolkit.php
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@ final class Toolkit
/**
* Constant holding the current version.
*/
public const VERSION = '9.2.0';
public const VERSION = '9.3.0';

/**
* Returns the Toolkit root.
12 changes: 6 additions & 6 deletions tests/fixtures/commands/tool.yml
Original file line number Diff line number Diff line change
@@ -37,7 +37,7 @@
----------------- ---------------------
PHP version OK (8.1.14)
Toolkit version OK (9.2.0)
Toolkit version OK (9.3.0)
Drupal version FAIL (not found) ()
----------------- ---------------------
php8.2:
@@ -61,7 +61,7 @@
----------------- ---------------------
PHP version OK (8.2.1)
Toolkit version OK (9.2.0)
Toolkit version OK (9.3.0)
Drupal version FAIL (not found) ()
----------------- ---------------------
@@ -92,7 +92,7 @@
----------------- -------------
PHP version OK (8.1.14)
Toolkit version OK (9.2.0)
Toolkit version OK (9.3.0)
Drupal version OK (9.4.8)
----------------- -------------
php8.2:
@@ -116,7 +116,7 @@
----------------- ------------
PHP version OK (8.2.1)
Toolkit version OK (9.2.0)
Toolkit version OK (9.3.0)
Drupal version OK (9.4.8)
----------------- ------------
@@ -149,7 +149,7 @@
[WARNING] Failed to get Toolkit version from composer.lock.
Minimum version: ^9.0
Current version: 9.2.0
Current version: 9.3.0
Version check: OK
- command: toolkit:check-version
@@ -162,7 +162,7 @@
> Checking Toolkit version:
Minimum version: ^9.0
Current version: 9.2.0
Current version: 9.3.0
Version check: OK
- command: toolkit:vendor-list

0 comments on commit 15de786

Please sign in to comment.