Skip to content
代码片段 群组 项目
未验证 提交 98b8d2fe 编辑于 作者: Abdul Wadood's avatar Abdul Wadood 提交者: GitLab
浏览文件

Merge branch 'ph/451211/removeMrReviewerRequestsChangesFlag' into 'master'

Remove mr_reviewer_requests_changes feature flag

See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/160364



Merged-by: default avatarAbdul Wadood <awadood@gitlab.com>
Approved-by: default avatarRoy Liu <rliu@gitlab.com>
Approved-by: default avatarAbdul Wadood <awadood@gitlab.com>
Co-authored-by: default avatarPhil Hughes <me@iamphill.com>
No related branches found
No related tags found
无相关合并请求
...@@ -148,6 +148,7 @@ DETAILS: ...@@ -148,6 +148,7 @@ DETAILS:
> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/430728) in GitLab 16.11 [with a flag](../../../../administration/feature_flags.md) named `mr_reviewer_requests_changes`. Disabled by default. > - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/430728) in GitLab 16.11 [with a flag](../../../../administration/feature_flags.md) named `mr_reviewer_requests_changes`. Disabled by default.
> - Enabled by default [on GitLab.com](https://gitlab.com/gitlab-org/gitlab/-/issues/451211) and [self-managed](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/158226) in GitLab 17.2. > - Enabled by default [on GitLab.com](https://gitlab.com/gitlab-org/gitlab/-/issues/451211) and [self-managed](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/158226) in GitLab 17.2.
> - [Feature flag removed](https://gitlab.com/gitlab-org/gitlab/-/issues/451211) in GitLab 17.3.
A reviewer [requesting changes](#submit-a-review) blocks a merge request from merging. A reviewer [requesting changes](#submit-a-review) blocks a merge request from merging.
When this happens, the merge request reports area shows the message When this happens, the merge request reports area shows the message
......
...@@ -501,8 +501,7 @@ def notify_approvers ...@@ -501,8 +501,7 @@ def notify_approvers
end end
def reviewer_requests_changes_feature def reviewer_requests_changes_feature
::Feature.enabled?(:mr_reviewer_requests_changes, project) && project.feature_available?(:requested_changes_block_merge_request)
project.feature_available?(:requested_changes_block_merge_request)
end end
def has_changes_requested? def has_changes_requested?
......
---
name: mr_reviewer_requests_changes
feature_issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/430728
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/146895
rollout_issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/451211
milestone: '16.11'
group: group::code review
type: beta
default_enabled: true
...@@ -36,14 +36,6 @@ ...@@ -36,14 +36,6 @@
end end
end end
context 'when feature flag is disabled' do
before do
stub_feature_flags(mr_reviewer_requests_changes: false)
end
it { expect(result.status).to eq Gitlab::MergeRequests::Mergeability::CheckResult::INACTIVE_STATUS }
end
context 'when license is invalid' do context 'when license is invalid' do
before do before do
stub_licensed_features(requested_changes_block_merge_request: false) stub_licensed_features(requested_changes_block_merge_request: false)
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册