From a2bcda5157b20465cebe1d7a5ba7a947b56945e5 Mon Sep 17 00:00:00 2001 From: Jonathan Hedstrom Date: Tue, 31 Dec 2019 11:28:02 -0800 Subject: [PATCH 1/3] Test on PHP 7.3 and Drush 10. - Closes #563 --- .travis.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 89c4d520..8a70aa9e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,6 +4,7 @@ php: - 7.0 - 7.1 - 7.2 + - 7.3 env: global: @@ -26,10 +27,10 @@ install: # @see https://github.com/jhedstrom/drupalextension/issues/413 # @todo Re-enable behat drush endpoint testing. # @see https://github.com/jhedstrom/drupalextension/issues/458 - - test ${DRUPAL_VERSION} -ne 8 || COMPOSER_MEMORY_LIMIT=-1 travis_retry composer require drush/drush:~9.0 symfony/dependency-injection:3.4.4 + - test ${DRUPAL_VERSION} -ne 8 || COMPOSER_MEMORY_LIMIT=-1 travis_retry composer require drush/drush:~10.0 symfony/dependency-injection:3.4.4 - composer install # Install drush globally. - - (test ${DRUPAL_VERSION} -ne 8 && composer global require drush/drush:~8.0 drupal/drupal-driver) || composer global require drush/drush:~9.0 + - (test ${DRUPAL_VERSION} -ne 8 && composer global require drush/drush:~8.0 drupal/drupal-driver) || composer global require drush/drush:~10.0 # Install the Behat Drush Endpoint for Drupal 7 tests. - test ${DRUPAL_VERSION} -ne 7 || (git clone https://github.com/drush-ops/behat-drush-endpoint.git drush/behat-drush-endpoint && (cd drush/behat-drush-endpoint && composer install && cd -)) # Pin node version. From 0f3bdaf26a7812dffdc2efc3984c2f23e03df224 Mon Sep 17 00:00:00 2001 From: Jonathan Hedstrom Date: Tue, 31 Dec 2019 12:42:31 -0800 Subject: [PATCH 2/3] Remove PHP 7 testing, add PHP 7.4. --- .travis.yml | 2 +- CHANGELOG.md | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 8a70aa9e..25cdfa92 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,10 +1,10 @@ language: php php: - - 7.0 - 7.1 - 7.2 - 7.3 + - 7.4 env: global: diff --git a/CHANGELOG.md b/CHANGELOG.md index 959432f9..e90761fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] ### Added * [#488](https://github.com/jhedstrom/drupalextension/issues/488) Authenticate user in the backend bootstrap process on login. +### Changed + * [#563](https://github.com/jhedstrom/drupalextension/issues/563) Test on PHP 7.1 through 7.4 (and use Drush 10), remove testing on PHP 7.0. ## [4.0.1] 2019-10-08 ### Fixed * [#552](https://github.com/jhedstrom/drupalextension/issue/552) Remove hard-coded symfony/event-dispatcher requirement. From e1ffd1c828d24edf6fcc3b1e49242adf2eb13eab Mon Sep 17 00:00:00 2001 From: Jonathan Hedstrom Date: Tue, 31 Dec 2019 12:53:23 -0800 Subject: [PATCH 3/3] Remove testing on PHP 7.4 as core isn't ready yet. --- .travis.yml | 1 - CHANGELOG.md | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 25cdfa92..c2a91adb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,6 @@ php: - 7.1 - 7.2 - 7.3 - - 7.4 env: global: diff --git a/CHANGELOG.md b/CHANGELOG.md index e90761fe..eb807bb7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ### Added * [#488](https://github.com/jhedstrom/drupalextension/issues/488) Authenticate user in the backend bootstrap process on login. ### Changed - * [#563](https://github.com/jhedstrom/drupalextension/issues/563) Test on PHP 7.1 through 7.4 (and use Drush 10), remove testing on PHP 7.0. + * [#563](https://github.com/jhedstrom/drupalextension/issues/563) Test on PHP 7.1 through 7.3 (and use Drush 10), remove testing on PHP 7.0. ## [4.0.1] 2019-10-08 ### Fixed * [#552](https://github.com/jhedstrom/drupalextension/issue/552) Remove hard-coded symfony/event-dispatcher requirement.