summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--VERSION2
-rw-r--r--lib/api/helpers.rb3
-rw-r--r--lib/tasks/gitlab/check.rake2
3 files changed, 4 insertions, 3 deletions
diff --git a/VERSION b/VERSION
index ade65226e0a..8ae03c11904 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-5.4.1
+5.4.2
diff --git a/lib/api/helpers.rb b/lib/api/helpers.rb
index f857d4133b2..c99264da550 100644
--- a/lib/api/helpers.rb
+++ b/lib/api/helpers.rb
@@ -1,7 +1,8 @@
module API
module APIHelpers
def current_user
- @current_user ||= User.find_by_authentication_token(params[:private_token] || env["HTTP_PRIVATE_TOKEN"])
+ private_token = (params[:private_token] || env["HTTP_PRIVATE_TOKEN"]).to_s
+ @current_user ||= User.find_by_authentication_token(private_token)
end
def user_project
diff --git a/lib/tasks/gitlab/check.rake b/lib/tasks/gitlab/check.rake
index 1dc538ddc83..85db3eaf033 100644
--- a/lib/tasks/gitlab/check.rake
+++ b/lib/tasks/gitlab/check.rake
@@ -657,7 +657,7 @@ namespace :gitlab do
end
def check_gitlab_shell
- required_version = Gitlab::VersionInfo.new(1, 7, 4)
+ required_version = Gitlab::VersionInfo.new(1, 7, 8)
current_version = Gitlab::VersionInfo.parse(gitlab_shell_version)
print "GitLab Shell version >= #{required_version} ? ... "