Commit e013be10d7185dcdc814c11a65537ecd903e404d
1 parent
a74194a5
Exists in
spb-stable
and in
3 other branches
GitLab requires gitlab-shell v1.9.0
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Showing
2 changed files
with
3 additions
and
1 deletions
Show diff stats
CHANGELOG
@@ -27,6 +27,8 @@ v 6.7.0 | @@ -27,6 +27,8 @@ v 6.7.0 | ||
27 | - Markdown relative links in the wiki link to wiki pages, markdown relative links in repositories link to files in the repository | 27 | - Markdown relative links in the wiki link to wiki pages, markdown relative links in repositories link to files in the repository |
28 | - Added Slack service integration (Federico Ravasio) | 28 | - Added Slack service integration (Federico Ravasio) |
29 | - Better API responses for access_levels (sponsored by O'Reilly Media) | 29 | - Better API responses for access_levels (sponsored by O'Reilly Media) |
30 | + - Requires at least 2 unicorn workers | ||
31 | + - Requires gitlab-shell v1.9+ | ||
30 | 32 | ||
31 | v 6.6.5 | 33 | v 6.6.5 |
32 | - Added option to remove issue assignee on project issue page and issue edit page (Jason Blanchard) | 34 | - Added option to remove issue assignee on project issue page and issue edit page (Jason Blanchard) |
lib/tasks/gitlab/check.rake
@@ -742,7 +742,7 @@ namespace :gitlab do | @@ -742,7 +742,7 @@ namespace :gitlab do | ||
742 | end | 742 | end |
743 | 743 | ||
744 | def check_gitlab_shell | 744 | def check_gitlab_shell |
745 | - required_version = Gitlab::VersionInfo.new(1, 8, 5) | 745 | + required_version = Gitlab::VersionInfo.new(1, 9, 0) |
746 | current_version = Gitlab::VersionInfo.parse(gitlab_shell_version) | 746 | current_version = Gitlab::VersionInfo.parse(gitlab_shell_version) |
747 | 747 | ||
748 | print "GitLab Shell version >= #{required_version} ? ... " | 748 | print "GitLab Shell version >= #{required_version} ? ... " |