From 6cbd0dd438b25e0f2e8f7b635b6fef0ad4b82445 Mon Sep 17 00:00:00 2001 From: xZero707 Date: Mon, 25 Jul 2022 23:42:46 +0200 Subject: [PATCH] Update WordPress 6.0.0 -> 6.0.1 --- build/docker-bake.hcl | 12 ++++++++++-- patches/6.0.1/wp-admin-update-core.patch | 14 ++++++++++++++ 2 files changed, 24 insertions(+), 2 deletions(-) create mode 100644 patches/6.0.1/wp-admin-update-core.patch diff --git a/build/docker-bake.hcl b/build/docker-bake.hcl index 4097bfb..c8ae8d2 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", "5_8_3", "5_9_0", "5_9_1", "5_9_2", "5_9_3", "6.0.0"] + 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", "5_9_0", "5_9_1", "5_9_2", "5_9_3", "6.0.0", "6_0_1"] } target "build-dockerfile" { @@ -192,8 +192,16 @@ target "5_9_3" { target "6_0_0" { inherits = ["build-dockerfile", "build-platforms", "build-common"] - tags = ["docker.io/nlss/wordpress:6.0.0", "docker.io/nlss/wordpress:6.0", "docker.io/nlss/wordpress:latest"] + tags = ["docker.io/nlss/wordpress:6.0.0"] args = { WP_VERSION = "6.0.0" } +} + +target "6_0_1" { + inherits = ["build-dockerfile", "build-platforms", "build-common"] + tags = ["docker.io/nlss/wordpress:6.0.1", "docker.io/nlss/wordpress:6.0", "docker.io/nlss/wordpress:latest"] + args = { + WP_VERSION = "6.0.1" + } } \ No newline at end of file diff --git a/patches/6.0.1/wp-admin-update-core.patch b/patches/6.0.1/wp-admin-update-core.patch new file mode 100644 index 0000000..84597ca --- /dev/null +++ b/patches/6.0.1/wp-admin-update-core.patch @@ -0,0 +1,14 @@ +--- update-core.php 2022-07-25 23:40:10.667406949 +0200 ++++ update-core.php 2022-07-25 23:41:52.068913892 +0200 +@@ -1096,6 +1096,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.