diff --git a/tests/e2e/env/CHANGELOG.md b/tests/e2e/env/CHANGELOG.md index 69b47c445ad..a29d532b0f9 100644 --- a/tests/e2e/env/CHANGELOG.md +++ b/tests/e2e/env/CHANGELOG.md @@ -8,6 +8,7 @@ - `downloadZip( fileUrl, downloadPath )` downloads a plugin zip file from a remote location to the provided path. - Added `getLatestReleaseZipUrl( owner, repository, getPrerelease, perPage )` util function to get the latest release zip from a GitHub repository. - Added `DEFAULT_TIMEOUT_OVERRIDE` that allows passing in a time in milliseconds to override the default Jest and Puppeteer timeouts. +- Update fallback WordPress version to 5.8.0. # 0.2.2 diff --git a/tests/e2e/env/bin/docker-compose.sh b/tests/e2e/env/bin/docker-compose.sh index cd091eda87c..a83b1e163f2 100755 --- a/tests/e2e/env/bin/docker-compose.sh +++ b/tests/e2e/env/bin/docker-compose.sh @@ -10,7 +10,7 @@ if [[ $1 ]]; then if [[ $WP_VERSION =~ ^[0-9]+\.[0-9]+ ]]; then export WORDPRESS_VERSION=$WP_VERSION else - export WORDPRESS_VERSION="5.5.1" + export WORDPRESS_VERSION="5.8.0" fi if ! [[ $TRAVIS_PHP_VERSION =~ ^[0-9]+\.[0-9]+ ]]; then