Commit e130205f authored by Bob Van Landuyt's avatar Bob Van Landuyt

Merge branch '353054-remove-feature-flag' into 'master'

Remove restrict_special_characters_in_project_path feature flag

See merge request gitlab-org/gitlab!82807
parents 95fd7302 9aa12e3b
...@@ -498,7 +498,10 @@ class Project < ApplicationRecord ...@@ -498,7 +498,10 @@ class Project < ApplicationRecord
presence: true, presence: true,
project_path: true, project_path: true,
length: { maximum: 255 } length: { maximum: 255 }
validate :container_registry_project_path_validation validates :path,
format: { with: Gitlab::Regex.oci_repository_path_regex,
message: Gitlab::Regex.oci_repository_path_regex_message },
if: :path_changed?
validates :project_feature, presence: true validates :project_feature, presence: true
...@@ -889,14 +892,6 @@ class Project < ApplicationRecord ...@@ -889,14 +892,6 @@ class Project < ApplicationRecord
super super
end end
def container_registry_project_path_validation
if Feature.enabled?(:restrict_special_characters_in_project_path, self, default_enabled: :yaml) &&
path_changed? &&
!path.match?(Gitlab::Regex.oci_repository_path_regex)
errors.add(:path, Gitlab::Regex.oci_repository_path_regex_message)
end
end
def parent_loaded? def parent_loaded?
association(:namespace).loaded? association(:namespace).loaded?
end end
......
---
name: restrict_special_characters_in_project_path
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/80055
rollout_issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/353054
milestone: '14.8'
type: development
group: group::workspace
default_enabled: false
...@@ -631,38 +631,6 @@ RSpec.describe Project, factory_default: :keep do ...@@ -631,38 +631,6 @@ RSpec.describe Project, factory_default: :keep do
expect(project).not_to be_valid expect(project).not_to be_valid
end end
context 'restrict_special_characters_in_project_path feature flag is disabled' do
before do
stub_feature_flags(restrict_special_characters_in_project_path: false)
end
it "allows a path ending in '#{special_character}'" do
project = build(:project, path: "foo#{special_character}")
expect(project).to be_valid
end
end
end
context 'restrict_special_characters_in_project_path feature flag is disabled' do
before do
stub_feature_flags(restrict_special_characters_in_project_path: false)
end
%w[. _].each do |special_character|
it "allows a path starting with '#{special_character}'" do
project = build(:project, path: "#{special_character}foo")
expect(project).to be_valid
end
end
it "rejects a path starting with '-'" do
project = build(:project, path: "-foo")
expect(project).not_to be_valid
end
end end
end end
end end
......
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