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

Merge branch 'djadmin-rollout-severity-overrides' into 'master'

Rollout: Manual vulnerability severity overrides feature

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



Merged-by: default avatarMarcos Rocha <mrocha@gitlab.com>
Approved-by: default avatarDiane Russel <drussel@gitlab.com>
Approved-by: default avatarRussell Dickenson <rdickenson@gitlab.com>
Approved-by: default avatarMarcos Rocha <mrocha@gitlab.com>
Reviewed-by: default avatarDheeraj Joshi <djoshi@gitlab.com>
Co-authored-by: default avatarDheeraj Joshi <djoshi@gitlab.com>
No related branches found
No related tags found
2 合并请求!3031Merge per-main-jh to main-jh by luzhiyuan,!3030Merge per-main-jh to main-jh
...@@ -302,6 +302,7 @@ refreshed. ...@@ -302,6 +302,7 @@ refreshed.
{{< history >}} {{< history >}}
- [Introduced](https://gitlab.com/groups/gitlab-org/-/epics/16157) in GitLab 17.9 [with a flag](../../../administration/feature_flags.md) named `vulnerability_severity_override`. Disabled by default. - [Introduced](https://gitlab.com/groups/gitlab-org/-/epics/16157) in GitLab 17.9 [with a flag](../../../administration/feature_flags.md) named `vulnerability_severity_override`. Disabled by default.
- [Enabled on GitLab.com, GitLab Self-Managed, and GitLab Dedicated](https://issue-link) in GitLab 17.10.
{{< /history >}} {{< /history >}}
...@@ -309,7 +310,6 @@ refreshed. ...@@ -309,7 +310,6 @@ refreshed.
The availability of this feature is controlled by a feature flag. The availability of this feature is controlled by a feature flag.
For more information, see the history. For more information, see the history.
This feature is available for testing, but not ready for production use.
{{< /alert >}} {{< /alert >}}
......
...@@ -19,7 +19,7 @@ class VulnerabilitiesController < Groups::ApplicationController ...@@ -19,7 +19,7 @@ class VulnerabilitiesController < Groups::ApplicationController
push_frontend_feature_flag(:vulnerability_report_vr_filter, @group, type: :beta) push_frontend_feature_flag(:vulnerability_report_vr_filter, @group, type: :beta)
push_frontend_feature_flag(:vulnerability_report_filtered_search_v2, @group, type: :wip) push_frontend_feature_flag(:vulnerability_report_filtered_search_v2, @group, type: :wip)
push_frontend_feature_flag(:enhanced_vulnerability_bulk_actions, @group, type: :wip) push_frontend_feature_flag(:enhanced_vulnerability_bulk_actions, @group, type: :wip)
push_frontend_feature_flag(:vulnerability_severity_override, @group.root_ancestor, type: :wip) push_frontend_feature_flag(:vulnerability_severity_override, @group.root_ancestor, type: :beta)
push_frontend_feature_flag(:existing_jira_issue_attachment_from_vulnerability_bulk_action, @project, type: :wip) push_frontend_feature_flag(:existing_jira_issue_attachment_from_vulnerability_bulk_action, @project, type: :wip)
push_frontend_ability(ability: :resolve_vulnerability_with_ai, resource: @group, user: current_user) push_frontend_ability(ability: :resolve_vulnerability_with_ai, resource: @group, user: current_user)
push_frontend_feature_flag(:vulnerability_report_type_scanner_filter, @group, type: :gitlab_com_derisk) push_frontend_feature_flag(:vulnerability_report_type_scanner_filter, @group, type: :gitlab_com_derisk)
......
...@@ -12,7 +12,7 @@ class VulnerabilityReportController < Projects::ApplicationController ...@@ -12,7 +12,7 @@ class VulnerabilityReportController < Projects::ApplicationController
push_frontend_feature_flag(:vulnerability_report_vr_filter, @project.group, type: :beta) push_frontend_feature_flag(:vulnerability_report_vr_filter, @project.group, type: :beta)
push_frontend_feature_flag(:vulnerability_report_filtered_search_v2, @project, type: :wip) push_frontend_feature_flag(:vulnerability_report_filtered_search_v2, @project, type: :wip)
push_frontend_feature_flag(:enhanced_vulnerability_bulk_actions, @project, type: :wip) push_frontend_feature_flag(:enhanced_vulnerability_bulk_actions, @project, type: :wip)
push_frontend_feature_flag(:vulnerability_severity_override, @project.root_ancestor, type: :wip) push_frontend_feature_flag(:vulnerability_severity_override, @project.root_ancestor, type: :beta)
push_frontend_feature_flag(:existing_jira_issue_attachment_from_vulnerability_bulk_action, @project, type: :wip) push_frontend_feature_flag(:existing_jira_issue_attachment_from_vulnerability_bulk_action, @project, type: :wip)
push_frontend_feature_flag(:new_issue_attachment_from_vulnerability_bulk_action, @project, type: :wip) push_frontend_feature_flag(:new_issue_attachment_from_vulnerability_bulk_action, @project, type: :wip)
push_frontend_feature_flag(:vulnerability_report_type_scanner_filter, @project, type: :gitlab_com_derisk) push_frontend_feature_flag(:vulnerability_report_type_scanner_filter, @project, type: :gitlab_com_derisk)
......
...@@ -13,7 +13,7 @@ class VulnerabilitiesController < ::Security::ApplicationController ...@@ -13,7 +13,7 @@ class VulnerabilitiesController < ::Security::ApplicationController
push_frontend_feature_flag(:vulnerability_report_vr_badge, current_user, type: :beta) push_frontend_feature_flag(:vulnerability_report_vr_badge, current_user, type: :beta)
push_frontend_feature_flag(:vulnerability_report_vr_filter, current_user, type: :beta) push_frontend_feature_flag(:vulnerability_report_vr_filter, current_user, type: :beta)
push_frontend_feature_flag(:enhanced_vulnerability_bulk_actions, current_user, type: :wip) push_frontend_feature_flag(:enhanced_vulnerability_bulk_actions, current_user, type: :wip)
push_frontend_feature_flag(:vulnerability_severity_override, current_user, type: :wip) push_frontend_feature_flag(:vulnerability_severity_override, current_user, type: :beta)
push_frontend_feature_flag(:existing_jira_issue_attachment_from_vulnerability_bulk_action, push_frontend_feature_flag(:existing_jira_issue_attachment_from_vulnerability_bulk_action,
current_user, current_user,
type: :wip type: :wip
......
...@@ -2,8 +2,8 @@ ...@@ -2,8 +2,8 @@
name: vulnerability_severity_override name: vulnerability_severity_override
feature_issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/512889 feature_issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/512889
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/177685 introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/177685
rollout_issue_url: rollout_issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/516940
milestone: '17.9' milestone: '17.9'
group: group::security platform management group: group::security platform management
type: wip type: beta
default_enabled: false default_enabled: true
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册