diff --git a/build/docker-bake.hcl b/build/docker-bake.hcl index c0c6ef4..26d2d31 100644 --- a/build/docker-bake.hcl +++ b/build/docker-bake.hcl @@ -1,5 +1,5 @@ group "default" { - targets = ["5.3.0", "5.3.1", "5.3.2", "5.4.0", "5.4.1", "5.4.2", "5.5.1", "5.5.3", "5.6.0", "5.6.1", "5.6.2", "5.7.0", "5.7.1", "5.7.2", "5.8.0", "5.8.1", "5.8.2"] + targets = ["5.3.0", "5.3.1", "5.3.2", "5.4.0", "5.4.1", "5.4.2", "5.5.1", "5.5.3", "5.6.0", "5.6.1", "5.6.2", "5.7.0", "5.7.1", "5.7.2", "5.8.0", "5.8.1", "5.8.2", "5.8.3"] } target "build-dockerfile" { @@ -144,8 +144,16 @@ target "5.8.1" { target "5.8.2" { inherits = ["build-dockerfile", "build-platforms", "build-common"] - tags = ["docker.io/nlss/wordpress:5.8.2", "docker.io/nlss/wordpress:latest"] + tags = ["docker.io/nlss/wordpress:5.8.2"] args = { WP_VERSION = "5.8.2" } } + +target "5.8.3" { + inherits = ["build-dockerfile", "build-platforms", "build-common"] + tags = ["docker.io/nlss/wordpress:5.8.3", "docker.io/nlss/wordpress:5.8", "docker.io/nlss/wordpress:latest"] + args = { + WP_VERSION = "5.8.3" + } +} diff --git a/patches/5.8.3/wp-admin-update-core.patch b/patches/5.8.3/wp-admin-update-core.patch new file mode 100644 index 0000000..c421db8 --- /dev/null +++ b/patches/5.8.3/wp-admin-update-core.patch @@ -0,0 +1,14 @@ +--- update-core.php 2022-01-15 06:09:43.165058136 +0100 ++++ update-core.php 2022-01-15 06:11:59.182622152 +0100 +@@ -1086,6 +1086,11 @@ + wp_die( __( 'Sorry, you are not allowed to update this site.' ) ); + } + ++ wp_die( ++ __( 'Sorry, you are not allowed to update this site.' ) . ++ ' Click here to learn why.' ++ ); ++ + check_admin_referer( 'upgrade-core' ); + + // Do the (un)dismiss actions before headers, so that they can redirect.