Skip to content

Commit 0c8e92a

Browse files
author
Clemens Beck
committed
Enforce upgrade stop at 16.11
Before upgrading to GitLab/Omnibus 17.0, one must upgrade to the GitLab/Omnibus 16.11. Upgrade path documentation: https://docs.gitlab.com/ee/update/#upgrade-paths Relates https://gitlab.com/gitlab-org/gitlab/-/issues/440234 Changelog: changed
1 parent d07c931 commit 0c8e92a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

config/templates/package-scripts/preinst.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ fi
3939
upgrade_check() {
4040
# Minimum version from which jumps are permitted to current version.
4141
# Follows https://docs.gitlab.com/ee/update/index.html#upgrade-paths
42-
MIN_VERSION=16.7
42+
MIN_VERSION=16.11
4343

4444
if [ -n "${OLD_VERSION_STRING}" ] ; then
4545
# Checking

files/gitlab-ctl-commands/lib/gitlab_ctl/upgrade_check.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def valid?(ov)
1616
end
1717

1818
def min_version
19-
ENV['MIN_VERSION'] || '16.7'.freeze
19+
ENV['MIN_VERSION'] || '16.11'.freeze
2020
end
2121
end
2222
end

0 commit comments

Comments
 (0)