Skip to content

Commit b17d5f1

Browse files
committed
chore: update Docker defaults to WordPress 6.9
1 parent 7817afd commit b17d5f1

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.changeset/prepare-public-release.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@ Verify WordPress 6.9 compatibility and update CI test matrix
77
- Tested compatibility with WordPress 6.9
88
- Updated CI test matrix to WordPress 6.9, 6.8, 6.7 (dropped 6.5, 6.6)
99
- Updated dev dependencies (mockery/mockery to ^1.6, wp-graphql/wp-graphql-testcase to ^3.4)
10+
- Updated Docker defaults to WordPress 6.9
1011
- Reduced readme.txt tags to 5 for WordPress.org compliance

plugins/hwp-previews/.docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
ARG WP_VERSION
88
ARG PHP_VERSION
99

10-
FROM wordpress:${WP_VERSION:-6.8}-php${PHP_VERSION:-8.2}
10+
FROM wordpress:${WP_VERSION:-6.9}-php${PHP_VERSION:-8.2}
1111

1212
# Needed to specify the build args again after the FROM command.
1313
ARG WP_VERSION

plugins/hwp-previews/bin/build-docker.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ print_usage_instructions() {
1414
echo "Example use:"
1515
echo " npm run docker:build"
1616
echo ""
17-
echo " WP_VERSION=6.7 PHP_VERSION=8.2 npm run docker:build -- - c"
17+
echo " WP_VERSION=6.9 PHP_VERSION=8.2 npm run docker:build -- - c"
1818
echo ""
19-
echo " WP_VERSION=6.7 PHP_VERSION=8.2 bin/build-docker.sh -- c"
19+
echo " WP_VERSION=6.9 PHP_VERSION=8.2 bin/build-docker.sh -- c"
2020
exit 1
2121
}
2222

@@ -50,7 +50,7 @@ done
5050

5151

5252
TAG=${TAG:-latest}
53-
WP_VERSION=${WP_VERSION:-6.7}
53+
WP_VERSION=${WP_VERSION:-6.9}
5454
PHP_VERSION=${PHP_VERSION:-8.2}
5555

5656
BUILD_NO_CACHE=${BUILD_NO_CACHE:-}

0 commit comments

Comments
 (0)