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:
@ -69,21 +69,6 @@ RSpec/BeNil:
|
||||
- 'spec/requests/api/markdown_uploads_spec.rb'
|
||||
- 'spec/requests/api/merge_requests_spec.rb'
|
||||
- 'spec/requests/api/settings_spec.rb'
|
||||
- 'spec/serializers/issue_entity_spec.rb'
|
||||
- 'spec/serializers/member_user_entity_spec.rb'
|
||||
- 'spec/services/alert_management/alerts/todo/create_service_spec.rb'
|
||||
- 'spec/services/groups/transfer_service_spec.rb'
|
||||
- 'spec/services/merge_requests/merge_service_spec.rb'
|
||||
- 'spec/services/packages/ml_model/create_package_file_service_spec.rb'
|
||||
- 'spec/services/packages/npm/generate_metadata_service_spec.rb'
|
||||
- 'spec/services/projects/create_from_template_service_spec.rb'
|
||||
- 'spec/services/projects/enable_deploy_key_service_spec.rb'
|
||||
- 'spec/services/service_desk/custom_email_verifications/create_service_spec.rb'
|
||||
- 'spec/services/service_desk/custom_emails/create_service_spec.rb'
|
||||
- 'spec/services/service_desk/custom_emails/destroy_service_spec.rb'
|
||||
- 'spec/services/suggestions/apply_service_spec.rb'
|
||||
- 'spec/services/users/untrust_service_spec.rb'
|
||||
- 'spec/services/users/upsert_credit_card_validation_service_spec.rb'
|
||||
- 'spec/support/shared_examples/lib/gitlab/gitaly_client_shared_examples.rb'
|
||||
- 'spec/support/shared_examples/lib/gitlab/template/template_shared_examples.rb'
|
||||
- 'spec/support/shared_examples/models/diff_positionable_note_shared_examples.rb'
|
||||
|
@ -6,6 +6,11 @@ export default {
|
||||
GlFormCheckbox,
|
||||
},
|
||||
props: {
|
||||
id: {
|
||||
type: String,
|
||||
required: false,
|
||||
default: '',
|
||||
},
|
||||
name: {
|
||||
type: String,
|
||||
required: true,
|
||||
@ -42,6 +47,7 @@ export default {
|
||||
<input :name="name" type="hidden" :value="value ? '1' : '0'" data-testid="input" />
|
||||
|
||||
<gl-form-checkbox
|
||||
:id="id"
|
||||
:checked="value"
|
||||
:data-testid="dataTestId"
|
||||
:disabled="disabled"
|
||||
|
@ -312,8 +312,12 @@ export default {
|
||||
|
||||
<seat-control-section @checkUsersAutoApproval="handleCheckUsersAutoApproval" />
|
||||
|
||||
<gl-form-group :label="$options.i18n.minimumPasswordLengthLabel">
|
||||
<gl-form-group
|
||||
:label="$options.i18n.minimumPasswordLengthLabel"
|
||||
label-for="minimum_password_length"
|
||||
>
|
||||
<gl-form-input
|
||||
id="minimum_password_length"
|
||||
v-model="form.minimumPasswordLength"
|
||||
:min="form.minimumPasswordLengthMin"
|
||||
:max="form.minimumPasswordLengthMax"
|
||||
@ -353,8 +357,12 @@ export default {
|
||||
></textarea>
|
||||
</gl-form-group>
|
||||
|
||||
<gl-form-group :label="$options.i18n.domainDenyListGroupLabel">
|
||||
<gl-form-group
|
||||
:label="$options.i18n.domainDenyListGroupLabel"
|
||||
label-for="domain_denylist_enabled"
|
||||
>
|
||||
<signup-checkbox
|
||||
id="domain_denylist_enabled"
|
||||
v-model="form.domainDenylistEnabled"
|
||||
name="application_setting[domain_denylist_enabled]"
|
||||
:label="$options.i18n.domainDenyListLabel"
|
||||
@ -401,16 +409,24 @@ export default {
|
||||
></textarea>
|
||||
</gl-form-group>
|
||||
|
||||
<gl-form-group :label="$options.i18n.emailRestrictionsEnabledGroupLabel">
|
||||
<gl-form-group
|
||||
:label="$options.i18n.emailRestrictionsEnabledGroupLabel"
|
||||
label-for="email_restrictions_enabled"
|
||||
>
|
||||
<signup-checkbox
|
||||
id="email_restrictions_enabled"
|
||||
v-model="form.emailRestrictionsEnabled"
|
||||
name="application_setting[email_restrictions_enabled]"
|
||||
:label="$options.i18n.emailRestrictionsEnabledLabel"
|
||||
/>
|
||||
</gl-form-group>
|
||||
|
||||
<gl-form-group :label="$options.i18n.emailRestrictionsGroupLabel">
|
||||
<gl-form-group
|
||||
:label="$options.i18n.emailRestrictionsGroupLabel"
|
||||
label-for="email_restrictions"
|
||||
>
|
||||
<textarea
|
||||
id="email_restrictions"
|
||||
v-model="form.emailRestrictions"
|
||||
rows="4"
|
||||
class="form-control gl-form-input"
|
||||
@ -434,9 +450,11 @@ export default {
|
||||
|
||||
<gl-form-group
|
||||
:label="$options.i18n.afterSignUpTextGroupLabel"
|
||||
label-for="after_sign_up_text"
|
||||
:description="$options.i18n.afterSignUpTextGroupDescription"
|
||||
>
|
||||
<textarea
|
||||
id="after_sign_up_text"
|
||||
v-model="form.afterSignUpText"
|
||||
rows="4"
|
||||
class="form-control gl-form-input"
|
||||
|
@ -3,10 +3,10 @@ import { GlIcon, GlLink, GlTooltipDirective } from '@gitlab/ui';
|
||||
import TooltipOnTruncate from '~/vue_shared/components/tooltip_on_truncate/tooltip_on_truncate.vue';
|
||||
|
||||
const sizeClasses = {
|
||||
s: 'mw-s',
|
||||
m: 'mw-m',
|
||||
l: 'mw-l',
|
||||
xl: 'mw-xl',
|
||||
s: 'gl-max-w-20',
|
||||
m: 'gl-max-w-30',
|
||||
l: 'gl-max-w-48',
|
||||
xl: 'gl-max-w-75',
|
||||
};
|
||||
|
||||
export default {
|
||||
|
@ -16,29 +16,3 @@ $type-scale: (
|
||||
font-size: $size;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Why another sizing scale???
|
||||
* Great question, friend!
|
||||
* This size scale is a "backport" of the equivalent set of "named" sizes
|
||||
* (e.g. `xl` versus `70`) that came from the following design document as of 2019-10-23:
|
||||
*
|
||||
* https://gitlab-org.gitlab.io/gitlab-design/hosted/design-gitlab-specs/forms-spec-previews/
|
||||
*
|
||||
* (See `input-` items at the bottom)
|
||||
*
|
||||
* The presumption here is that these sizes will be standardized in GitLab UI and thus will be
|
||||
* broadly useful here in the GitLab product when not using the GitLab UI components.
|
||||
*/
|
||||
$size-scale: (
|
||||
's': #{20 * $grid-size},
|
||||
'l': #{40 * $grid-size},
|
||||
'm': #{30 * $grid-size},
|
||||
'xl': #{70 * $grid-size}
|
||||
);
|
||||
|
||||
@each $index, $size in $size-scale {
|
||||
#{'.mw-#{$index}'} {
|
||||
max-width: $size;
|
||||
}
|
||||
}
|
||||
|
@ -31,7 +31,7 @@
|
||||
= render_if_exists 'admin/application_settings/saml_group_locks_setting', form: f
|
||||
|
||||
.form-group
|
||||
%label.label-bold= _('Enabled Git access protocols')
|
||||
= f.label :enabled_git_access_protocol, _('Enabled Git access protocols')
|
||||
= select(:application_setting, :enabled_git_access_protocol, [['Both SSH and HTTP(S)', nil], ['Only SSH', 'ssh'], ['Only HTTP(S)', 'http']], {}, class: 'form-control')
|
||||
%span.form-text.gl-text-subtle#clone-protocol-help
|
||||
= _('Allow only the selected protocols to be used for Git access.')
|
||||
|
@ -11,6 +11,6 @@
|
||||
Instead, use the [`/approval_rules` endpoint](https://docs.gitlab.com/api/merge_request_approvals/#merge-request-level-mr-approvals) to [create](https://docs.gitlab.com/api/merge_request_approvals/#create-merge-request-level-rule) or [update](https://docs.gitlab.com/api/merge_request_approvals/#update-merge-request-level-rule) the approval rules for a merge request.
|
||||
end_of_support_milestone:
|
||||
tiers: Premium
|
||||
documentation_url: https://docs.gitlab.com/ee/api/merge_request_approvals.html
|
||||
documentation_url: https://docs.gitlab.com/api/merge_request_approvals/
|
||||
image_url:
|
||||
video_url:
|
||||
|
@ -9,6 +9,6 @@
|
||||
stage: secure # (optional - may be required in the future) String value of the stage that the feature was created in. e.g., Growth
|
||||
tiers: ultimate # (optional - may be required in the future) An array of tiers that the feature is available in currently. e.g., [Free, Silver, Gold, Core, Premium, Ultimate]
|
||||
issue_url: # (optional) This is a link to the deprecation issue in GitLab
|
||||
documentation_url: https://docs.gitlab.com/ee/user/application_security/dependency_scanning/#configuring-specific-analyzers-used-by-dependency-scanning
|
||||
documentation_url: https://docs.gitlab.com/user/application_security/dependency_scanning/#configuring-specific-analyzers-used-by-dependency-scanning
|
||||
image_url: # (optional) This is a link to a thumbnail image depicting the feature
|
||||
video_url: # (optional) Use the youtube thumbnail URL with the structure of https://img.youtube.com/vi/UNIQUEID/hqdefault.jpg
|
||||
|
@ -10,4 +10,4 @@
|
||||
stage: enablement
|
||||
tiers: premium, ultimate
|
||||
issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/359133
|
||||
documentation_url: https://docs.gitlab.com/ee/development/search/advanced_search_migration_styleguide.html#deleting-advanced-search-migrations-in-a-major-version-upgrade
|
||||
documentation_url: https://docs.gitlab.com/development/search/advanced_search_migration_styleguide/#deleting-advanced-search-migrations-in-a-major-version-upgrade
|
||||
|
@ -11,4 +11,4 @@
|
||||
stage: Foundations
|
||||
tiers: [Premium, Ultimate]
|
||||
issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/337384
|
||||
documentation_url: https://docs.gitlab.com/ee/integration/kerberos.html#upgrading-from-password-based-to-ticket-based-kerberos-sign-ins
|
||||
documentation_url: https://docs.gitlab.com/integration/kerberos/#upgrading-from-password-based-to-ticket-based-kerberos-sign-ins
|
||||
|
@ -11,4 +11,4 @@
|
||||
stage: Foundations
|
||||
tiers: Premium
|
||||
issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/337993
|
||||
documentation_url: https://docs.gitlab.com/ee/administration/
|
||||
documentation_url: https://docs.gitlab.com/administration/
|
||||
|
@ -17,4 +17,4 @@
|
||||
stage: Configure
|
||||
tiers: [Free, Premium, Ultimate]
|
||||
issue_url: 'https://gitlab.com/groups/gitlab-org/configure/-/epics/8'
|
||||
documentation_url: 'https://docs.gitlab.com/ee/user/infrastructure/clusters/#certificate-based-kubernetes-integration-deprecated'
|
||||
documentation_url: 'https://docs.gitlab.com/user/infrastructure/clusters/#certificate-based-kubernetes-integration-deprecated'
|
||||
|
@ -23,4 +23,4 @@
|
||||
stage: Configure
|
||||
tiers: [Core, Premium, Ultimate]
|
||||
issue_url: 'https://gitlab.com/groups/gitlab-org/configure/-/epics/8'
|
||||
documentation_url: 'https://docs.gitlab.com/ee/user/infrastructure/clusters/#certificate-based-kubernetes-integration-deprecated'
|
||||
documentation_url: 'https://docs.gitlab.com/user/infrastructure/clusters/#certificate-based-kubernetes-integration-deprecated'
|
||||
|
@ -9,6 +9,6 @@
|
||||
reporter: phikai
|
||||
tiers: # (optional - may be required in the future) An array of tiers that the feature is available in currently. e.g., [Free, Silver, Gold, Core, Premium, Ultimate]
|
||||
issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/345451 # (optional) This is a link to the deprecation issue in GitLab
|
||||
documentation_url: https://docs.gitlab.com/ee/api/graphql/removed_items.html#graphql-types # (optional) This is a link to the current documentation page
|
||||
documentation_url: https://docs.gitlab.com/api/graphql/removed_items/#graphql-types # (optional) This is a link to the current documentation page
|
||||
image_url: # (optional) This is a link to a thumbnail image depicting the feature
|
||||
video_url: # (optional) Use the youtube thumbnail URL with the structure of https://img.youtube.com/vi/UNIQUEID/hqdefault.jpg
|
||||
|
@ -9,5 +9,5 @@
|
||||
stage: Foundations # (optional - may be required in the future) String value of the stage that the feature was created in. e.g., Growth
|
||||
tiers: # (optional - may be required in the future) An array of tiers that the feature is available in currently. e.g., [Free, Silver, Gold, Core, Premium, Ultimate]
|
||||
issue_url: 'https://gitlab.com/gitlab-org/gitlab/-/issues/343210' # (optional) This is a link to the deprecation issue in GitLab
|
||||
documentation_url: "https://docs.gitlab.com/ee/user/analytics/value_stream_analytics.html#filter-value-stream-analytics-data" # (optional) This is a link to the current documentation page
|
||||
documentation_url: "https://docs.gitlab.com/user/analytics/value_stream_analytics/#filter-value-stream-analytics-data" # (optional) This is a link to the current documentation page
|
||||
image_url: "img/vsa_warning.png" # (optional) This is a link to a thumbnail image depicting the feature
|
||||
|
@ -9,4 +9,4 @@
|
||||
stage: Package
|
||||
tiers: Free
|
||||
issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/336912
|
||||
documentation_url: https://docs.gitlab.com/ee/api/container_registry.html#within-a-group
|
||||
documentation_url: https://docs.gitlab.com/api/container_registry/#within-a-group
|
||||
|
@ -19,4 +19,4 @@
|
||||
stage: Verify
|
||||
tiers: [Core, Premium, Ultimate]
|
||||
issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/344648
|
||||
documentation_url: https://docs.gitlab.com/ee/api/runners.html
|
||||
documentation_url: https://docs.gitlab.com/api/runners/
|
||||
|
@ -10,6 +10,6 @@
|
||||
stage: secure # (optional - may be required in the future) String value of the stage that the feature was created in. e.g., Growth
|
||||
tiers: ultimate # (optional - may be required in the future) An array of tiers that the feature is available in currently. e.g., [Free, Silver, Gold, Core, Premium, Ultimate]
|
||||
issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/289832 # (optional) This is a link to the deprecation issue in GitLab
|
||||
documentation_url: https://docs.gitlab.com/ee/user/application_security/dependency_scanning/analyzers.html # (optional) This is a link to the current documentation page
|
||||
documentation_url: https://docs.gitlab.com/user/application_security/dependency_scanning/#analyzers # (optional) This is a link to the current documentation page
|
||||
image_url: # (optional) This is a link to a thumbnail image depicting the feature
|
||||
video_url: # (optional) Use the youtube thumbnail URL with the structure of https://img.youtube.com/vi/UNIQUEID/hqdefault.jpg
|
||||
|
@ -9,4 +9,4 @@
|
||||
stage: Secure
|
||||
tiers: Ultimate
|
||||
issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/333233
|
||||
documentation_url: https://docs.gitlab.com/ee/user/application_security/api_fuzzing/#web-api-fuzzing-configuration-form
|
||||
documentation_url: https://docs.gitlab.com/user/application_security/api_fuzzing/#web-api-fuzzing-configuration-form
|
||||
|
@ -11,4 +11,4 @@
|
||||
# The following items are not published on the docs page, but may be used in the future.
|
||||
stage: Verify
|
||||
issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/348980
|
||||
documentation_url: https://docs.gitlab.com/ee/ci/yaml/artifacts_reports.html#artifactsreportscobertura
|
||||
documentation_url: https://docs.gitlab.com/ci/yaml/artifacts_reports/#artifactsreportscobertura
|
||||
|
@ -6,5 +6,5 @@
|
||||
has been replaced with Go modules.
|
||||
To reduce our maintenance cost we are deprecating License Compliance for Godep projects as of 14.7
|
||||
and will remove it in GitLab 15.0
|
||||
documentation_url: "https://docs.gitlab.com/ee/user/compliance/license_compliance/#supported-languages-and-package-managers"
|
||||
documentation_url: "https://docs.gitlab.com/user/compliance/license_scanning_of_cyclonedx_files/#supported-languages-and-package-managers"
|
||||
issue_url: "https://gitlab.com/gitlab-org/gitlab/-/issues/327057"
|
||||
|
@ -9,6 +9,6 @@
|
||||
stage: Create # (optional - may be required in the future) String value of the stage that the feature was created in. e.g., Growth
|
||||
tiers: [Free, Premium, Ultimate] # (optional - may be required in the future) An array of tiers that the feature is available in currently. e.g., [Free, Silver, Gold, Core, Premium, Ultimate]
|
||||
issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/347137 # (optional) This is a link to the deprecation issue in GitLab
|
||||
documentation_url: https://docs.gitlab.com/ee/user/project/web_ide/ # (optional) This is a link to the current documentation page
|
||||
documentation_url: https://docs.gitlab.com/user/project/web_ide/ # (optional) This is a link to the current documentation page
|
||||
image_url: # (optional) This is a link to a thumbnail image depicting the feature
|
||||
video_url: # (optional) Use the youtube thumbnail URL with the structure of https://img.youtube.com/vi/UNIQUEID/hqdefault.jpg
|
||||
|
@ -6,5 +6,5 @@
|
||||
can cause production issues with large databases,
|
||||
and can interfere with object storage development.
|
||||
It is now considered deprecated, and will be removed in GitLab 15.0.
|
||||
documentation_url: "https://docs.gitlab.com/ee/administration/pseudonymizer.html"
|
||||
documentation_url: "https://docs.gitlab.com/"
|
||||
issue_url: "https://gitlab.com/gitlab-org/gitlab/-/issues/219952"
|
||||
|
@ -25,4 +25,4 @@
|
||||
stage: Enablement
|
||||
tiers: [Free, Premium, Ultimate]
|
||||
issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/347509
|
||||
documentation_url: https://docs.gitlab.com/ee/administration/sidekiq.html
|
||||
documentation_url: https://docs.gitlab.com/administration/sidekiq/
|
||||
|
@ -12,4 +12,4 @@
|
||||
stage: Enablement
|
||||
tiers: [Premium, Ultimate]
|
||||
issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/350275
|
||||
documentation_url: https://docs.gitlab.com/ee/integration/advanced_search/elasticsearch.html#version-requirements
|
||||
documentation_url: https://docs.gitlab.com/integration/advanced_search/elasticsearch/#version-requirements
|
||||
|
@ -24,6 +24,6 @@
|
||||
stage: Verify
|
||||
tiers: [Free, Premium, Ultimate]
|
||||
issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/352957
|
||||
documentation_url: https://docs.gitlab.com/ee/ci/variables/predefined_variables.html
|
||||
documentation_url: https://docs.gitlab.com/ci/variables/predefined_variables/
|
||||
image_url: # (optional) This is a link to a thumbnail image depicting the feature
|
||||
video_url: # (optional) Use the youtube thumbnail URL with the structure of https://img.youtube.com/vi/UNIQUEID/hqdefault.jpg
|
||||
|
@ -10,6 +10,6 @@
|
||||
stage: secure # (optional - may be required in the future) String value of the stage that the feature was created in. e.g., Growth
|
||||
tiers: ultimate # (optional - may be required in the future) An array of tiers that the feature is available in currently. e.g., [Free, Silver, Gold, Core, Premium, Ultimate]
|
||||
issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/350510 # (optional) This is a link to the deprecation issue in GitLab
|
||||
documentation_url: https://docs.gitlab.com/ee/user/application_security/dependency_scanning/analyzers.html # (optional) This is a link to the current documentation page
|
||||
documentation_url: https://docs.gitlab.com/user/application_security/dependency_scanning/#analyzers # (optional) This is a link to the current documentation page
|
||||
image_url: # (optional) This is a link to a thumbnail image depicting the feature
|
||||
video_url: # (optional) Use the youtube thumbnail URL with the structure of https://img.youtube.com/vi/UNIQUEID/hqdefault.jpg
|
||||
|
@ -9,4 +9,4 @@
|
||||
Unexpected behavior in a security feature is inherently dangerous, so we have decided to remove this feature.
|
||||
stage: Foundations
|
||||
issue_url: "https://gitlab.com/gitlab-org/gitlab/-/issues/351962" # (optional) This is a link to the deprecation issue in GitLab
|
||||
documentation_url: "https://docs.gitlab.com/ee/administration/settings/account_and_limit_settings.html#allow-expired-personal-access-tokens-to-be-used-deprecated" # (optional) This is a link to the current documentation page
|
||||
documentation_url: "https://docs.gitlab.com/administration/settings/account_and_limit_settings/#allow-expired-personal-access-tokens-to-be-used-deprecated" # (optional) This is a link to the current documentation page
|
||||
|
@ -9,4 +9,4 @@
|
||||
Unexpected behavior in a security feature is inherently dangerous, so we have decided to remove this feature.
|
||||
stage: Foundations
|
||||
issue_url: "https://gitlab.com/gitlab-org/gitlab/-/issues/351963" # (optional) This is a link to the deprecation issue in GitLab
|
||||
documentation_url: "https://docs.gitlab.com/ee/administration/settings/account_and_limit_settings.html#allow-expired-ssh-keys-to-be-used-deprecated" # (optional) This is a link to the current documentation page
|
||||
documentation_url: "https://docs.gitlab.com/administration/settings/account_and_limit_settings/#allow-expired-ssh-keys-to-be-used-deprecated" # (optional) This is a link to the current documentation page
|
||||
|
@ -13,6 +13,6 @@
|
||||
stage: "Create" # (optional - may be required in the future) String value of the stage that the feature was created in. e.g., Growth
|
||||
tiers: # (optional - may be required in the future) An array of tiers that the feature is available in currently. e.g., [Free, Silver, Gold, Core, Premium, Ultimate]
|
||||
issue_url: "https://gitlab.com/gitlab-org/gitlab/-/issues/352609" # (optional) This is a link to the deprecation issue in GitLab
|
||||
documentation_url: "https://docs.gitlab.com/ee/administration/gitaly/reference.html" # (optional) This is a link to the current documentation page
|
||||
documentation_url: "https://docs.gitlab.com/administration/gitaly/reference/" # (optional) This is a link to the current documentation page
|
||||
image_url: # (optional) This is a link to a thumbnail image depicting the feature
|
||||
video_url: # (optional) Use the youtube thumbnail URL with the structure of https://img.youtube.com/vi/UNIQUEID/hqdefault.jpg
|
||||
|
@ -35,7 +35,7 @@
|
||||
# like [Free, Silver, Gold, Core, Premium, Ultimate]
|
||||
tiers:
|
||||
# Links to documentation and thumbnail image
|
||||
documentation_url: https://docs.gitlab.com/ee/api/graphql/reference/#cirunner
|
||||
documentation_url: https://docs.gitlab.com/api/graphql/reference/#cirunner
|
||||
image_url:
|
||||
# Use the youtube thumbnail URL with the structure of https://img.youtube.com/vi/UNIQUEID/hqdefault.jpg
|
||||
video_url:
|
||||
|
@ -14,4 +14,4 @@
|
||||
stage: Monitor
|
||||
tiers: [Free, Premium, Ultimate]
|
||||
issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/352488
|
||||
documentation_url: https://docs.gitlab.com/ee/administration/monitoring/performance/
|
||||
documentation_url: https://docs.gitlab.com/administration/monitoring/performance/
|
||||
|
@ -15,4 +15,4 @@
|
||||
stage: Enablement
|
||||
tiers: [Core, Premium, Ultimate]
|
||||
issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/26600
|
||||
documentation_url: https://docs.gitlab.com/ee/administration/object_storage.html
|
||||
documentation_url: https://docs.gitlab.com/administration/object_storage/
|
||||
|
@ -9,4 +9,4 @@
|
||||
stage: Monitor # (optional - may be required in the future) String value of the stage that the feature was created in. e.g., Growth
|
||||
tiers: [Core, Premium, Ultimate] # (optional - may be required in the future) An array of tiers that the feature is available in currently. e.g., [Free, Silver, Gold, Core, Premium, Ultimate]
|
||||
issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/348909 # (optional) This is a link to the deprecation issue in GitLab
|
||||
documentation_url: https://docs.gitlab.com/ee/administration/monitoring/gitlab_self_monitoring_project/ # (optional) This is a link to the current documentation page
|
||||
documentation_url: https://docs.gitlab.com/administration/monitoring/gitlab_self_monitoring_project/ # (optional) This is a link to the current documentation page
|
||||
|
@ -8,6 +8,6 @@
|
||||
stage: Monitor # (optional - may be required in the future) String value of the stage that the feature was created in. e.g., Growth
|
||||
tiers: [Free] # (optional - may be required in the future) An array of tiers that the feature is available in currently. e.g., [Free, Silver, Gold, Core, Premium, Ultimate]
|
||||
issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/346485 # (optional) This is a link to the deprecation issue in GitLab
|
||||
documentation_url: https://docs.gitlab.com/ee/operations/#aggregate-and-store-logs-deprecated # (optional) This is a link to the current documentation page
|
||||
documentation_url: https://docs.gitlab.com/operations/#aggregate-and-store-logs-deprecated # (optional) This is a link to the current documentation page
|
||||
image_url: # (optional) This is a link to a thumbnail image depicting the feature
|
||||
video_url: # (optional) Use the youtube thumbnail URL with the structure of https://img.youtube.com/vi/UNIQUEID/hqdefault.jpg
|
||||
|
@ -9,6 +9,6 @@
|
||||
stage: Monitor # (optional - may be required in the future) String value of the stage that the feature was created in. e.g., Growth
|
||||
tiers: [Free] # (optional - may be required in the future) An array of tiers that the feature is available in currently. e.g., [Free, Silver, Gold, Core, Premium, Ultimate]
|
||||
issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/346541 # (optional) This is a link to the deprecation issue in GitLab
|
||||
documentation_url: https://docs.gitlab.com/ee/operations/metrics/dashboards/ # (optional) This is a link to the current documentation page
|
||||
documentation_url: https://docs.gitlab.com/operations/metrics/dashboards/ # (optional) This is a link to the current documentation page
|
||||
image_url: # (optional) This is a link to a thumbnail image depicting the feature
|
||||
video_url: # (optional) Use the youtube thumbnail URL with the structure of https://img.youtube.com/vi/UNIQUEID/hqdefault.jpg
|
||||
|
@ -8,6 +8,6 @@
|
||||
stage: Monitor # (optional - may be required in the future) String value of the stage that the feature was created in. e.g., Growth
|
||||
tiers: [Free] # (optional - may be required in the future) An array of tiers that the feature is available in currently. e.g., [Free, Silver, Gold, Core, Premium, Ultimate]
|
||||
issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/346540 # (optional) This is a link to the deprecation issue in GitLab
|
||||
documentation_url: https://docs.gitlab.com/ee/operations/tracing.html#tracing # (optional) This is a link to the current documentation page
|
||||
documentation_url: https://docs.gitlab.com/operations/tracing/#tracing # (optional) This is a link to the current documentation page
|
||||
image_url: # (optional) This is a link to a thumbnail image depicting the feature
|
||||
video_url: # (optional) Use the youtube thumbnail URL with the structure of https://img.youtube.com/vi/UNIQUEID/hqdefault.jpg
|
||||
|
@ -8,4 +8,4 @@
|
||||
stage: Foundations
|
||||
tiers: [FREE]
|
||||
issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/332323
|
||||
documentation_url: https://docs.gitlab.com/ee/api/graphql/reference/#queryusagetrendsmeasurements
|
||||
documentation_url: https://docs.gitlab.com/api/graphql/reference/#queryusagetrendsmeasurements
|
||||
|
@ -10,6 +10,6 @@
|
||||
stage: Foundations # (optional - may be required in the future) String value of the stage that the feature was created in. e.g., Growth
|
||||
tiers: # (optional - may be required in the future) An array of tiers that the feature is available in currently. e.g., [Free, Silver, Gold, Core, Premium, Ultimate]
|
||||
issue_url: https://gitlab.com/groups/gitlab-org/-/epics/7508 # (optional) This is a link to the deprecation issue in GitLab
|
||||
documentation_url: https://docs.gitlab.com/ee/integration/jira/dvcs/ # (optional) This is a link to the current documentation page
|
||||
documentation_url: https://docs.gitlab.com/integration/jira/dvcs/ # (optional) This is a link to the current documentation page
|
||||
image_url: # (optional) This is a link to a thumbnail image depicting the feature
|
||||
video_url: # (optional) Use the youtube thumbnail URL with the structure of https://img.youtube.com/vi/UNIQUEID/hqdefault.jpg
|
||||
|
@ -30,6 +30,6 @@
|
||||
# OTHER OPTIONAL FIELDS
|
||||
#
|
||||
tiers: # (optional - may be required in the future) An array of tiers that the feature is available in currently. e.g., [Free, Silver, Gold, Core, Premium, Ultimate]
|
||||
documentation_url: https://docs.gitlab.com/ee/administration/gitaly/configure_gitaly.html # (optional) This is a link to the current documentation page
|
||||
documentation_url: https://docs.gitlab.com/administration/gitaly/configure_gitaly/ # (optional) This is a link to the current documentation page
|
||||
image_url: # (optional) This is a link to a thumbnail image depicting the feature
|
||||
video_url: # (optional) Use the youtube thumbnail URL with the structure of https://img.youtube.com/vi/UNIQUEID/hqdefault.jpg
|
||||
|
@ -10,4 +10,4 @@
|
||||
Redis 5 has reached the end of life in April 2022 and will no longer be supported as of GitLab 15.6.
|
||||
If you are using your own Redis 5.0 instance, you should upgrade it to Redis 6.0 or higher before upgrading to GitLab 16.0 or higher.
|
||||
end_of_support_milestone: "15.6"
|
||||
documentation_url: https://docs.gitlab.com/ee/install/requirements.html
|
||||
documentation_url: https://docs.gitlab.com/install/requirements/
|
||||
|
@ -15,6 +15,6 @@
|
||||
#
|
||||
end_of_support_milestone: # (optional) Use "XX.YY" format. The milestone when support for this feature will end.
|
||||
tiers: # (optional - may be required in the future) An array of tiers that the feature is available in currently. e.g., [Free, Silver, Gold, Core, Premium, Ultimate]
|
||||
documentation_url: https://docs.gitlab.com/ee/api/graphql/reference/#mutationvulnerabilityfindingdismiss
|
||||
documentation_url: https://docs.gitlab.com/api/graphql/reference/#mutationvulnerabilityfindingdismiss
|
||||
image_url: # (optional) This is a link to a thumbnail image depicting the feature
|
||||
video_url: # (optional) Use the youtube thumbnail URL with the structure of https://img.youtube.com/vi/UNIQUEID/hqdefault.jpg
|
||||
|
@ -12,4 +12,4 @@
|
||||
stage: Enablement
|
||||
tiers: [Free, Premium, Ultimate]
|
||||
issue_url: https://gitlab.com/gitlab-org/omnibus-gitlab/-/issues/6972
|
||||
documentation_url: https://docs.gitlab.com/ee/administration/monitoring/performance/grafana_configuration.html
|
||||
documentation_url: https://docs.gitlab.com/administration/monitoring/performance/grafana_configuration/
|
||||
|
@ -7,4 +7,4 @@
|
||||
issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/371485
|
||||
body: |
|
||||
The `confidential` field for a `Note` will be deprecated and renamed to `internal`.
|
||||
documentation_url: https://docs.gitlab.com/ee/api/graphql/reference/#note
|
||||
documentation_url: https://docs.gitlab.com/api/graphql/reference/#note
|
||||
|
@ -8,4 +8,4 @@
|
||||
body: |
|
||||
The `VulnerabilityFindingDismiss` GraphQL mutation is being deprecated and will be removed in GitLab 16.0. This mutation was not used often as the Vulnerability Finding ID was not available to users (this field was [deprecated in 15.3](https://docs.gitlab.com/update/deprecations/#use-of-id-field-in-vulnerabilityfindingdismiss-mutation)). Users should instead use `VulnerabilityDismiss` to dismiss vulnerabilities in the Vulnerability Report or `SecurityFindingDismiss` for security findings in the CI Pipeline Security tab.
|
||||
tiers: "Ultimate"
|
||||
documentation_url: https://docs.gitlab.com/ee/api/graphql/reference/#mutationvulnerabilityfindingdismiss
|
||||
documentation_url: https://docs.gitlab.com/api/graphql/reference/#mutationvulnerabilityfindingdismiss
|
||||
|
@ -29,4 +29,4 @@
|
||||
This change is a breaking change. You should [create a runner in the UI](https://docs.gitlab.com/ci/runners/runners_scope/) to add configurations, and use the runner authentication token in the `gitlab-runner register` command instead.
|
||||
end_of_support_milestone: # (optional) Use "XX.YY" format. The milestone when support for this feature will end.
|
||||
tiers: # (optional - may be required in the future) An array of tiers that the feature is available in currently. e.g., [Free, Silver, Gold, Core, Premium, Ultimate]
|
||||
documentation_url: https://docs.gitlab.com/ee/api/runners.html#create-a-runner # (optional) This is a link to the current documentation page
|
||||
documentation_url: https://docs.gitlab.com/api/runners/#create-a-runner # (optional) This is a link to the current documentation page
|
||||
|
@ -28,4 +28,4 @@
|
||||
From GitLab 18.0 and later, the runner registration methods implemented by the new GitLab Runner token architecture will be the only supported methods.
|
||||
end_of_support_milestone: # (optional) Use "XX.YY" format. The milestone when support for this feature will end.
|
||||
tiers: # (optional - may be required in the future) An array of tiers that the feature is available in currently. e.g., [Free, Silver, Gold, Core, Premium, Ultimate]
|
||||
documentation_url: https://docs.gitlab.com/ee/api/runners.html#create-a-runner # (optional) This is a link to the current documentation page
|
||||
documentation_url: https://docs.gitlab.com/api/runners/#create-a-runner # (optional) This is a link to the current documentation page
|
||||
|
@ -7,4 +7,4 @@
|
||||
stage: Foundations
|
||||
tiers:
|
||||
issue_url: https://gitlab.com/gitlab-com/Product/-/issues/4894
|
||||
documentation_url: https://docs.gitlab.com/ee/user/project/import/
|
||||
documentation_url: https://docs.gitlab.com/user/project/import/
|
||||
|
@ -24,6 +24,6 @@
|
||||
# OTHER OPTIONAL FIELDS
|
||||
#
|
||||
tiers: [Premium, Ultimate] # (optional - may be required in the future) An array of tiers that the feature is available in currently. e.g., [Free, Silver, Gold, Core, Premium, Ultimate]
|
||||
documentation_url: https://docs.gitlab.com/ee/user/project/integrations/zentao.html # (optional) This is a link to the current documentation page
|
||||
documentation_url: https://docs.gitlab.com/user/project/integrations/zentao/ # (optional) This is a link to the current documentation page
|
||||
image_url: # (optional) This is a link to a thumbnail image depicting the feature
|
||||
video_url: # (optional) Use the youtube thumbnail URL with the structure of https://img.youtube.com/vi/UNIQUEID/hqdefault.jpg
|
||||
|
@ -19,4 +19,4 @@
|
||||
To use the full state name, including the period, [migrate to the full state file](https://docs.gitlab.com/user/infrastructure/iac/terraform_state/#migrate-to-a-gitlab-managed-terraform-state).
|
||||
end_of_support_milestone:
|
||||
tiers: [Free, Silver, Gold, Core, Premium, Ultimate]
|
||||
documentation_url: 'https://docs.gitlab.com/ee/user/infrastructure/iac/troubleshooting.html#troubleshooting-terraform-state'
|
||||
documentation_url: 'https://docs.gitlab.com/user/infrastructure/iac/troubleshooting/#troubleshooting-terraform-state'
|
||||
|
@ -13,4 +13,4 @@
|
||||
If you want Auto DevOps to provision an in-cluster database,
|
||||
set the `POSTGRES_ENABLED` CI/CD variable to `true`.
|
||||
tiers: [Core, Premium, Ultimate]
|
||||
documentation_url: https://docs.gitlab.com/ee/topics/autodevops/stages.html#auto-deploy
|
||||
documentation_url: https://docs.gitlab.com/topics/autodevops/stages/#auto-deploy
|
||||
|
@ -16,4 +16,4 @@
|
||||
#
|
||||
# OTHER OPTIONAL FIELDS
|
||||
#
|
||||
documentation_url: "https://docs.gitlab.com/ee/api/graphql/reference/#sharedrunnerssetting" # (optional) This is a link to the current documentation page
|
||||
documentation_url: "https://docs.gitlab.com/api/graphql/reference/#sharedrunnerssetting" # (optional) This is a link to the current documentation page
|
||||
|
@ -9,4 +9,4 @@
|
||||
Auto DevOps support for Herokuish is deprecated in favor of [Cloud Native Buildpacks](https://docs.gitlab.com/topics/autodevops/stages/#auto-build-using-cloud-native-buildpacks). You should [migrate your builds from Herokuish to Cloud Native Buildpacks](https://docs.gitlab.com/topics/autodevops/stages/#moving-from-herokuish-to-cloud-native-buildpacks). From GitLab 14.0, Auto Build uses Cloud Native Buildpacks by default.
|
||||
|
||||
Because Cloud Native Buildpacks do not support automatic testing, the Auto Test feature of Auto DevOps is also deprecated.
|
||||
documentation_url: https://docs.gitlab.com/ee/topics/autodevops/stages.html#auto-build-using-cloud-native-buildpacks
|
||||
documentation_url: https://docs.gitlab.com/topics/autodevops/stages/#auto-build-using-cloud-native-buildpacks
|
||||
|
@ -25,4 +25,4 @@
|
||||
stage: Foundations
|
||||
tiers:
|
||||
issue_url: https://gitlab.com/gitlab-com/Product/-/issues/5255
|
||||
documentation_url: https://docs.gitlab.com/ee/user/project/import/
|
||||
documentation_url: https://docs.gitlab.com/user/project/import/
|
||||
|
@ -11,4 +11,4 @@
|
||||
Starting in GitLab 15.7 we started providing packages for openSUSE Leap 15.4, and will stop providing packages for openSUSE Leap 15.3 in the 15.11 milestone.
|
||||
|
||||
- Switch from the openSUSE Leap 15.3 packages to the provided 15.4 packages.
|
||||
documentation_url: https://docs.gitlab.com/ee/administration/package_information/supported_os.html
|
||||
documentation_url: https://docs.gitlab.com/administration/package_information/supported_os/
|
||||
|
@ -23,6 +23,6 @@
|
||||
# OTHER OPTIONAL FIELDS
|
||||
#
|
||||
tiers: [Free, Silver, Gold] # (optional - may be required in the future) An array of tiers that the feature is available in currently. e.g., [Free, Silver, Gold, Core, Premium, Ultimate]
|
||||
documentation_url: https://docs.gitlab.com/ee/user/project/integrations/slack.html # (optional) This is a link to the current documentation page
|
||||
documentation_url: https://docs.gitlab.com/user/project/integrations/slack/ # (optional) This is a link to the current documentation page
|
||||
image_url: # (optional) This is a link to a thumbnail image depicting the feature
|
||||
video_url: # (optional) Use the youtube thumbnail URL with the structure of https://img.youtube.com/vi/UNIQUEID/hqdefault.jpg
|
||||
|
@ -18,6 +18,6 @@
|
||||
# OTHER OPTIONAL FIELDS
|
||||
#
|
||||
tiers: Premium # (optional - may be required in the future) An array of tiers that the feature is available in currently. e.g., [Free, Silver, Gold, Core, Premium, Ultimate]
|
||||
documentation_url: https://docs.gitlab.com/ee/ci/review_apps/#visual-reviews # (optional) This is a link to the current documentation page
|
||||
documentation_url: https://docs.gitlab.com/ci/review_apps/#visual-reviews # (optional) This is a link to the current documentation page
|
||||
image_url: # (optional) This is a link to a thumbnail image depicting the feature
|
||||
video_url: # (optional) Use the youtube thumbnail URL with the structure of https://img.youtube.com/vi/UNIQUEID/hqdefault.jpg
|
||||
|
@ -24,6 +24,6 @@
|
||||
# OPTIONAL FIELDS
|
||||
#
|
||||
tiers: # (optional - may be required in the future) An array of tiers that the feature is available in currently. e.g., [Free, Silver, Gold, Core, Premium, Ultimate]
|
||||
documentation_url: "https://docs.gitlab.com/ee/ci/yaml/#stages" # (optional) This is a link to the current documentation page
|
||||
documentation_url: "https://docs.gitlab.com/ci/yaml/#stages" # (optional) This is a link to the current documentation page
|
||||
image_url: # (optional) This is a link to a thumbnail image depicting the feature
|
||||
video_url: # (optional) Use the youtube thumbnail URL with the structure of https://img.youtube.com/vi/UNIQUEID/hqdefault.jpg
|
||||
|
@ -14,4 +14,4 @@
|
||||
to [add the `ci:` section](https://docs.gitlab.com/install/installation/#configure-gitlab-db-settings).
|
||||
Omnibus, the Helm chart, and Operator will handle this configuration
|
||||
automatically from GitLab 16.0 onwards.
|
||||
documentation_url: https://docs.gitlab.com/ee/install/installation.html#configure-gitlab-db-settings
|
||||
documentation_url: https://docs.gitlab.com/install/installation/#configure-gitlab-db-settings
|
||||
|
@ -18,6 +18,6 @@
|
||||
# OTHER OPTIONAL FIELDS
|
||||
#
|
||||
tiers: Free, Premium, Ultimate # (optional - may be required in the future) An array of tiers that the feature is available in currently. e.g., [Free, Silver, Gold, Core, Premium, Ultimate]
|
||||
documentation_url: https://docs.gitlab.com/ee/ci/runners/saas/linux_saas_runner.html#pre-clone-script # (optional) This is a link to the current documentation page
|
||||
documentation_url: https://docs.gitlab.com/ci/runners/saas/linux_saas_runner/#pre-clone-script # (optional) This is a link to the current documentation page
|
||||
image_url: # (optional) This is a link to a thumbnail image depicting the feature
|
||||
video_url: # (optional) Use the youtube thumbnail URL with the structure of https://img.youtube.com/vi/UNIQUEID/hqdefault.jpg
|
||||
|
@ -21,6 +21,6 @@
|
||||
# OTHER OPTIONAL FIELDS
|
||||
#
|
||||
tiers: # (optional - may be required in the future) An array of tiers that the feature is available in currently. e.g., [Free, Silver, Gold, Core, Premium, Ultimate]
|
||||
documentation_url: https://docs.gitlab.com/ee/ci/examples/authenticating-with-hashicorp-vault/ # (optional) This is a link to the current documentation page
|
||||
documentation_url: https://docs.gitlab.com/ci/examples/authenticating-with-hashicorp-vault/ # (optional) This is a link to the current documentation page
|
||||
image_url: # (optional) This is a link to a thumbnail image depicting the feature
|
||||
video_url: # (optional) Use the youtube thumbnail URL with the structure of https://img.youtube.com/vi/UNIQUEID/hqdefault.jpg
|
||||
|
@ -36,6 +36,6 @@
|
||||
# OTHER OPTIONAL FIELDS
|
||||
#
|
||||
tiers: # (optional - may be required in the future) An array of tiers that the feature is available in currently. e.g., [Free, Silver, Gold, Core, Premium, Ultimate]
|
||||
documentation_url: "https://docs.gitlab.com/ee/ci/jobs/ci_job_token.html#configure-the-job-token-scope-limit" # (optional) This is a link to the current documentation page
|
||||
documentation_url: "https://docs.gitlab.com/ci/jobs/ci_job_token/#configure-the-job-token-scope-limit" # (optional) This is a link to the current documentation page
|
||||
image_url: # (optional) This is a link to a thumbnail image depicting the feature
|
||||
video_url: # (optional) Use the youtube thumbnail URL with the structure of https://img.youtube.com/vi/UNIQUEID/hqdefault.jpg
|
||||
|
@ -29,6 +29,6 @@
|
||||
# OTHER OPTIONAL FIELDS
|
||||
#
|
||||
tiers: # (optional - may be required in the future) An array of tiers that the feature is available in currently. e.g., [Free, Silver, Gold, Core, Premium, Ultimate]
|
||||
documentation_url: https://docs.gitlab.com/ee/administration/gitaly/praefect.html # (optional) This is a link to the current documentation page
|
||||
documentation_url: https://docs.gitlab.com/administration/gitaly/praefect/ # (optional) This is a link to the current documentation page
|
||||
image_url: # (optional) This is a link to a thumbnail image depicting the feature
|
||||
video_url: # (optional) Use the youtube thumbnail URL with the structure of https://img.youtube.com/vi/UNIQUEID/hqdefault.jpg
|
||||
|
@ -32,6 +32,6 @@
|
||||
# OTHER OPTIONAL FIELDS
|
||||
#
|
||||
tiers: # (optional - may be required in the future) An array of tiers that the feature is available in currently. e.g., [Free, Silver, Gold, Core, Premium, Ultimate]
|
||||
documentation_url: https://docs.gitlab.com/ee/administration/settings/continuous_integration.html#required-pipeline-configuration-deprecated # (optional) This is a link to the current documentation page
|
||||
documentation_url: https://docs.gitlab.com/administration/settings/continuous_integration/#required-pipeline-configuration-deprecated # (optional) This is a link to the current documentation page
|
||||
image_url: # (optional) This is a link to a thumbnail image depicting the feature
|
||||
video_url: # (optional) Use the youtube thumbnail URL with the structure of https://img.youtube.com/vi/UNIQUEID/hqdefault.jpg
|
||||
|
@ -22,6 +22,6 @@
|
||||
# OTHER OPTIONAL FIELDS
|
||||
#
|
||||
tiers: # (optional - may be required in the future) An array of tiers that the feature is available in currently. e.g., [Free, Silver, Gold, Core, Premium, Ultimate]
|
||||
documentation_url: https://docs.gitlab.com/ee/api/graphql/reference/#cirunnerprojects # (optional) This is a link to the current documentation page
|
||||
documentation_url: https://docs.gitlab.com/api/graphql/reference/#cirunnerprojects # (optional) This is a link to the current documentation page
|
||||
image_url: # (optional) This is a link to a thumbnail image depicting the feature
|
||||
video_url: # (optional) Use the youtube thumbnail URL with the structure of https://img.youtube.com/vi/UNIQUEID/hqdefault.jpg
|
||||
|
@ -40,4 +40,4 @@
|
||||
[Issue 393157](https://gitlab.com/gitlab-org/gitlab/-/issues/393157) tracks improving email ingestion in general.
|
||||
We hope this will simplify infrastructure setup and add several improvements to how you manage GitLab in the near future.
|
||||
tiers: [Free, Silver, Gold, Core, Premium, Ultimate]
|
||||
documentation_url: https://docs.gitlab.com/ee/user/project/service_desk/configure.html#use-an-additional-service-desk-alias-email
|
||||
documentation_url: https://docs.gitlab.com/user/project/service_desk/configure/#use-an-additional-service-desk-alias-email
|
||||
|
@ -19,6 +19,6 @@
|
||||
# OTHER OPTIONAL FIELDS
|
||||
#
|
||||
tiers: # (optional - may be required in the future) An array of tiers that the feature is available in currently. e.g., [Free, Silver, Gold, Core, Premium, Ultimate]
|
||||
documentation_url: https://docs.gitlab.com/ee/api/graphql/reference/#cirunnermembershipfilter # (optional) This is a link to the current documentation page
|
||||
documentation_url: https://docs.gitlab.com/api/graphql/reference/#cirunnermembershipfilter # (optional) This is a link to the current documentation page
|
||||
image_url: # (optional) This is a link to a thumbnail image depicting the feature
|
||||
video_url: # (optional) Use the youtube thumbnail URL with the structure of https://img.youtube.com/vi/UNIQUEID/hqdefault.jpg
|
||||
|
@ -11,6 +11,6 @@
|
||||
# OPTIONAL FIELDS
|
||||
#
|
||||
tiers: # (optional - may be required in the future) An array of tiers that the feature is available in currently. e.g., [Free, Silver, Gold, Core, Premium, Ultimate]
|
||||
documentation_url: https://docs.gitlab.com/ee/user/project/repository/branches/protected.html
|
||||
documentation_url: https://docs.gitlab.com/user/project/repository/branches/protected/
|
||||
image_url: # (optional) This is a link to a thumbnail image depicting the feature
|
||||
video_url: # (optional) Use the youtube thumbnail URL with the structure of https://img.youtube.com/vi/UNIQUEID/hqdefault.jpg
|
||||
|
@ -12,4 +12,4 @@
|
||||
This change provides additional scalability for the largest of GitLab instances, like GitLab.com.
|
||||
This change applies to all installation methods: Omnibus GitLab, GitLab Helm chart, GitLab Operator, GitLab Docker images, and installation from source.
|
||||
Before upgrading to GitLab 19.0, please ensure you have [migrated](https://docs.gitlab.com/administration/postgresql/multiple_databases/) to two databases.
|
||||
documentation_url: https://docs.gitlab.com/ee/administration/postgresql/multiple_databases.html
|
||||
documentation_url: https://docs.gitlab.com/administration/postgresql/multiple_databases/
|
||||
|
@ -29,6 +29,6 @@
|
||||
# OTHER OPTIONAL FIELDS
|
||||
#
|
||||
tiers: [Premium, Ultimate] # (optional - may be required in the future) An array of tiers that the feature is available in currently. e.g., [Free, Silver, Gold, Core, Premium, Ultimate]
|
||||
documentation_url: https://docs.gitlab.com/ee/ci/environments/deployment_approvals.html # (optional) This is a link to the current documentation page
|
||||
documentation_url: https://docs.gitlab.com/ci/environments/deployment_approvals/ # (optional) This is a link to the current documentation page
|
||||
image_url: # (optional) This is a link to a thumbnail image depicting the feature
|
||||
video_url: # (optional) Use the youtube thumbnail URL with the structure of https://img.youtube.com/vi/UNIQUEID/hqdefault.jpg
|
||||
|
@ -9,4 +9,4 @@
|
||||
Go versions 1.20.7 and later add a `maxRSAKeySize` constant that limits RSA keys to a maximum of 8192 bits. As a result, RSA keys larger than 8192 bits will no longer work with GitLab. Any RSA keys larger than 8192 bits must be regenerated at a smaller size.
|
||||
|
||||
You might notice this issue because your logs include an error like `tls: server sent certificate containing RSA key larger than 8192 bits`. To test the length of your key, use this command: `openssl rsa -in <your-key-file> -text -noout | grep "Key:"`.
|
||||
documentation_url: https://docs.gitlab.com/ee/user/ssh.html
|
||||
documentation_url: https://docs.gitlab.com/user/ssh/
|
||||
|
@ -8,4 +8,4 @@
|
||||
body: | # (required) Do not modify this line, instead modify the lines below.
|
||||
The GraphQL field `Vulnerability.hasSolutions` is deprecated and will be removed in GitLab 17.0.
|
||||
Use `Vulnerability.hasRemediations` instead.
|
||||
documentation_url: https://docs.gitlab.com/ee/api/graphql/reference/#vulnerability
|
||||
documentation_url: https://docs.gitlab.com/api/graphql/reference/#vulnerability
|
||||
|
@ -8,4 +8,4 @@
|
||||
body: |
|
||||
The ability for Developers to change the status of vulnerabilities is now deprecated. We plan to make a breaking change in the upcoming GitLab 17.0 release to remove this ability from the Developer role. Users who wish to continue to grant this permission to developers can [create a custom role](https://docs.gitlab.com/user/permissions/#custom-roles) for their developers and add in the `admin_vulnerability` permission to give them this access.
|
||||
tiers: [Gold, Ultimate]
|
||||
documentation_url: https://docs.gitlab.com/ee/user/permissions.html#custom-roles
|
||||
documentation_url: https://docs.gitlab.com/user/permissions/#custom-roles
|
||||
|
@ -47,6 +47,6 @@
|
||||
# OTHER OPTIONAL FIELDS
|
||||
#
|
||||
tiers: # (optional - may be required in the future) An array of tiers that the feature is available in currently. e.g., [Free, Silver, Gold, Core, Premium, Ultimate]
|
||||
documentation_url: "https://docs.gitlab.com/ee/ci/jobs/ci_job_token.html#add-a-group-or-project-to-the-job-token-allowlist" # (optional) This is a link to the current documentation page
|
||||
documentation_url: "https://docs.gitlab.com/ci/jobs/ci_job_token/#add-a-group-or-project-to-the-job-token-allowlist" # (optional) This is a link to the current documentation page
|
||||
image_url: # (optional) This is a link to a thumbnail image depicting the feature
|
||||
video_url: # (optional) Use the youtube thumbnail URL with the structure of https://img.youtube.com/vi/UNIQUEID/hqdefault.jpg
|
||||
|
@ -7,4 +7,4 @@
|
||||
issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/422414 # (required) Link to the deprecation issue in GitLab
|
||||
body: | # (required) Do not modify this line, instead modify the lines below.
|
||||
In [Support additional filters for scan result policies](https://gitlab.com/groups/gitlab-org/-/epics/6826#note_1341377224), we broke the `newly_detected` field into two options: `new_needs_triage` and `new_dismissed`. By including both options in the security policy YAML, you will achieve the same result as the original `newly_detected` field. However, you may now narrow your filter to ignore findings that have been dismissed by only using `new_needs_triage`.
|
||||
documentation_url: https://docs.gitlab.com/ee/user/application_security/policies/merge_request_approval_policies.html#scan_finding-rule-type # (optional) This is a link to the current documentation page
|
||||
documentation_url: https://docs.gitlab.com/user/application_security/policies/merge_request_approval_policies/#scan_finding-rule-type # (optional) This is a link to the current documentation page
|
||||
|
@ -14,4 +14,4 @@
|
||||
|
||||
1. Move instances from openSUSE Leap 15.4 to openSUSE Leap 15.5.
|
||||
1. Switch from the openSUSE Leap 15.4 GitLab-provided packages to the openSUSE Leap 15.5 GitLab-provided packages.
|
||||
documentation_url: https://docs.gitlab.com/ee/administration/package_information/supported_os.html
|
||||
documentation_url: https://docs.gitlab.com/administration/package_information/supported_os/
|
||||
|
@ -13,4 +13,4 @@
|
||||
and the ability to filter by license on the project and group Dependency List, you can now
|
||||
access all of the licenses your project or group is using on the Dependency List.
|
||||
tiers: [Gold, Ultimate]
|
||||
documentation_url: https://docs.gitlab.com/ee/user/compliance/license_list.html
|
||||
documentation_url: https://docs.gitlab.com/user/compliance/license_list/
|
||||
|
@ -14,4 +14,4 @@
|
||||
|
||||
1. Move servers running GitLab instances from Ubuntu 18.04 to either Ubuntu 20.04 or Ubuntu 22.04.
|
||||
1. Upgrade your GitLab instances using Linux package for the version of Ubuntu you're now using.
|
||||
documentation_url: https://docs.gitlab.com/ee/administration/package_information/supported_os.html
|
||||
documentation_url: https://docs.gitlab.com/administration/package_information/supported_os/
|
||||
|
@ -8,4 +8,4 @@
|
||||
body: | # (required) Do not modify this line, instead modify the lines below.
|
||||
In [Support additional filters for scan result policies](https://gitlab.com/groups/gitlab-org/-/epics/6826#note_1341377224), we broke the `newly_detected` field into two options: `new_needs_triage` and `new_dismissed`. By including both options in the security policy YAML, you will achieve the same result as the original `newly_detected` field. However, you may now narrow your filter to ignore findings that have been dismissed by only using `new_needs_triage`.
|
||||
Based on discussion in [epic 10203](https://gitlab.com/groups/gitlab-org/-/epics/10203#note_1545826313), we have changed the name of the `match_on_inclusion` field to `match_on_inclusion_license` for more clarity in the YAML definition.
|
||||
documentation_url: https://docs.gitlab.com/ee/user/application_security/policies/merge_request_approval_policies.html#scan_finding-rule-type # (optional) This is a link to the current documentation page
|
||||
documentation_url: https://docs.gitlab.com/user/application_security/policies/merge_request_approval_policies/#scan_finding-rule-type # (optional) This is a link to the current documentation page
|
||||
|
@ -35,7 +35,7 @@
|
||||
# like [Free, Silver, Gold, Core, Premium, Ultimate]
|
||||
tiers: [Free, Premium, Ultimate]
|
||||
# Links to documentation and thumbnail image
|
||||
documentation_url: https://docs.gitlab.com/ee/api/graphql/reference/#mutationcijobtokenscoperemoveproject
|
||||
documentation_url: https://docs.gitlab.com/api/graphql/reference/#mutationcijobtokenscoperemoveproject
|
||||
image_url:
|
||||
# Use the youtube thumbnail URL with the structure of https://img.youtube.com/vi/UNIQUEID/hqdefault.jpg
|
||||
video_url:
|
||||
|
@ -13,4 +13,4 @@
|
||||
In the future we will support the most recent version of OWASP top 10 for grouping on the vulnerability report.
|
||||
Along with this change we are also deprecating and removing the 2017 GraphQL API enums which the feature uses. Additional details are included in [this issue](https://gitlab.com/gitlab-org/gitlab/-/issues/488433).
|
||||
tiers: [Gold, Ultimate]
|
||||
documentation_url: https://docs.gitlab.com/ee/user/application_security/vulnerability_report/#group-vulnerabilities
|
||||
documentation_url: https://docs.gitlab.com/user/application_security/vulnerability_report/#group-vulnerabilities
|
||||
|
@ -32,7 +32,7 @@
|
||||
# like [Free, Silver, Gold, Core, Premium, Ultimate]
|
||||
tiers:
|
||||
# Links to documentation and thumbnail image
|
||||
documentation_url: https://docs.gitlab.com/ee/ci/yaml/workflow.html#workflowrules-templates
|
||||
documentation_url: https://docs.gitlab.com/ci/yaml/workflow/#workflowrules-templates
|
||||
image_url:
|
||||
# Use the youtube thumbnail URL with the structure of https://img.youtube.com/vi/UNIQUEID/hqdefault.jpg
|
||||
video_url:
|
||||
|
@ -8,6 +8,6 @@
|
||||
stage: secure # (optional - may be required in the future) String value of the stage that the feature was created in. e.g., Growth
|
||||
tiers: premium, ultimate # (optional - may be required in the future) An array of tiers that the feature is available in currently. e.g., [Free, Silver, Gold, Core, Premium, Ultimate]
|
||||
issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/470119 # (optional) This is a link to the deprecation issue in GitLab
|
||||
documentation_url: https://docs.gitlab.com/ee/user/project/integrations/git_guardian.html#skip-secret-detection # (optional) This is a link to the current documentation page
|
||||
documentation_url: https://docs.gitlab.com/user/project/integrations/git_guardian/#skip-secret-detection # (optional) This is a link to the current documentation page
|
||||
image_url: # (optional) This is a link to a thumbnail image depicting the feature
|
||||
video_url: # (optional) Use the youtube thumbnail URL with the structure of https://img.youtube.com/vi/UNIQUEID/hqdefault.jpg
|
||||
|
@ -27,7 +27,7 @@
|
||||
# like [Free, Silver, Gold, Core, Premium, Ultimate]
|
||||
tiers:
|
||||
# Links to documentation and thumbnail image
|
||||
documentation_url: https://docs.gitlab.com/ee/api/graphql/reference/#queryaddonpurchase
|
||||
documentation_url: https://docs.gitlab.com/api/graphql/reference/#queryaddonpurchase
|
||||
image_url:
|
||||
# Use the youtube thumbnail URL with the structure of https://img.youtube.com/vi/UNIQUEID/hqdefault.jpg
|
||||
video_url:
|
||||
|
@ -27,7 +27,7 @@
|
||||
# like [Free, Silver, Gold, Core, Premium, Ultimate]
|
||||
tiers:
|
||||
# Links to documentation and thumbnail image
|
||||
documentation_url: https://docs.gitlab.com/ee/api/graphql/reference/#namespace
|
||||
documentation_url: https://docs.gitlab.com/api/graphql/reference/#namespace
|
||||
image_url:
|
||||
# Use the youtube thumbnail URL with the structure of https://img.youtube.com/vi/UNIQUEID/hqdefault.jpg
|
||||
video_url:
|
||||
|
@ -26,4 +26,4 @@
|
||||
Offline deployments should review the [specific scanner instructions](https://docs.gitlab.com/user/application_security/offline_deployments/#specific-scanner-instructions)
|
||||
to ensure the correct locations are being used to mirror the required scanner images.
|
||||
tiers: [Free, Premium, Ultimate]
|
||||
documentation_url: https://docs.gitlab.com/ee/user/application_security/#vulnerability-scanner-maintenance
|
||||
documentation_url: https://docs.gitlab.com/user/application_security/#vulnerability-scanner-maintenance
|
||||
|
@ -15,4 +15,4 @@
|
||||
Update all references to `ciMinutesUsed` from these types to `ciDuration`.
|
||||
|
||||
tiers: Ultimate
|
||||
documentation_url: https://docs.gitlab.com/ee/api/graphql/reference/#cirunnerusage
|
||||
documentation_url: https://docs.gitlab.com/api/graphql/reference/#cirunnerusage
|
||||
|
@ -29,7 +29,7 @@
|
||||
# like [Free, Silver, Gold, Core, Premium, Ultimate]
|
||||
tiers:
|
||||
# Links to documentation and thumbnail image
|
||||
documentation_url: https://docs.gitlab.com/ee/api/runners.html#create-a-runner # (optional) This is a link to the current documentation page
|
||||
documentation_url: https://docs.gitlab.com/api/runners/#create-a-runner # (optional) This is a link to the current documentation page
|
||||
image_url:
|
||||
# Use the youtube thumbnail URL with the structure of https://img.youtube.com/vi/UNIQUEID/hqdefault.jpg
|
||||
video_url:
|
||||
|
@ -17,4 +17,4 @@
|
||||
- Stop using the old mutation name `setPreReceiveSecretDetection`. Instead, use the name `setSecretPushProtection`.
|
||||
- Change any references to the field `pre_receive_secret_detection_enabled` to `secret_push_protection_enabled`.
|
||||
|
||||
documentation_url: https://docs.gitlab.com/ee/api/graphql/reference/#mutationsetsecretpushprotection
|
||||
documentation_url: https://docs.gitlab.com/api/graphql/reference/#mutationsetsecretpushprotection
|
||||
|
@ -7,7 +7,7 @@
|
||||
# not the removal milestone.
|
||||
#
|
||||
# See the deprecation guidelines to confirm your understanding of the terminology:
|
||||
# https://docs.gitlab.com/ee/development/deprecation_guidelines/#terminology
|
||||
# https://docs.gitlab.com/development/deprecation_guidelines/#terminology
|
||||
#
|
||||
# If an End of Support period applies, see the OPTIONAL section below.
|
||||
#
|
||||
|
@ -36,7 +36,7 @@
|
||||
# like [Free, Silver, Gold, Core, Premium, Ultimate]
|
||||
tiers: Ultimate
|
||||
# Links to documentation and thumbnail image
|
||||
documentation_url: https://docs.gitlab.com/ee/user/application_security/dependency_scanning/#javascript
|
||||
documentation_url: https://docs.gitlab.com/user/application_security/dependency_scanning/#javascript
|
||||
image_url:
|
||||
# Use the youtube thumbnail URL with the structure of https://img.youtube.com/vi/UNIQUEID/hqdefault.jpg
|
||||
video_url:
|
||||
|
@ -35,7 +35,7 @@
|
||||
# like [Free, Silver, Gold, Core, Premium, Ultimate]
|
||||
tiers: Ultimate
|
||||
# Links to documentation and thumbnail image
|
||||
documentation_url: https://docs.gitlab.com/ee/user/application_security/vulnerabilities/#resolve-a-vulnerability
|
||||
documentation_url: https://docs.gitlab.com/user/application_security/vulnerabilities/#resolve-a-vulnerability
|
||||
image_url:
|
||||
# Use the youtube thumbnail URL with the structure of https://img.youtube.com/vi/UNIQUEID/hqdefault.jpg
|
||||
video_url:
|
||||
|
@ -15,6 +15,6 @@
|
||||
In most cases, the 45-second value was higher than the timeout value of many scanner functions. The dynamically calculated value makes the `DAST_DEVTOOLS_API_TIMEOUT` variable more useful by increasing the number of cases it applies to.
|
||||
end_of_support_milestone:
|
||||
tiers: [Ultimate]
|
||||
documentation_url: https://docs.gitlab.com/ee/user/application_security/dast/browser/configuration/variables.html
|
||||
documentation_url: https://docs.gitlab.com/user/application_security/dast/browser/configuration/variables/
|
||||
image_url:
|
||||
video_url:
|
||||
|
@ -16,6 +16,6 @@
|
||||
Removing these two variables will simplify DAST configuration, and provide a better onboarding experience for users.
|
||||
end_of_support_milestone:
|
||||
tiers: [Ultimate]
|
||||
documentation_url: https://docs.gitlab.com/ee/user/application_security/dast/browser/configuration/variables.html
|
||||
documentation_url: https://docs.gitlab.com/user/application_security/dast/browser/configuration/variables/
|
||||
image_url:
|
||||
video_url:
|
||||
|
@ -20,4 +20,4 @@
|
||||
|
||||
- By default, the template will run scan jobs in branch pipelines.
|
||||
- You'll be able to set the CI/CD variable `AST_ENABLE_MR_PIPELINES: true` to use MR pipelines instead when an MR is open. The implementation of this new variable is tracked in [issue 410880](https://gitlab.com/gitlab-org/gitlab/-/issues/410880).
|
||||
documentation_url: https://docs.gitlab.com/ee/user/application_security/detect/roll_out_security_scanning.html#use-security-scanning-tools-with-merge-request-pipelines
|
||||
documentation_url: https://docs.gitlab.com/user/application_security/detect/roll_out_security_scanning/#use-security-scanning-tools-with-merge-request-pipelines
|
||||
|
@ -19,6 +19,6 @@
|
||||
To continue showing these findings, you must configure the `CS_SEVERITY_THRESHOLD` variable to the desired level.
|
||||
end_of_support_milestone:
|
||||
tiers: [Free, Premium, Ultimate]
|
||||
documentation_url: https://docs.gitlab.com/ee/user/application_security/container_scanning/
|
||||
documentation_url: https://docs.gitlab.com/user/application_security/container_scanning/
|
||||
image_url:
|
||||
video_url:
|
||||
|
@ -31,4 +31,4 @@
|
||||
the maintenance burden as they start to drift in functionality.
|
||||
|
||||
You shouldn't experience any impact as a result of this change, as these are endpoints that were used internally.
|
||||
documentation_url: https://docs.gitlab.com/ee/development/internal_api/gitlab_subscriptions.html
|
||||
documentation_url: https://docs.gitlab.com/development/internal_api/gitlab_subscriptions/
|
||||
|
@ -14,4 +14,4 @@
|
||||
The REST API endpoint `pre_receive_secret_detection_enabled` is deprecated in favor of `secret_push_protection_enabled`. We are renaming some API fields to reflect the name change of the feature `pre_receive_secret_detection` to `secret_push_protection`.
|
||||
To avoid breaking workflows that use the old name, you should stop using the `pre_receive_secret_detection_enabled` endpoint before GitLab 18.0. Instead, use the new `secret_push_protection_enabled` endpoint.
|
||||
tiers: ultimate
|
||||
documentation_url: https://docs.gitlab.com/ee/api/projects.html#secret-push-protection-status
|
||||
documentation_url: https://docs.gitlab.com/api/projects/#secret-push-protection-status
|
||||
|
@ -20,4 +20,4 @@
|
||||
1. Pass the artifacts you want to scan to the analyzer.
|
||||
end_of_support_milestone: 18.0
|
||||
tiers: [Free, Silver, Gold, Core, Premium, Ultimate]
|
||||
documentation_url: https://docs.gitlab.com/ee/user/application_security/sast/troubleshooting.html#project-couldnt-be-built
|
||||
documentation_url: https://docs.gitlab.com/user/application_security/sast/troubleshooting/#project-couldnt-be-built
|
||||
|
@ -7,7 +7,7 @@
|
||||
# not the removal milestone.
|
||||
#
|
||||
# See the deprecation guidelines to confirm your understanding of the terminology:
|
||||
# https://docs.gitlab.com/ee/development/deprecation_guidelines/#terminology
|
||||
# https://docs.gitlab.com/development/deprecation_guidelines/#terminology
|
||||
#
|
||||
# If an End of Support period applies, see the OPTIONAL section below.
|
||||
#
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user