mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-15 21:39:00 +00:00
Add latest changes from gitlab-org/gitlab@master
This commit is contained in:
@ -18,10 +18,9 @@ workflow:
|
||||
# ==========================================
|
||||
# Prepare stage
|
||||
# ==========================================
|
||||
# TODO: enable once ee jobs are added
|
||||
# trigger-omnibus-env:
|
||||
# extends:
|
||||
# - .trigger-omnibus-env
|
||||
trigger-omnibus-env:
|
||||
extends:
|
||||
- .trigger-omnibus-env
|
||||
|
||||
trigger-omnibus-env-ce:
|
||||
extends:
|
||||
@ -29,12 +28,11 @@ trigger-omnibus-env-ce:
|
||||
variables:
|
||||
FOSS_ONLY: "1" # set FOSS_ONLY because we don't pass it via trigger job
|
||||
|
||||
# TODO: enable once ee jobs are added
|
||||
# trigger-omnibus:
|
||||
# extends:
|
||||
# - .trigger-omnibus
|
||||
# needs:
|
||||
# - trigger-omnibus-env
|
||||
trigger-omnibus:
|
||||
extends:
|
||||
- .trigger-omnibus
|
||||
needs:
|
||||
- trigger-omnibus-env
|
||||
|
||||
trigger-omnibus-ce:
|
||||
extends:
|
||||
@ -42,15 +40,18 @@ trigger-omnibus-ce:
|
||||
needs:
|
||||
- trigger-omnibus-env-ce
|
||||
|
||||
# TODO: enable when first parallel job is added
|
||||
# download-knapsack-report:
|
||||
# extends:
|
||||
# - .download-knapsack-report
|
||||
# - .rules:download-knapsack
|
||||
download-knapsack-report:
|
||||
extends:
|
||||
- .download-knapsack-report
|
||||
- .rules:download-knapsack
|
||||
|
||||
# ==========================================
|
||||
# Test stage
|
||||
# ==========================================
|
||||
|
||||
# ------------------------------------------
|
||||
# Update jobs
|
||||
# ------------------------------------------
|
||||
update-ee-to-ce:
|
||||
extends:
|
||||
- .qa
|
||||
@ -61,6 +62,101 @@ update-ee-to-ce:
|
||||
UPDATE_FROM_EDITION: ee
|
||||
QA_RSPEC_TAGS: --tag smoke
|
||||
|
||||
# ------------------------------------------
|
||||
# Network limiting jobs
|
||||
# ------------------------------------------
|
||||
airgapped:
|
||||
extends:
|
||||
- .qa
|
||||
- .ee
|
||||
- .parallel
|
||||
variables:
|
||||
QA_SCENARIO: "Test::Instance::Airgapped"
|
||||
QA_RSPEC_TAGS: "--tag '~github' --tag '~skip_live_env'"
|
||||
|
||||
instance-image-slow-network:
|
||||
extends:
|
||||
- .qa
|
||||
- .ee
|
||||
- .parallel
|
||||
variables:
|
||||
QA_SIMULATE_SLOW_CONNECTION: "true"
|
||||
|
||||
# ------------------------------------------
|
||||
# N+1 jobs
|
||||
# ------------------------------------------
|
||||
nplus1-instance-image:
|
||||
extends:
|
||||
- .qa
|
||||
- .ee
|
||||
- .parallel
|
||||
variables:
|
||||
CACHE_NAMESPACE_NAME: "false"
|
||||
GITLAB_QA_OPTS: "--enable-feature gitaly_enforce_requests_limits"
|
||||
|
||||
# ------------------------------------------
|
||||
# Elasticsearch compatibility jobs
|
||||
# ------------------------------------------
|
||||
integration-elasticsearch-compatibility-version-7:
|
||||
extends:
|
||||
- .qa
|
||||
- .ee
|
||||
variables:
|
||||
ELASTIC_VERSION: "7.17.0"
|
||||
QA_SCENARIO: "Test::Integration::Elasticsearch"
|
||||
|
||||
integration-elasticsearch-compatibility-version-8:
|
||||
extends:
|
||||
- .qa
|
||||
- .ee
|
||||
variables:
|
||||
ELASTIC_VERSION: "8.6.2"
|
||||
QA_SCENARIO: "Test::Integration::Elasticsearch"
|
||||
|
||||
# ------------------------------------------
|
||||
# Opensearch compatibility jobs
|
||||
# ------------------------------------------
|
||||
integration-opensearch-compatibility-version-1:
|
||||
extends:
|
||||
- .qa
|
||||
- .ee
|
||||
variables:
|
||||
OPENSEARCH_VERSION: "1.3.3"
|
||||
QA_SCENARIO: "Test::Integration::Opensearch"
|
||||
|
||||
integration-opensearch-compatibility-version-2:
|
||||
extends:
|
||||
- .qa
|
||||
- .ee
|
||||
variables:
|
||||
OPENSEARCH_VERSION: "2.0.1"
|
||||
QA_SCENARIO: "Test::Integration::Opensearch"
|
||||
|
||||
# ------------------------------------------
|
||||
# Remote browser jobs
|
||||
# ------------------------------------------
|
||||
remote-mobile-safari:
|
||||
extends:
|
||||
- .qa
|
||||
- .ee
|
||||
variables:
|
||||
QA_RSPEC_TAGS: "--tag mobile"
|
||||
QA_BROWSER: "safari"
|
||||
QA_REMOTE_MOBILE_DEVICE_NAME: "iPhone Simulator"
|
||||
QA_REMOTE_GRID: "ondemand.saucelabs.com:80"
|
||||
QA_REMOTE_TUNNEL_ID: "gitlab-sl_tunnel_id"
|
||||
before_script:
|
||||
- !reference [.qa, before_script]
|
||||
- docker pull saucelabs/sauce-connect
|
||||
- docker network create test
|
||||
- |
|
||||
docker run --detach \
|
||||
--network="test" \
|
||||
-e SAUCE_USERNAME=$QA_REMOTE_GRID_USERNAME \
|
||||
-e SAUCE_ACCESS_KEY=$QA_REMOTE_GRID_ACCESS_KEY \
|
||||
-t saucelabs/sauce-connect \
|
||||
-i $QA_REMOTE_TUNNEL_ID
|
||||
|
||||
# ==========================================
|
||||
# Post test stage
|
||||
# ==========================================
|
||||
@ -68,11 +164,10 @@ e2e-test-report:
|
||||
extends:
|
||||
- .e2e-test-report
|
||||
|
||||
# TODO: enable when first parallel job is added
|
||||
# upload-knapsack-report:
|
||||
# extends:
|
||||
# - .upload-knapsack-report
|
||||
# - .rules:report:process-results
|
||||
upload-knapsack-report:
|
||||
extends:
|
||||
- .upload-knapsack-report
|
||||
- .rules:report:process-results
|
||||
|
||||
export-test-metrics:
|
||||
extends:
|
||||
|
@ -884,7 +884,8 @@
|
||||
changes: *ci-build-images-patterns
|
||||
- <<: *if-default-refs
|
||||
changes: *code-qa-patterns
|
||||
# Rules to support .qa:rules:package-and-test-ee
|
||||
# Rules to support .qa:rules:package-and-test
|
||||
- <<: *if-default-branch-schedule-nightly
|
||||
- <<: *if-merge-request
|
||||
changes: *dependency-patterns
|
||||
- <<: *if-merge-request-labels-run-all-e2e
|
||||
@ -902,8 +903,6 @@
|
||||
rules:
|
||||
- <<: *if-not-ee
|
||||
when: never
|
||||
- <<: *if-merge-request-labels-pipeline-expedite
|
||||
when: never
|
||||
- !reference [".build-images:rules:build-assets-image", "rules"]
|
||||
|
||||
#################
|
||||
@ -1076,6 +1075,7 @@
|
||||
- <<: *if-merge-request-labels-run-all-e2e
|
||||
- <<: *if-auto-deploy-branches
|
||||
- <<: *if-ruby2-branch
|
||||
- <<: *if-default-branch-schedule-nightly
|
||||
- <<: *if-default-refs
|
||||
changes: *ci-build-images-patterns
|
||||
- <<: *if-default-refs
|
||||
|
@ -1 +1 @@
|
||||
c47a4d7d1ef1ecf3b0d78b9423e0ef28d8513979
|
||||
17db4a085675986bc5a9728bef9dde19a80bb7eb
|
||||
|
@ -550,7 +550,8 @@ $tabs-holder-z-index: 250;
|
||||
border-radius: $border-radius-default;
|
||||
}
|
||||
|
||||
.mr-widget-section:not(:first-child) > div {
|
||||
.mr-widget-section:not(:first-child) > div,
|
||||
.mr-widget-section .mr-widget-section > div {
|
||||
border-top: solid 1px var(--border-color, $border-color);
|
||||
}
|
||||
|
||||
|
@ -3,7 +3,6 @@
|
||||
class Admin::HooksController < Admin::ApplicationController
|
||||
include ::WebHooks::HookActions
|
||||
|
||||
feature_category :integrations
|
||||
urgency :low, [:test]
|
||||
|
||||
def test
|
||||
|
@ -9,6 +9,7 @@ module WebHooks
|
||||
attr_writer :hooks, :hook
|
||||
|
||||
before_action :hook_logs, only: :edit
|
||||
feature_category :webhooks
|
||||
end
|
||||
|
||||
def index
|
||||
|
@ -11,7 +11,7 @@ module WebHooks
|
||||
|
||||
respond_to :html
|
||||
|
||||
feature_category :integrations
|
||||
feature_category :webhooks
|
||||
urgency :low, [:retry]
|
||||
end
|
||||
|
||||
|
@ -12,7 +12,6 @@ class Projects::HooksController < Projects::ApplicationController
|
||||
|
||||
layout "project_settings"
|
||||
|
||||
feature_category :integrations
|
||||
urgency :low, [:test]
|
||||
|
||||
def test
|
||||
|
@ -24,7 +24,7 @@ module Projects
|
||||
def execute
|
||||
params[:wiki_enabled] = params[:wiki_access_level] if params[:wiki_access_level]
|
||||
params[:builds_enabled] = params[:builds_access_level] if params[:builds_access_level]
|
||||
params[:snippets_enabled] = params[:builds_access_level] if params[:snippets_access_level]
|
||||
params[:snippets_enabled] = params[:snippets_access_level] if params[:snippets_access_level]
|
||||
params[:merge_requests_enabled] = params[:merge_requests_access_level] if params[:merge_requests_access_level]
|
||||
params[:issues_enabled] = params[:issues_access_level] if params[:issues_access_level]
|
||||
|
||||
|
@ -2633,7 +2633,7 @@
|
||||
:tags: []
|
||||
- :name: file_hook
|
||||
:worker_name: FileHookWorker
|
||||
:feature_category: :integrations
|
||||
:feature_category: :webhooks
|
||||
:has_external_dependencies: false
|
||||
:urgency: :low
|
||||
:resource_boundary: :unknown
|
||||
@ -3551,7 +3551,7 @@
|
||||
:tags: []
|
||||
- :name: web_hook
|
||||
:worker_name: WebHookWorker
|
||||
:feature_category: :integrations
|
||||
:feature_category: :webhooks
|
||||
:has_external_dependencies: true
|
||||
:urgency: :low
|
||||
:resource_boundary: :unknown
|
||||
@ -3560,7 +3560,7 @@
|
||||
:tags: []
|
||||
- :name: web_hooks_log_destroy
|
||||
:worker_name: WebHooks::LogDestroyWorker
|
||||
:feature_category: :integrations
|
||||
:feature_category: :webhooks
|
||||
:has_external_dependencies: false
|
||||
:urgency: :low
|
||||
:resource_boundary: :unknown
|
||||
@ -3569,7 +3569,7 @@
|
||||
:tags: []
|
||||
- :name: web_hooks_log_execution
|
||||
:worker_name: WebHooks::LogExecutionWorker
|
||||
:feature_category: :integrations
|
||||
:feature_category: :webhooks
|
||||
:has_external_dependencies: false
|
||||
:urgency: :low
|
||||
:resource_boundary: :unknown
|
||||
|
@ -5,7 +5,7 @@ class FileHookWorker # rubocop:disable Scalability/IdempotentWorker
|
||||
|
||||
data_consistency :always
|
||||
sidekiq_options retry: false
|
||||
feature_category :integrations
|
||||
feature_category :webhooks
|
||||
loggable_arguments 0
|
||||
urgency :low
|
||||
|
||||
|
@ -5,7 +5,7 @@
|
||||
class WebHookWorker
|
||||
include ApplicationWorker
|
||||
|
||||
feature_category :integrations
|
||||
feature_category :webhooks
|
||||
loggable_arguments 2, 3
|
||||
data_consistency :delayed
|
||||
sidekiq_options retry: 4, dead: false
|
||||
|
@ -7,7 +7,7 @@ module WebHooks
|
||||
DestroyError = Class.new(StandardError)
|
||||
|
||||
data_consistency :always
|
||||
feature_category :integrations
|
||||
feature_category :webhooks
|
||||
urgency :low
|
||||
|
||||
idempotent!
|
||||
|
@ -5,7 +5,7 @@ module WebHooks
|
||||
include ApplicationWorker
|
||||
|
||||
data_consistency :always
|
||||
feature_category :integrations
|
||||
feature_category :webhooks
|
||||
urgency :low
|
||||
sidekiq_options retry: 3
|
||||
loggable_arguments 0, 2, 3
|
||||
|
@ -7,7 +7,6 @@ property_description: selected option (string)
|
||||
product_section: ops
|
||||
product_stage: configure
|
||||
product_group: group::configure
|
||||
product_category:
|
||||
milestone: "14.8"
|
||||
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/79873
|
||||
distributions:
|
||||
|
@ -10,7 +10,6 @@ identifiers:
|
||||
product_section: ops
|
||||
product_stage: configure
|
||||
product_group: group::configure
|
||||
product_category: infrastructure_as_code
|
||||
milestone: "15.0"
|
||||
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/84337
|
||||
distributions:
|
||||
|
@ -10,7 +10,6 @@ identifiers:
|
||||
product_section: dev
|
||||
product_stage: create
|
||||
product_group: group::source code
|
||||
product_category: source_code_management
|
||||
milestone: "15.0"
|
||||
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/83795
|
||||
distributions:
|
||||
|
@ -9,7 +9,6 @@ identifiers:
|
||||
product_section: growth
|
||||
product_stage:
|
||||
product_group: group::conversion
|
||||
product_category:
|
||||
milestone: "15.0"
|
||||
introduced_by_url:
|
||||
distributions:
|
||||
|
@ -9,7 +9,6 @@ identifiers:
|
||||
product_section: growth
|
||||
product_stage:
|
||||
product_group: group::conversion
|
||||
product_category:
|
||||
milestone: "15.0"
|
||||
introduced_by_url:
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: dev
|
||||
product_stage: create
|
||||
product_group: group::code review
|
||||
product_category: code_review
|
||||
milestone: "15.1"
|
||||
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/89544
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: dev
|
||||
product_stage: create
|
||||
product_group: group::code review
|
||||
product_category: code_review
|
||||
milestone: "15.1"
|
||||
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/89544
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: dev
|
||||
product_stage: create
|
||||
product_group: group::code review
|
||||
product_category: code_review
|
||||
milestone: "15.1"
|
||||
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/89544
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: dev
|
||||
product_stage: create
|
||||
product_group: group::code review
|
||||
product_category: code_review
|
||||
milestone: "15.1"
|
||||
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/89544
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: dev
|
||||
product_stage: plan
|
||||
product_group: group::product_planning
|
||||
product_category: design_management
|
||||
milestone: "15.1"
|
||||
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/90107
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: dev
|
||||
product_stage: plan
|
||||
product_group: group::product_planning
|
||||
product_category: design_management
|
||||
milestone: "15.1"
|
||||
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/90107
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: dev
|
||||
product_stage: plan
|
||||
product_group: group::product_planning
|
||||
product_category: design_management
|
||||
milestone: "15.1"
|
||||
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/90107
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: enablement
|
||||
product_stage: enablement
|
||||
product_group: group::global search
|
||||
product_category: global_search
|
||||
milestone: "15.1"
|
||||
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/90224
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: ops
|
||||
product_stage: verify
|
||||
product_group: group::pipeline_authoring
|
||||
product_category: secrets_management
|
||||
milestone: "15.2"
|
||||
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/90449
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: ops
|
||||
product_stage: verify
|
||||
product_group: group::pipeline_authoring
|
||||
product_category: secrets_management
|
||||
milestone: "15.2"
|
||||
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/90449
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: ops
|
||||
product_stage: verify
|
||||
product_group: group::pipeline_authoring
|
||||
product_category: secrets_management
|
||||
milestone: "15.2"
|
||||
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/90449
|
||||
distributions:
|
||||
|
@ -10,7 +10,6 @@ identifiers:
|
||||
product_section: dev
|
||||
product_stage: manage
|
||||
product_group: integrations
|
||||
product_category: integrations
|
||||
milestone: "15.3"
|
||||
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/93468
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: dev
|
||||
product_stage: plan
|
||||
product_group: project_management
|
||||
product_category: issue_tracking
|
||||
milestone: "15.3"
|
||||
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/91659
|
||||
distributions:
|
||||
|
@ -12,7 +12,6 @@ identifiers:
|
||||
product_section: dev
|
||||
product_stage: manage
|
||||
product_group: optimize
|
||||
product_category:
|
||||
milestone: "15.3"
|
||||
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/94369
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: google_cloud
|
||||
product_stage: configure
|
||||
product_group: group::incubation
|
||||
product_category: cloud_seed
|
||||
milestone: "15.4"
|
||||
introduced_by_url: "https://gitlab.com/gitlab-org/gitlab/-/merge_requests/96683"
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: google_cloud
|
||||
product_stage: configure
|
||||
product_group: group::incubation
|
||||
product_category: cloud_seed
|
||||
milestone: "15.4"
|
||||
introduced_by_url: "https://gitlab.com/gitlab-org/gitlab/-/merge_requests/96683"
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: google_cloud
|
||||
product_stage: configure
|
||||
product_group: group::incubation
|
||||
product_category: cloud_seed
|
||||
milestone: "15.4"
|
||||
introduced_by_url: "https://gitlab.com/gitlab-org/gitlab/-/merge_requests/96683"
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: google_cloud
|
||||
product_stage: configure
|
||||
product_group: group::incubation
|
||||
product_category: cloud_seed
|
||||
milestone: "15.4"
|
||||
introduced_by_url: "https://gitlab.com/gitlab-org/gitlab/-/merge_requests/96683"
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: google_cloud
|
||||
product_stage: configure
|
||||
product_group: group::incubation
|
||||
product_category: cloud_seed
|
||||
milestone: "15.4"
|
||||
introduced_by_url: "https://gitlab.com/gitlab-org/gitlab/-/merge_requests/96683"
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: google_cloud
|
||||
product_stage: configure
|
||||
product_group: group::incubation
|
||||
product_category: cloud_seed
|
||||
milestone: "15.4"
|
||||
introduced_by_url: "https://gitlab.com/gitlab-org/gitlab/-/merge_requests/96683"
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: google_cloud
|
||||
product_stage: configure
|
||||
product_group: group::incubation
|
||||
product_category: cloud_seed
|
||||
milestone: "15.4"
|
||||
introduced_by_url: "https://gitlab.com/gitlab-org/gitlab/-/merge_requests/96683"
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: google_cloud
|
||||
product_stage: configure
|
||||
product_group: group::incubation
|
||||
product_category: cloud_seed
|
||||
milestone: "15.4"
|
||||
introduced_by_url: "https://gitlab.com/gitlab-org/gitlab/-/merge_requests/96683"
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: google_cloud
|
||||
product_stage: configure
|
||||
product_group: group::incubation
|
||||
product_category: cloud_seed
|
||||
milestone: "15.4"
|
||||
introduced_by_url: "https://gitlab.com/gitlab-org/gitlab/-/merge_requests/96683"
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: google_cloud
|
||||
product_stage: configure
|
||||
product_group: group::incubation
|
||||
product_category: cloud_seed
|
||||
milestone: "15.4"
|
||||
introduced_by_url: "https://gitlab.com/gitlab-org/gitlab/-/merge_requests/96683"
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: google_cloud
|
||||
product_stage: configure
|
||||
product_group: group::incubation
|
||||
product_category: cloud_seed
|
||||
milestone: "15.4"
|
||||
introduced_by_url: "https://gitlab.com/gitlab-org/gitlab/-/merge_requests/96683"
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: google_cloud
|
||||
product_stage: configure
|
||||
product_group: group::incubation
|
||||
product_category: cloud_seed
|
||||
milestone: "15.4"
|
||||
introduced_by_url: "https://gitlab.com/gitlab-org/gitlab/-/merge_requests/96683"
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: google_cloud
|
||||
product_stage: configure
|
||||
product_group: group::incubation
|
||||
product_category: cloud_seed
|
||||
milestone: "15.4"
|
||||
introduced_by_url: "https://gitlab.com/gitlab-org/gitlab/-/merge_requests/96683"
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: google_cloud
|
||||
product_stage: configure
|
||||
product_group: group::incubation
|
||||
product_category: cloud_seed
|
||||
milestone: "15.4"
|
||||
introduced_by_url: "https://gitlab.com/gitlab-org/gitlab/-/merge_requests/96683"
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: google_cloud
|
||||
product_stage: configure
|
||||
product_group: group::incubation
|
||||
product_category: cloud_seed
|
||||
milestone: "15.4"
|
||||
introduced_by_url: "https://gitlab.com/gitlab-org/gitlab/-/merge_requests/96683"
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: google_cloud
|
||||
product_stage: configure
|
||||
product_group: group::incubation
|
||||
product_category: cloud_seed
|
||||
milestone: "15.4"
|
||||
introduced_by_url: "https://gitlab.com/gitlab-org/gitlab/-/merge_requests/96683"
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: google_cloud
|
||||
product_stage: configure
|
||||
product_group: group::incubation
|
||||
product_category: cloud_seed
|
||||
milestone: "15.4"
|
||||
introduced_by_url: "https://gitlab.com/gitlab-org/gitlab/-/merge_requests/96683"
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: google_cloud
|
||||
product_stage: configure
|
||||
product_group: group::incubation
|
||||
product_category: cloud_seed
|
||||
milestone: "15.4"
|
||||
introduced_by_url: "https://gitlab.com/gitlab-org/gitlab/-/merge_requests/96683"
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: google_cloud
|
||||
product_stage: configure
|
||||
product_group: group::incubation
|
||||
product_category: cloud_seed
|
||||
milestone: "15.4"
|
||||
introduced_by_url: "https://gitlab.com/gitlab-org/gitlab/-/merge_requests/96683"
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: google_cloud
|
||||
product_stage: configure
|
||||
product_group: group::incubation
|
||||
product_category: cloud_seed
|
||||
milestone: "15.4"
|
||||
introduced_by_url: "https://gitlab.com/gitlab-org/gitlab/-/merge_requests/96683"
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: google_cloud
|
||||
product_stage: configure
|
||||
product_group: group::incubation
|
||||
product_category: cloud_seed
|
||||
milestone: "15.4"
|
||||
introduced_by_url: "https://gitlab.com/gitlab-org/gitlab/-/merge_requests/96683"
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: google_cloud
|
||||
product_stage: configure
|
||||
product_group: group::incubation
|
||||
product_category: cloud_seed
|
||||
milestone: "15.4"
|
||||
introduced_by_url: "https://gitlab.com/gitlab-org/gitlab/-/merge_requests/96683"
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: google_cloud
|
||||
product_stage: configure
|
||||
product_group: group::incubation
|
||||
product_category: cloud_seed
|
||||
milestone: "15.4"
|
||||
introduced_by_url: "https://gitlab.com/gitlab-org/gitlab/-/merge_requests/96683"
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: google_cloud
|
||||
product_stage: configure
|
||||
product_group: group::incubation
|
||||
product_category: cloud_seed
|
||||
milestone: "15.4"
|
||||
introduced_by_url: "https://gitlab.com/gitlab-org/gitlab/-/merge_requests/96683"
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: google_cloud
|
||||
product_stage: configure
|
||||
product_group: group::incubation
|
||||
product_category: cloud_seed
|
||||
milestone: "15.4"
|
||||
introduced_by_url: "https://gitlab.com/gitlab-org/gitlab/-/merge_requests/96683"
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: google_cloud
|
||||
product_stage: configure
|
||||
product_group: group::incubation
|
||||
product_category: cloud_seed
|
||||
milestone: "15.4"
|
||||
introduced_by_url: "https://gitlab.com/gitlab-org/gitlab/-/merge_requests/96683"
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: google_cloud
|
||||
product_stage: configure
|
||||
product_group: group::incubation
|
||||
product_category: cloud_seed
|
||||
milestone: "15.4"
|
||||
introduced_by_url: "https://gitlab.com/gitlab-org/gitlab/-/merge_requests/96683"
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: google_cloud
|
||||
product_stage: configure
|
||||
product_group: group::incubation
|
||||
product_category: cloud_seed
|
||||
milestone: "15.4"
|
||||
introduced_by_url: "https://gitlab.com/gitlab-org/gitlab/-/merge_requests/96683"
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: google_cloud
|
||||
product_stage: configure
|
||||
product_group: group::incubation
|
||||
product_category: cloud_seed
|
||||
milestone: "15.4"
|
||||
introduced_by_url: "https://gitlab.com/gitlab-org/gitlab/-/merge_requests/96683"
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: google_cloud
|
||||
product_stage: configure
|
||||
product_group: group::incubation
|
||||
product_category: cloud_seed
|
||||
milestone: "15.4"
|
||||
introduced_by_url: "https://gitlab.com/gitlab-org/gitlab/-/merge_requests/96683"
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: google_cloud
|
||||
product_stage: configure
|
||||
product_group: group::incubation
|
||||
product_category: cloud_seed
|
||||
milestone: "15.4"
|
||||
introduced_by_url: "https://gitlab.com/gitlab-org/gitlab/-/merge_requests/96683"
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: google_cloud
|
||||
product_stage: configure
|
||||
product_group: group::incubation
|
||||
product_category: cloud_seed
|
||||
milestone: "15.4"
|
||||
introduced_by_url: "https://gitlab.com/gitlab-org/gitlab/-/merge_requests/96683"
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: google_cloud
|
||||
product_stage: configure
|
||||
product_group: group::incubation
|
||||
product_category: cloud_seed
|
||||
milestone: "15.4"
|
||||
introduced_by_url: "https://gitlab.com/gitlab-org/gitlab/-/merge_requests/96683"
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: google_cloud
|
||||
product_stage: configure
|
||||
product_group: group::incubation
|
||||
product_category: cloud_seed
|
||||
milestone: "15.4"
|
||||
introduced_by_url: "https://gitlab.com/gitlab-org/gitlab/-/merge_requests/96683"
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: google_cloud
|
||||
product_stage: configure
|
||||
product_group: group::incubation
|
||||
product_category: cloud_seed
|
||||
milestone: "15.4"
|
||||
introduced_by_url: "https://gitlab.com/gitlab-org/gitlab/-/merge_requests/96683"
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: google_cloud
|
||||
product_stage: configure
|
||||
product_group: group::incubation
|
||||
product_category: cloud_seed
|
||||
milestone: "15.4"
|
||||
introduced_by_url: "https://gitlab.com/gitlab-org/gitlab/-/merge_requests/96683"
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: google_cloud
|
||||
product_stage: configure
|
||||
product_group: group::incubation
|
||||
product_category: cloud_seed
|
||||
milestone: "15.4"
|
||||
introduced_by_url: "https://gitlab.com/gitlab-org/gitlab/-/merge_requests/96683"
|
||||
distributions:
|
||||
|
@ -16,7 +16,6 @@ identifiers:
|
||||
product_section: dev
|
||||
product_stage: manage
|
||||
product_group: group::authentication and authorization
|
||||
product_category: system_access
|
||||
milestone: "15.6"
|
||||
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/100237
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: dev
|
||||
product_stage: create
|
||||
product_group: editor
|
||||
product_category: web_ide
|
||||
milestone: "15.7"
|
||||
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/104947
|
||||
distributions:
|
||||
|
@ -9,7 +9,6 @@ identifiers:
|
||||
product_section: dev
|
||||
product_stage: create
|
||||
product_group: group::editor
|
||||
product_category: web_ide
|
||||
milestone: "15.7"
|
||||
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/104809
|
||||
distributions:
|
||||
|
@ -9,7 +9,6 @@ identifiers:
|
||||
product_section: dev
|
||||
product_stage: create
|
||||
product_group: source_code
|
||||
product_category: source_code_management
|
||||
milestone: "15.7"
|
||||
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/104670
|
||||
distributions:
|
||||
|
@ -8,7 +8,6 @@ identifiers:
|
||||
- namespace
|
||||
product_stage: create
|
||||
product_group: code_review
|
||||
product_category: code_review
|
||||
product_section: 'TBD'
|
||||
milestone: "15.7"
|
||||
introduced_by_url: "https://gitlab.com/gitlab-org/gitlab/-/merge_requests/104670"
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: ops
|
||||
product_stage: monitor
|
||||
product_group: monitor
|
||||
product_category:
|
||||
milestone: "15.7"
|
||||
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/105223
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: ops
|
||||
product_stage: monitor
|
||||
product_group: monitor
|
||||
product_category:
|
||||
milestone: "15.7"
|
||||
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/105223/diffs
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: ops
|
||||
product_stage: monitor
|
||||
product_group: monitor
|
||||
product_category:
|
||||
milestone: "15.7"
|
||||
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/105223
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: ops
|
||||
product_stage: monitor
|
||||
product_group: monitor
|
||||
product_category:
|
||||
milestone: "15.7"
|
||||
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/105223
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: ops
|
||||
product_stage: monitor
|
||||
product_group: monitor
|
||||
product_category:
|
||||
milestone: "15.7"
|
||||
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/105223
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: ops
|
||||
product_stage: monitor
|
||||
product_group: respond
|
||||
product_category: incident_management
|
||||
value_type: number
|
||||
milestone: "15.7"
|
||||
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/105223
|
||||
|
@ -13,7 +13,6 @@ description: "Event migrates from Service Ping metric. Count of unique users del
|
||||
product_section: ops
|
||||
product_stage: monitor
|
||||
product_group: respond
|
||||
product_category: incident_management
|
||||
milestone: "15.7"
|
||||
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/105223
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ description: "Event migrated form Service Ping metric. Count of unique users edi
|
||||
product_section: ops
|
||||
product_stage: monitor
|
||||
product_group: respond
|
||||
product_category: incident_management
|
||||
milestone: "15.7"
|
||||
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/105223
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ description: "Count of unique users adding issues per that are related to an inc
|
||||
product_section: ops
|
||||
product_stage: monitor
|
||||
product_group: monitor
|
||||
product_category:
|
||||
milestone: "15.7"
|
||||
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/105223
|
||||
distributions:
|
||||
|
@ -14,7 +14,6 @@ description: "Count of unique users removing issue that are related to an incide
|
||||
product_section: ops
|
||||
product_stage: monitor
|
||||
product_group: monitor
|
||||
product_category:
|
||||
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/105223
|
||||
distributions:
|
||||
- ce
|
||||
|
@ -13,7 +13,6 @@ description: "Count of users closing incidents. Migrated from Service Ping metri
|
||||
product_section: ops
|
||||
product_stage: monitor
|
||||
product_group: monitor
|
||||
product_category:
|
||||
milestone: "15.7"
|
||||
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/105223
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ description: "Count of unique users reopening incidents. Migrated from Service P
|
||||
product_section: ops
|
||||
product_stage: monitor
|
||||
product_group: monitor
|
||||
product_category:
|
||||
milestone: "15.7"
|
||||
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/105223
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ description: "Count of unique users changing incidents to confidential. Event mi
|
||||
product_section: ops
|
||||
product_stage: monitor
|
||||
product_group: monitor
|
||||
product_category:
|
||||
milestone: "15.7"
|
||||
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/105223
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ description: "Count of unique users creating Zoom meetings about incidents. Even
|
||||
product_section: ops
|
||||
product_stage: monitor
|
||||
product_group: monitor
|
||||
product_category:
|
||||
milestone: "15.7"
|
||||
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/105223
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ description: "Count of unique users adding comments on incidents. Event migrated
|
||||
product_section: ops
|
||||
product_stage: monitor
|
||||
product_group: monitor
|
||||
product_category:
|
||||
milestone: "15.7"
|
||||
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/105223
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ description: "Count of unique users adding incidents to the TODO list. Event mig
|
||||
product_section: ops
|
||||
product_stage: monitor
|
||||
product_group: monitor
|
||||
product_category:
|
||||
milestone: "15.7"
|
||||
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/105223
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: ops
|
||||
product_stage: monitor
|
||||
product_group: monitor
|
||||
product_category:
|
||||
milestone: "15.7"
|
||||
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/105223
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: dev
|
||||
product_stage: create
|
||||
product_group: code_review
|
||||
product_category: code_review
|
||||
milestone: "15.7"
|
||||
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/106869
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: dev
|
||||
product_stage: create
|
||||
product_group: source_code
|
||||
product_category: source_code_management
|
||||
milestone: "15.8"
|
||||
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/105148
|
||||
distributions:
|
||||
|
@ -10,7 +10,6 @@ identifiers:
|
||||
product_section: dev
|
||||
product_stage: manage
|
||||
product_group: manage
|
||||
product_category:
|
||||
milestone: "15.8"
|
||||
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/108108
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: dev
|
||||
product_stage: package
|
||||
product_group: package_registry
|
||||
product_category: package_registry
|
||||
milestone: "15.9"
|
||||
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/108798
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: ops
|
||||
product_stage: verify
|
||||
product_group: pipeline_authoring
|
||||
product_category: secrets_management
|
||||
milestone: "15.9"
|
||||
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/110422
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: dev
|
||||
product_stage: package
|
||||
product_group: package_registry
|
||||
product_category: package_registry
|
||||
milestone: "15.9"
|
||||
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/111372
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: ops
|
||||
product_stage: verify
|
||||
product_group: pipeline_execution
|
||||
product_category: Continuous Integration
|
||||
milestone: "15.9"
|
||||
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/109549
|
||||
distributions:
|
||||
|
@ -13,7 +13,6 @@ identifiers:
|
||||
product_section: dev
|
||||
product_stage: manage
|
||||
product_group: compliance
|
||||
product_category: compliance_management
|
||||
milestone: "15.9"
|
||||
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/107120
|
||||
distributions:
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user