Commit 090ed21e6f53ade25716fb0b406f25b93b6a7690

Authored by Jacob Vosmaer
1 parent 779fa4a7

Batch key import requires gitlab-shell 1.8.5

Showing 2 changed files with 2 additions and 2 deletions   Show diff stats
CHANGELOG
... ... @@ -21,7 +21,7 @@ v 6.7.0
21 21 - Reuse the GitLab LDAP connection within each request
22 22 - Changed markdown new line behaviour to conform to markdown standards
23 23 - Fix global search
24   - - Faster authorized_keys rebuilding in `rake gitlab:shell:setup` (requires gitlab-shell 1.8.4)
  24 + - Faster authorized_keys rebuilding in `rake gitlab:shell:setup` (requires gitlab-shell 1.8.5)
25 25  
26 26 v 6.6.2
27 27 - Fix 500 error on branch/tag create or remove via UI
... ...
lib/tasks/gitlab/check.rake
... ... @@ -727,7 +727,7 @@ namespace :gitlab do
727 727 end
728 728  
729 729 def check_gitlab_shell
730   - required_version = Gitlab::VersionInfo.new(1, 8, 4)
  730 + required_version = Gitlab::VersionInfo.new(1, 8, 5)
731 731 current_version = Gitlab::VersionInfo.parse(gitlab_shell_version)
732 732  
733 733 print "GitLab Shell version >= #{required_version} ? ... "
... ...