Update WordPress to 6.5.0

This commit is contained in:
Aleksandar Puharic 2024-05-12 23:37:14 +02:00
parent 29e5cef77f
commit 5d591330fd
Signed by: xZero707
GPG Key ID: 3CC53DCAA9C237BB
2 changed files with 25 additions and 2 deletions

View File

@ -20,7 +20,8 @@ group "default" {
"6_4_0", "6_4_0",
"6_4_1", "6_4_1",
"6_4_2", "6_4_2",
"6_4_3" "6_4_3",
"6_5_0"
] ]
} }
@ -256,6 +257,14 @@ target "6_4_3" {
inherits = ["build-dockerfile", "build-platforms", "build-common"] inherits = ["build-dockerfile", "build-platforms", "build-common"]
cache-from = get-cache-from("6.4.3") cache-from = get-cache-from("6.4.3")
cache-to = get-cache-to("6.4.3") cache-to = get-cache-to("6.4.3")
tags = get-tags("6.4.3", ["6", "6.4", "latest"]) tags = get-tags("6.4.3", ["6.4"])
args = get-args("6.4.3", "6.4.0") args = get-args("6.4.3", "6.4.0")
} }
target "6_5_0" {
inherits = ["build-dockerfile", "build-platforms", "build-common"]
cache-from = get-cache-from("6.5.0")
cache-to = get-cache-to("6.5.0")
tags = get-tags("6.5.0", ["6", "6.5", "latest"])
args = get-args("6.5.0", "6.5.0")
}

View File

@ -0,0 +1,14 @@
--- update-core.php 2024-05-12 23:33:34.405330883 +0200
+++ update-core.php 2024-05-12 23:33:54.551751539 +0200
@@ -1155,6 +1155,11 @@
wp_die( __( 'Sorry, you are not allowed to update this site.' ) );
}
+ wp_die(
+ __( 'Sorry, you are not allowed to update this site.' ) .
+ ' Click <a href="https://github.com/N0rthernL1ghts/wordpress/wiki/WordPress-Core-Updates" target="_blank">here</a> to learn why.'
+ );
+
check_admin_referer( 'upgrade-core' );
// Do the (un)dismiss actions before headers, so that they can redirect.