Skip to content
Snippets Groups Projects
Commit ce82e816 authored by Fran Garcia-Linares's avatar Fran Garcia-Linares
Browse files

Issue #3493016 by fjgarlin, hestenet, catch, jonathan1055, alexpott: Update...

Issue #3493016 by fjgarlin, hestenet, catch, jonathan1055, alexpott: Update core branches ready for Drupal 11.1.0/10.4.0
parent 685c56f9
No related branches found
No related tags found
1 merge request!307#3493016 - New releases
Pipeline #372253 failed
......@@ -13,16 +13,16 @@ variables:
################
# The most recent, stable version of Drupal.
CORE_STABLE: '11.0.9'
CORE_STABLE: '11.1.0'
# The most recent security release in the latest major version of Drupal.
CORE_SECURITY: '11.0.8'
# Development branch for patch level development/bugfixes.
CORE_SUPPORTED: '11.0.x-dev'
CORE_SUPPORTED: '11.1.x-dev'
# The most recent security release in the previous minor of the latest major version of Drupal.
CORE_SECURITY_PREVIOUS_MINOR: ''
CORE_SECURITY_PREVIOUS_MINOR: '11.0.8'
# The most recent, stable previous major version of Drupal.
CORE_PREVIOUS_STABLE: '10.3.10'
......@@ -34,7 +34,7 @@ variables:
CORE_MINOR: '11.x-dev'
# Once the current minor-dev branch enters a beta phase, this is the dev branch for the *next* minor version.
CORE_NEXT_MINOR: '11.1.x-dev'
CORE_NEXT_MINOR: '11.x-dev'
# Development branch for next major version of Drupal.
CORE_MAJOR_DEVELOPMENT: ''
......
......@@ -23,7 +23,7 @@ const NEXT_D7 = '7.104';
const NEXT_MAJOR_DEV = '12.x';
const NEXT_MAJOR_FIRST_STABLE_TAG = '12.0.0';
const NEXT_MINOR_DEV = '11.2.x';
const NEXT_MINOR_STABLE = '11.1.0';
const NEXT_MINOR_STABLE = '11.2.0';
/**
* Gather releases and store them in arrays.
......@@ -158,11 +158,11 @@ function check_core_security($security_releases, $stable_tags) {
echo "- [ERROR] CORE_STABLE (" . getenv('CORE_STABLE') . ") and CORE_SECURITY (" . getenv('CORE_SECURITY') . ") have different major:minor versions." . PHP_EOL . ' ' . PHP_EOL;
return 1;
}
}
if (getenv('CORE_SECURITY') == getenv('CORE_SECURITY_PREVIOUS_MINOR')) {
echo "- [ERROR] CORE_SECURITY (" . getenv('CORE_SECURITY') . ") should be different from CORE_SECURITY_PREVIOUS_MINOR (" . getenv('CORE_SECURITY_PREVIOUS_MINOR') . ")" . PHP_EOL . ' ' . PHP_EOL;
return 1;
if (getenv('CORE_SECURITY') == getenv('CORE_SECURITY_PREVIOUS_MINOR')) {
echo "- [ERROR] CORE_SECURITY (" . getenv('CORE_SECURITY') . ") should be different from CORE_SECURITY_PREVIOUS_MINOR (" . getenv('CORE_SECURITY_PREVIOUS_MINOR') . ")" . PHP_EOL . ' ' . PHP_EOL;
return 1;
}
}
return 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment