diff --git a/.github/workflows/ui-tests.yml b/.github/workflows/ui-tests.yml index 13a2433..d555ac2 100644 --- a/.github/workflows/ui-tests.yml +++ b/.github/workflows/ui-tests.yml @@ -81,8 +81,8 @@ jobs: - name: run tests env: - TAWK_PROPERTY_ID: ${{ secrets.TAWK_PROPERTY_ID }} - TAWK_WIDGET_ID: ${{ secrets.TAWK_WIDGET_ID }} + TAWK_PROPERTY_ID: 61efb9abb9e4e21181bbc347 + TAWK_WIDGET_ID: 1fq86qic0 TAWK_USERNAME: ${{ secrets.TAWK_USERNAME }} TAWK_PASSWORD: ${{ secrets.TAWK_PASSWORD }} run: composer run test diff --git a/tawkto/readme.txt b/tawkto/readme.txt index e988a90..f9866f4 100644 --- a/tawkto/readme.txt +++ b/tawkto/readme.txt @@ -3,7 +3,7 @@ Contributors: tawkto Tags: tawk,tawk.to,tawkto,chat,free chat,livechat,chat widget,plugin,chat for web,chat online,chat software,free live chat,IM Chat,,live chat,live support,live web chat,online chat,online support,snapengage,wordpress chat,wordpress live chat Requires at least: 2.7 Requires PHP: 5.6 -Tested up to: 5.8 +Tested up to: 5.9 Stable tag: 0.7.0 (OFFICIAL tawk.to plugin) Instantly chat with visitors on your website with the free tawk.to chat widget. @@ -71,6 +71,7 @@ Note: You will need a free tawk.to account: [Create one for free here!](https:// = 0.7.0 = * Enhanced URL pattern matching. +* Supported version bump 5.9. = 0.6.0 = * **Security Update** Add CSRF tokens and specific action access checks. diff --git a/tests/docker/build/files/build-wordpress.sh b/tests/docker/build/files/build-wordpress.sh index 5843d76..bf3ee24 100755 --- a/tests/docker/build/files/build-wordpress.sh +++ b/tests/docker/build/files/build-wordpress.sh @@ -36,8 +36,24 @@ if [ $FAILED -gt 0 ]; then exit 1; fi -# Run wp cli setup commands +# Finish WordPress installation wp core install --path="/var/www/html" --url=http://${WEB_HOST} --title="Local Wordpress By Docker" --admin_user=${WORDPRESS_ADMIN_USER} --admin_password=${WORDPRESS_ADMIN_PASSWORD} --admin_email=${WORDPRESS_ADMIN_EMAIL} && \ + +# If you see “Error: Another update is currently in progress.”, +# you may need to run wp option delete core_updater.lock after +# verifying another update isn’t actually running. +# +# From https://developer.wordpress.org/cli/commands/core/update/ +wp option delete core_updater.lock; + +# Update to latest WordPress version +# This does a version check before proceeding to update. +wp core update; + +# Print current WordPress version +wp core version; + +# Run wp cli setup commands wp rewrite structure /%postname%/ && \ wp term create category Category-A --description="Category A" && \ wp term create category Category-B --description="Category B" && \