diff --git a/beta/php8.1/apache/Dockerfile b/beta/php8.1/apache/Dockerfile index 23fe355be0..c5ce92aaaf 100644 --- a/beta/php8.1/apache/Dockerfile +++ b/beta/php8.1/apache/Dockerfile @@ -132,8 +132,8 @@ RUN set -eux; \ find /etc/apache2 -type f -name '*.conf' -exec sed -ri 's/([[:space:]]*LogFormat[[:space:]]+"[^"]*)%h([^"]*")/\1%a\2/g' '{}' + RUN set -eux; \ - version='6.7-beta2'; \ - sha1='fcc292dbe5d5517c5b28bf91ae718527028eed08'; \ + version='6.7-beta3'; \ + sha1='c059b63a9d01e07062f598a22987f1a15d54bfe1'; \ \ curl -o wordpress.tar.gz -fL "https://wordpress.org/wordpress-$version.tar.gz"; \ echo "$sha1 *wordpress.tar.gz" | sha1sum -c -; \ diff --git a/beta/php8.1/apache/wp-config-docker.php b/beta/php8.1/apache/wp-config-docker.php index af9ff1c800..6df9809db8 100644 --- a/beta/php8.1/apache/wp-config-docker.php +++ b/beta/php8.1/apache/wp-config-docker.php @@ -93,7 +93,7 @@ function getenv_docker($env, $default) { * You can have multiple installations in one database if you give each * a unique prefix. Only numbers, letters, and underscores please! * - * At the installation time, DB tables names with $table_prefix are created. + * At the installation time, database tables are created with the specified prefix. * Changing this value after WordPress is installed will make your site think * it has not been installed. * diff --git a/beta/php8.1/fpm-alpine/Dockerfile b/beta/php8.1/fpm-alpine/Dockerfile index e9fd004e6e..865a9809b0 100644 --- a/beta/php8.1/fpm-alpine/Dockerfile +++ b/beta/php8.1/fpm-alpine/Dockerfile @@ -109,8 +109,8 @@ RUN { \ } > /usr/local/etc/php/conf.d/error-logging.ini RUN set -eux; \ - version='6.7-beta2'; \ - sha1='fcc292dbe5d5517c5b28bf91ae718527028eed08'; \ + version='6.7-beta3'; \ + sha1='c059b63a9d01e07062f598a22987f1a15d54bfe1'; \ \ curl -o wordpress.tar.gz -fL "https://wordpress.org/wordpress-$version.tar.gz"; \ echo "$sha1 *wordpress.tar.gz" | sha1sum -c -; \ diff --git a/beta/php8.1/fpm-alpine/wp-config-docker.php b/beta/php8.1/fpm-alpine/wp-config-docker.php index af9ff1c800..6df9809db8 100644 --- a/beta/php8.1/fpm-alpine/wp-config-docker.php +++ b/beta/php8.1/fpm-alpine/wp-config-docker.php @@ -93,7 +93,7 @@ function getenv_docker($env, $default) { * You can have multiple installations in one database if you give each * a unique prefix. Only numbers, letters, and underscores please! * - * At the installation time, DB tables names with $table_prefix are created. + * At the installation time, database tables are created with the specified prefix. * Changing this value after WordPress is installed will make your site think * it has not been installed. * diff --git a/beta/php8.1/fpm/Dockerfile b/beta/php8.1/fpm/Dockerfile index 3ea4ba7b90..417f4aa558 100644 --- a/beta/php8.1/fpm/Dockerfile +++ b/beta/php8.1/fpm/Dockerfile @@ -113,8 +113,8 @@ RUN { \ } > /usr/local/etc/php/conf.d/error-logging.ini RUN set -eux; \ - version='6.7-beta2'; \ - sha1='fcc292dbe5d5517c5b28bf91ae718527028eed08'; \ + version='6.7-beta3'; \ + sha1='c059b63a9d01e07062f598a22987f1a15d54bfe1'; \ \ curl -o wordpress.tar.gz -fL "https://wordpress.org/wordpress-$version.tar.gz"; \ echo "$sha1 *wordpress.tar.gz" | sha1sum -c -; \ diff --git a/beta/php8.1/fpm/wp-config-docker.php b/beta/php8.1/fpm/wp-config-docker.php index af9ff1c800..6df9809db8 100644 --- a/beta/php8.1/fpm/wp-config-docker.php +++ b/beta/php8.1/fpm/wp-config-docker.php @@ -93,7 +93,7 @@ function getenv_docker($env, $default) { * You can have multiple installations in one database if you give each * a unique prefix. Only numbers, letters, and underscores please! * - * At the installation time, DB tables names with $table_prefix are created. + * At the installation time, database tables are created with the specified prefix. * Changing this value after WordPress is installed will make your site think * it has not been installed. * diff --git a/beta/php8.2/apache/Dockerfile b/beta/php8.2/apache/Dockerfile index b384165009..d3ca7855d7 100644 --- a/beta/php8.2/apache/Dockerfile +++ b/beta/php8.2/apache/Dockerfile @@ -132,8 +132,8 @@ RUN set -eux; \ find /etc/apache2 -type f -name '*.conf' -exec sed -ri 's/([[:space:]]*LogFormat[[:space:]]+"[^"]*)%h([^"]*")/\1%a\2/g' '{}' + RUN set -eux; \ - version='6.7-beta2'; \ - sha1='fcc292dbe5d5517c5b28bf91ae718527028eed08'; \ + version='6.7-beta3'; \ + sha1='c059b63a9d01e07062f598a22987f1a15d54bfe1'; \ \ curl -o wordpress.tar.gz -fL "https://wordpress.org/wordpress-$version.tar.gz"; \ echo "$sha1 *wordpress.tar.gz" | sha1sum -c -; \ diff --git a/beta/php8.2/apache/wp-config-docker.php b/beta/php8.2/apache/wp-config-docker.php index af9ff1c800..6df9809db8 100644 --- a/beta/php8.2/apache/wp-config-docker.php +++ b/beta/php8.2/apache/wp-config-docker.php @@ -93,7 +93,7 @@ function getenv_docker($env, $default) { * You can have multiple installations in one database if you give each * a unique prefix. Only numbers, letters, and underscores please! * - * At the installation time, DB tables names with $table_prefix are created. + * At the installation time, database tables are created with the specified prefix. * Changing this value after WordPress is installed will make your site think * it has not been installed. * diff --git a/beta/php8.2/fpm-alpine/Dockerfile b/beta/php8.2/fpm-alpine/Dockerfile index c63e9db3c4..a456f3772d 100644 --- a/beta/php8.2/fpm-alpine/Dockerfile +++ b/beta/php8.2/fpm-alpine/Dockerfile @@ -109,8 +109,8 @@ RUN { \ } > /usr/local/etc/php/conf.d/error-logging.ini RUN set -eux; \ - version='6.7-beta2'; \ - sha1='fcc292dbe5d5517c5b28bf91ae718527028eed08'; \ + version='6.7-beta3'; \ + sha1='c059b63a9d01e07062f598a22987f1a15d54bfe1'; \ \ curl -o wordpress.tar.gz -fL "https://wordpress.org/wordpress-$version.tar.gz"; \ echo "$sha1 *wordpress.tar.gz" | sha1sum -c -; \ diff --git a/beta/php8.2/fpm-alpine/wp-config-docker.php b/beta/php8.2/fpm-alpine/wp-config-docker.php index af9ff1c800..6df9809db8 100644 --- a/beta/php8.2/fpm-alpine/wp-config-docker.php +++ b/beta/php8.2/fpm-alpine/wp-config-docker.php @@ -93,7 +93,7 @@ function getenv_docker($env, $default) { * You can have multiple installations in one database if you give each * a unique prefix. Only numbers, letters, and underscores please! * - * At the installation time, DB tables names with $table_prefix are created. + * At the installation time, database tables are created with the specified prefix. * Changing this value after WordPress is installed will make your site think * it has not been installed. * diff --git a/beta/php8.2/fpm/Dockerfile b/beta/php8.2/fpm/Dockerfile index 2093631260..b566ab28f3 100644 --- a/beta/php8.2/fpm/Dockerfile +++ b/beta/php8.2/fpm/Dockerfile @@ -113,8 +113,8 @@ RUN { \ } > /usr/local/etc/php/conf.d/error-logging.ini RUN set -eux; \ - version='6.7-beta2'; \ - sha1='fcc292dbe5d5517c5b28bf91ae718527028eed08'; \ + version='6.7-beta3'; \ + sha1='c059b63a9d01e07062f598a22987f1a15d54bfe1'; \ \ curl -o wordpress.tar.gz -fL "https://wordpress.org/wordpress-$version.tar.gz"; \ echo "$sha1 *wordpress.tar.gz" | sha1sum -c -; \ diff --git a/beta/php8.2/fpm/wp-config-docker.php b/beta/php8.2/fpm/wp-config-docker.php index af9ff1c800..6df9809db8 100644 --- a/beta/php8.2/fpm/wp-config-docker.php +++ b/beta/php8.2/fpm/wp-config-docker.php @@ -93,7 +93,7 @@ function getenv_docker($env, $default) { * You can have multiple installations in one database if you give each * a unique prefix. Only numbers, letters, and underscores please! * - * At the installation time, DB tables names with $table_prefix are created. + * At the installation time, database tables are created with the specified prefix. * Changing this value after WordPress is installed will make your site think * it has not been installed. * diff --git a/beta/php8.3/apache/Dockerfile b/beta/php8.3/apache/Dockerfile index fff250af3b..cd0a5e8b7f 100644 --- a/beta/php8.3/apache/Dockerfile +++ b/beta/php8.3/apache/Dockerfile @@ -132,8 +132,8 @@ RUN set -eux; \ find /etc/apache2 -type f -name '*.conf' -exec sed -ri 's/([[:space:]]*LogFormat[[:space:]]+"[^"]*)%h([^"]*")/\1%a\2/g' '{}' + RUN set -eux; \ - version='6.7-beta2'; \ - sha1='fcc292dbe5d5517c5b28bf91ae718527028eed08'; \ + version='6.7-beta3'; \ + sha1='c059b63a9d01e07062f598a22987f1a15d54bfe1'; \ \ curl -o wordpress.tar.gz -fL "https://wordpress.org/wordpress-$version.tar.gz"; \ echo "$sha1 *wordpress.tar.gz" | sha1sum -c -; \ diff --git a/beta/php8.3/apache/wp-config-docker.php b/beta/php8.3/apache/wp-config-docker.php index af9ff1c800..6df9809db8 100644 --- a/beta/php8.3/apache/wp-config-docker.php +++ b/beta/php8.3/apache/wp-config-docker.php @@ -93,7 +93,7 @@ function getenv_docker($env, $default) { * You can have multiple installations in one database if you give each * a unique prefix. Only numbers, letters, and underscores please! * - * At the installation time, DB tables names with $table_prefix are created. + * At the installation time, database tables are created with the specified prefix. * Changing this value after WordPress is installed will make your site think * it has not been installed. * diff --git a/beta/php8.3/fpm-alpine/Dockerfile b/beta/php8.3/fpm-alpine/Dockerfile index 7d45938517..04b4d1c2ae 100644 --- a/beta/php8.3/fpm-alpine/Dockerfile +++ b/beta/php8.3/fpm-alpine/Dockerfile @@ -109,8 +109,8 @@ RUN { \ } > /usr/local/etc/php/conf.d/error-logging.ini RUN set -eux; \ - version='6.7-beta2'; \ - sha1='fcc292dbe5d5517c5b28bf91ae718527028eed08'; \ + version='6.7-beta3'; \ + sha1='c059b63a9d01e07062f598a22987f1a15d54bfe1'; \ \ curl -o wordpress.tar.gz -fL "https://wordpress.org/wordpress-$version.tar.gz"; \ echo "$sha1 *wordpress.tar.gz" | sha1sum -c -; \ diff --git a/beta/php8.3/fpm-alpine/wp-config-docker.php b/beta/php8.3/fpm-alpine/wp-config-docker.php index af9ff1c800..6df9809db8 100644 --- a/beta/php8.3/fpm-alpine/wp-config-docker.php +++ b/beta/php8.3/fpm-alpine/wp-config-docker.php @@ -93,7 +93,7 @@ function getenv_docker($env, $default) { * You can have multiple installations in one database if you give each * a unique prefix. Only numbers, letters, and underscores please! * - * At the installation time, DB tables names with $table_prefix are created. + * At the installation time, database tables are created with the specified prefix. * Changing this value after WordPress is installed will make your site think * it has not been installed. * diff --git a/beta/php8.3/fpm/Dockerfile b/beta/php8.3/fpm/Dockerfile index 31d0495b6e..e9300dff15 100644 --- a/beta/php8.3/fpm/Dockerfile +++ b/beta/php8.3/fpm/Dockerfile @@ -113,8 +113,8 @@ RUN { \ } > /usr/local/etc/php/conf.d/error-logging.ini RUN set -eux; \ - version='6.7-beta2'; \ - sha1='fcc292dbe5d5517c5b28bf91ae718527028eed08'; \ + version='6.7-beta3'; \ + sha1='c059b63a9d01e07062f598a22987f1a15d54bfe1'; \ \ curl -o wordpress.tar.gz -fL "https://wordpress.org/wordpress-$version.tar.gz"; \ echo "$sha1 *wordpress.tar.gz" | sha1sum -c -; \ diff --git a/beta/php8.3/fpm/wp-config-docker.php b/beta/php8.3/fpm/wp-config-docker.php index af9ff1c800..6df9809db8 100644 --- a/beta/php8.3/fpm/wp-config-docker.php +++ b/beta/php8.3/fpm/wp-config-docker.php @@ -93,7 +93,7 @@ function getenv_docker($env, $default) { * You can have multiple installations in one database if you give each * a unique prefix. Only numbers, letters, and underscores please! * - * At the installation time, DB tables names with $table_prefix are created. + * At the installation time, database tables are created with the specified prefix. * Changing this value after WordPress is installed will make your site think * it has not been installed. * diff --git a/latest/php8.1/apache/wp-config-docker.php b/latest/php8.1/apache/wp-config-docker.php index af9ff1c800..6df9809db8 100644 --- a/latest/php8.1/apache/wp-config-docker.php +++ b/latest/php8.1/apache/wp-config-docker.php @@ -93,7 +93,7 @@ function getenv_docker($env, $default) { * You can have multiple installations in one database if you give each * a unique prefix. Only numbers, letters, and underscores please! * - * At the installation time, DB tables names with $table_prefix are created. + * At the installation time, database tables are created with the specified prefix. * Changing this value after WordPress is installed will make your site think * it has not been installed. * diff --git a/latest/php8.1/fpm-alpine/wp-config-docker.php b/latest/php8.1/fpm-alpine/wp-config-docker.php index af9ff1c800..6df9809db8 100644 --- a/latest/php8.1/fpm-alpine/wp-config-docker.php +++ b/latest/php8.1/fpm-alpine/wp-config-docker.php @@ -93,7 +93,7 @@ function getenv_docker($env, $default) { * You can have multiple installations in one database if you give each * a unique prefix. Only numbers, letters, and underscores please! * - * At the installation time, DB tables names with $table_prefix are created. + * At the installation time, database tables are created with the specified prefix. * Changing this value after WordPress is installed will make your site think * it has not been installed. * diff --git a/latest/php8.1/fpm/wp-config-docker.php b/latest/php8.1/fpm/wp-config-docker.php index af9ff1c800..6df9809db8 100644 --- a/latest/php8.1/fpm/wp-config-docker.php +++ b/latest/php8.1/fpm/wp-config-docker.php @@ -93,7 +93,7 @@ function getenv_docker($env, $default) { * You can have multiple installations in one database if you give each * a unique prefix. Only numbers, letters, and underscores please! * - * At the installation time, DB tables names with $table_prefix are created. + * At the installation time, database tables are created with the specified prefix. * Changing this value after WordPress is installed will make your site think * it has not been installed. * diff --git a/latest/php8.2/apache/wp-config-docker.php b/latest/php8.2/apache/wp-config-docker.php index af9ff1c800..6df9809db8 100644 --- a/latest/php8.2/apache/wp-config-docker.php +++ b/latest/php8.2/apache/wp-config-docker.php @@ -93,7 +93,7 @@ function getenv_docker($env, $default) { * You can have multiple installations in one database if you give each * a unique prefix. Only numbers, letters, and underscores please! * - * At the installation time, DB tables names with $table_prefix are created. + * At the installation time, database tables are created with the specified prefix. * Changing this value after WordPress is installed will make your site think * it has not been installed. * diff --git a/latest/php8.2/fpm-alpine/wp-config-docker.php b/latest/php8.2/fpm-alpine/wp-config-docker.php index af9ff1c800..6df9809db8 100644 --- a/latest/php8.2/fpm-alpine/wp-config-docker.php +++ b/latest/php8.2/fpm-alpine/wp-config-docker.php @@ -93,7 +93,7 @@ function getenv_docker($env, $default) { * You can have multiple installations in one database if you give each * a unique prefix. Only numbers, letters, and underscores please! * - * At the installation time, DB tables names with $table_prefix are created. + * At the installation time, database tables are created with the specified prefix. * Changing this value after WordPress is installed will make your site think * it has not been installed. * diff --git a/latest/php8.2/fpm/wp-config-docker.php b/latest/php8.2/fpm/wp-config-docker.php index af9ff1c800..6df9809db8 100644 --- a/latest/php8.2/fpm/wp-config-docker.php +++ b/latest/php8.2/fpm/wp-config-docker.php @@ -93,7 +93,7 @@ function getenv_docker($env, $default) { * You can have multiple installations in one database if you give each * a unique prefix. Only numbers, letters, and underscores please! * - * At the installation time, DB tables names with $table_prefix are created. + * At the installation time, database tables are created with the specified prefix. * Changing this value after WordPress is installed will make your site think * it has not been installed. * diff --git a/latest/php8.3/apache/wp-config-docker.php b/latest/php8.3/apache/wp-config-docker.php index af9ff1c800..6df9809db8 100644 --- a/latest/php8.3/apache/wp-config-docker.php +++ b/latest/php8.3/apache/wp-config-docker.php @@ -93,7 +93,7 @@ function getenv_docker($env, $default) { * You can have multiple installations in one database if you give each * a unique prefix. Only numbers, letters, and underscores please! * - * At the installation time, DB tables names with $table_prefix are created. + * At the installation time, database tables are created with the specified prefix. * Changing this value after WordPress is installed will make your site think * it has not been installed. * diff --git a/latest/php8.3/fpm-alpine/wp-config-docker.php b/latest/php8.3/fpm-alpine/wp-config-docker.php index af9ff1c800..6df9809db8 100644 --- a/latest/php8.3/fpm-alpine/wp-config-docker.php +++ b/latest/php8.3/fpm-alpine/wp-config-docker.php @@ -93,7 +93,7 @@ function getenv_docker($env, $default) { * You can have multiple installations in one database if you give each * a unique prefix. Only numbers, letters, and underscores please! * - * At the installation time, DB tables names with $table_prefix are created. + * At the installation time, database tables are created with the specified prefix. * Changing this value after WordPress is installed will make your site think * it has not been installed. * diff --git a/latest/php8.3/fpm/wp-config-docker.php b/latest/php8.3/fpm/wp-config-docker.php index af9ff1c800..6df9809db8 100644 --- a/latest/php8.3/fpm/wp-config-docker.php +++ b/latest/php8.3/fpm/wp-config-docker.php @@ -93,7 +93,7 @@ function getenv_docker($env, $default) { * You can have multiple installations in one database if you give each * a unique prefix. Only numbers, letters, and underscores please! * - * At the installation time, DB tables names with $table_prefix are created. + * At the installation time, database tables are created with the specified prefix. * Changing this value after WordPress is installed will make your site think * it has not been installed. * diff --git a/versions.json b/versions.json index b2eee9c5e8..deee5cb5d5 100644 --- a/versions.json +++ b/versions.json @@ -5,14 +5,14 @@ "8.2", "8.3" ], - "sha1": "fcc292dbe5d5517c5b28bf91ae718527028eed08", - "upstream": "6.7-beta2", + "sha1": "c059b63a9d01e07062f598a22987f1a15d54bfe1", + "upstream": "6.7-beta3", "variants": [ "apache", "fpm", "fpm-alpine" ], - "version": "6.7-beta2" + "version": "6.7-beta3" }, "cli": { "phpVersions": [ diff --git a/wp-config-docker.php b/wp-config-docker.php index af9ff1c800..6df9809db8 100644 --- a/wp-config-docker.php +++ b/wp-config-docker.php @@ -93,7 +93,7 @@ function getenv_docker($env, $default) { * You can have multiple installations in one database if you give each * a unique prefix. Only numbers, letters, and underscores please! * - * At the installation time, DB tables names with $table_prefix are created. + * At the installation time, database tables are created with the specified prefix. * Changing this value after WordPress is installed will make your site think * it has not been installed. *