Merge pull request #30529 from woocommerce/e2e/bump-wp-5.8.0
bump the fallback WP version to 5.8.0
This commit is contained in:
commit
fb9b2661b8
|
@ -8,6 +8,7 @@
|
||||||
- `downloadZip( fileUrl, downloadPath )` downloads a plugin zip file from a remote location to the provided path.
|
- `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 `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.
|
- 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
|
# 0.2.2
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@ if [[ $1 ]]; then
|
||||||
if [[ $WP_VERSION =~ ^[0-9]+\.[0-9]+ ]]; then
|
if [[ $WP_VERSION =~ ^[0-9]+\.[0-9]+ ]]; then
|
||||||
export WORDPRESS_VERSION=$WP_VERSION
|
export WORDPRESS_VERSION=$WP_VERSION
|
||||||
else
|
else
|
||||||
export WORDPRESS_VERSION="5.5.1"
|
export WORDPRESS_VERSION="5.8.0"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if ! [[ $TRAVIS_PHP_VERSION =~ ^[0-9]+\.[0-9]+ ]]; then
|
if ! [[ $TRAVIS_PHP_VERSION =~ ^[0-9]+\.[0-9]+ ]]; then
|
||||||
|
|
Loading…
Reference in New Issue