Commit 6f550e74 authored by GitLab Bot's avatar GitLab Bot

Automatic merge of gitlab-org/gitlab-ce master

parents 1fc1fe03 dd28b621
...@@ -93,6 +93,12 @@ class UrlValidator < ActiveModel::EachValidator ...@@ -93,6 +93,12 @@ class UrlValidator < ActiveModel::EachValidator
end end
def allow_setting_local_requests? def allow_setting_local_requests?
# We cannot use Gitlab::CurrentSettings as ApplicationSetting itself
# uses UrlValidator to validate urls. This ends up in a cycle
# when Gitlab::CurrentSettings creates an ApplicationSetting which then
# calls this validator.
#
# See https://gitlab.com/gitlab-org/gitlab-ee/issues/9833
ApplicationSetting.current&.allow_local_requests_from_hooks_and_services? ApplicationSetting.current&.allow_local_requests_from_hooks_and_services?
end end
end end
---
title: Bump Helm and kubectl in Auto DevOps to 2.12.3 and 1.11.7 respectively
merge_request: 25072
author:
type: other
...@@ -49,8 +49,8 @@ variables: ...@@ -49,8 +49,8 @@ variables:
POSTGRES_ENABLED: "true" POSTGRES_ENABLED: "true"
POSTGRES_DB: $CI_ENVIRONMENT_SLUG POSTGRES_DB: $CI_ENVIRONMENT_SLUG
KUBERNETES_VERSION: 1.11.6 KUBERNETES_VERSION: 1.11.7
HELM_VERSION: 2.12.2 HELM_VERSION: 2.12.3
DOCKER_DRIVER: overlay2 DOCKER_DRIVER: overlay2
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment