Add latest changes from gitlab-org/gitlab@master

This commit is contained in:
GitLab Bot 2024-05-28 00:20:39 +00:00
parent e1833ba983
commit 6ec7cde78e
220 changed files with 329 additions and 2233 deletions

View File

@ -73,19 +73,6 @@ Layout/ArgumentAlignment:
- 'ee/spec/requests/api/deployments_spec.rb'
- 'ee/spec/requests/api/dora/metrics_spec.rb'
- 'ee/spec/requests/api/epics_spec.rb'
- 'ee/spec/requests/api/graphql/mutations/epic_tree/reorder_spec.rb'
- 'ee/spec/requests/api/graphql/mutations/issues/set_weight_spec.rb'
- 'ee/spec/requests/api/graphql/mutations/iterations/cadences/create_spec.rb'
- 'ee/spec/requests/api/graphql/mutations/iterations/cadences/update_spec.rb'
- 'ee/spec/requests/api/graphql/mutations/iterations/create_spec.rb'
- 'ee/spec/requests/api/graphql/mutations/iterations/update_spec.rb'
- 'ee/spec/requests/api/graphql/mutations/projects/initialize_product_analytics_spec.rb'
- 'ee/spec/requests/api/graphql/mutations/projects/lock_path_spec.rb'
- 'ee/spec/requests/api/graphql/mutations/projects/set_compliance_framework_spec.rb'
- 'ee/spec/requests/api/graphql/mutations/quality_management/test_cases/create_spec.rb'
- 'ee/spec/requests/api/graphql/mutations/requirements_management/update_requirement_spec.rb'
- 'ee/spec/requests/api/graphql/mutations/security/finding/create_issue_spec.rb'
- 'ee/spec/requests/api/graphql/mutations/security/finding/revert_to_detected_spec.rb'
- 'ee/spec/requests/api/graphql/mutations/security_policy/assign_security_policy_project_spec.rb'
- 'ee/spec/requests/api/graphql/mutations/security_policy/create_security_policy_project_spec.rb'
- 'ee/spec/requests/api/graphql/mutations/security_policy/unassign_security_policy_project_spec.rb'

View File

@ -27,6 +27,7 @@ import {
NOT_AVAILABLE_SIZE,
MORE_ACTIONS_TEXT,
COPY_IMAGE_PATH_TITLE,
SIGNATURE_BADGE_TOOLTIP,
} from '../../constants/index';
import SignatureDetailsModal from './signature_details_modal.vue';
@ -78,6 +79,7 @@ export default {
MISSING_MANIFEST_WARNING_TOOLTIP,
MORE_ACTIONS_TEXT,
COPY_IMAGE_PATH_TITLE,
SIGNATURE_BADGE_TOOLTIP,
},
data() {
return {
@ -192,7 +194,7 @@ export default {
</template>
<template v-if="signatures.length" #left-after-toggle>
<gl-badge icon="check-circle" variant="success" class="gl-ml-4">
<gl-badge v-gl-tooltip.d0="$options.i18n.SIGNATURE_BADGE_TOOLTIP" class="gl-ml-4">
{{ s__('ContainerRegistry|Signed') }}
</gl-badge>
</template>

View File

@ -22,15 +22,9 @@ export const ROW_SCHEDULED_FOR_DELETION = s__(
export const FETCH_IMAGES_LIST_ERROR_MESSAGE = s__(
'ContainerRegistry|Something went wrong while fetching the repository list.',
);
export const FETCH_TAGS_LIST_ERROR_MESSAGE = s__(
'ContainerRegistry|Something went wrong while fetching the tags list.',
);
export const DELETE_IMAGE_ERROR_MESSAGE = s__(
'ContainerRegistry|Something went wrong while scheduling %{title} for deletion. Please try again.',
);
export const ASYNC_DELETE_IMAGE_ERROR_MESSAGE = s__(
`ContainerRegistry|There was an error during the deletion of this image repository, please try again.`,
);
export const DELETE_IMAGE_SUCCESS_MESSAGE = s__(
'ContainerRegistry|%{title} was successfully scheduled for deletion',
);
@ -38,6 +32,9 @@ export const EMPTY_RESULT_TITLE = s__('ContainerRegistry|Sorry, your filter prod
export const EMPTY_RESULT_MESSAGE = s__(
'ContainerRegistry|To widen your search, change or remove the filters above.',
);
export const SIGNATURE_BADGE_TOOLTIP = s__(
'ContainerRegistry|GitLab is unable to validate this signature automatically. Validate the signature manually before trusting it.',
);
export const COPY_IMAGE_PATH_TITLE = s__('ContainerRegistry|Copy image path');

View File

@ -1,11 +1,8 @@
<script>
import { GlFormTextarea } from '@gitlab/ui';
import setupCollapsibleInputs from '~/snippet/collapsible_input';
import MarkdownField from '~/vue_shared/components/markdown/field.vue';
export default {
components: {
GlFormTextarea,
MarkdownField,
},
props: {
@ -23,49 +20,34 @@ export default {
default: '',
},
},
mounted() {
setupCollapsibleInputs();
},
};
</script>
<template>
<div class="form-group js-description-input">
<div class="form-group">
<label for="snippet-description">{{ s__('Snippets|Description (optional)') }}</label>
<div class="js-collapsible-input">
<div class="js-collapsed" :class="{ '!gl-hidden': value }">
<gl-form-textarea
class="form-control"
rows="2"
no-resize
<markdown-field
:add-spacing-classes="false"
:markdown-preview-path="markdownPreviewPath"
:markdown-docs-path="markdownDocsPath"
:textarea-value="value"
>
<template #textarea>
<textarea
id="snippet-description"
ref="textarea"
:value="value"
rows="3"
class="note-textarea js-gfm-input js-autosize markdown-area !gl-min-h-0"
dir="auto"
data-testid="snippet-description-field"
data-supports-quick-actions="false"
:aria-label="__('Description')"
:placeholder="s__('Snippets|Describe what your snippet does or how to use it…')"
data-testid="description-placeholder"
/>
</div>
<markdown-field
class="js-expanded"
:class="{ '!gl-hidden': !value }"
:add-spacing-classes="false"
:markdown-preview-path="markdownPreviewPath"
:markdown-docs-path="markdownDocsPath"
:textarea-value="value"
>
<template #textarea>
<textarea
id="snippet-description"
ref="textarea"
:value="value"
class="note-textarea js-gfm-input js-autosize markdown-area"
dir="auto"
data-testid="snippet-description-field"
data-supports-quick-actions="false"
:aria-label="__('Description')"
:placeholder="s__('Snippets|Describe what your snippet does or how to use it…')"
v-bind="$attrs"
@input="$emit('input', $event.target.value)"
>
</textarea>
</template>
</markdown-field>
</div>
v-bind="$attrs"
@input="$emit('input', $event.target.value)"
>
</textarea>
</template>
</markdown-field>
</div>
</template>

View File

@ -6,7 +6,7 @@ class Projects::HooksController < Projects::ApplicationController
# Authorize
before_action :authorize_read_hook!, only: [:index, :show]
before_action :authorize_admin_hook!, except: [:index, :show]
before_action -> { check_rate_limit!(:project_testing_hook, scope: [@project, current_user]) }, only: :test
before_action -> { check_rate_limit!(:web_hook_test, scope: [@project, current_user]) }, only: :test
respond_to :html

View File

@ -65,8 +65,6 @@ events:
unique: user.id
- name: g_analytics_ci_cd_change_failure_rate
unique: user.id
- name: g_metrics_comparison_page
unique: user.id
distribution:
- ce
- ee

View File

@ -51,8 +51,6 @@ events:
unique: user.id
- name: p_analytics_ci_cd_lead_time
unique: user.id
- name: g_metrics_comparison_page
unique: user.id
distribution:
- ce
- ee

View File

@ -190,10 +190,8 @@ jq --raw-output 'select(.remote_ip != "127.0.0.1") | [.remote_ip, .username, .ro
```
This example shows a custom tool or script causing an unexpectedly high number of requests.
User agents in this situation can be:
- Third party libraries like `python-requests` or `curl`.
- [GitLab CLI clients](https://about.gitlab.com/partners/technology-partners/#cli-clients).
User agents in this situation can be specialized [third-party clients](../../api/rest/index.md#third-party-clients),
or general tools like `curl`.
You can also [use `fast-stats top`](#parsing-gitlab-logs-with-jq) to extract performance statistics for those users or bots.

View File

@ -78,9 +78,6 @@ They are not recommendations.
['feature_category=database,gitaly,global_search&urgency=throttled', 'throttled'],
# Route all workers having contact with outside world to a `network-intenstive` queue
['has_external_dependencies=true|feature_category=hooks|tags=network', 'network-intensive'],
# Route all import workers to the queues generated by the worker name, for
# example, JiraImportWorker to `jira_import`, SVNWorker to `svn_worker`
['feature_category=import', 'import'],
# Wildcard matching, route the rest to `default` queue
['*', 'default']
]

View File

@ -1710,7 +1710,7 @@ DELETE /groups/:id/hooks/:hook_id
Trigger a test hook for a specified group.
This endpoint has a special rate limit of three requests per minute per group hook.
This endpoint has a rate limit of five requests per minute for each group and authenticated user.
To disable this limit on self-managed GitLab and GitLab Dedicated, an administrator can
[disable the feature flag](../administration/feature_flags.md) named `web_hook_test_api_endpoint_rate_limit`.

View File

@ -2927,7 +2927,8 @@ is returned.
Trigger a test hook for a specified project.
In GitLab 17.0 and later, this endpoint has a special rate limit of three requests per minute per project hook.
In GitLab 17.0 and later, this endpoint has a special rate limit. In GitLab 17.0 the rate was three requests per minute for each project hook.
In GitLab 17.1 this was changed to five requests per minute for each project and authenticated user.
To disable this limit on self-managed GitLab and GitLab Dedicated, an administrator can
[disable the feature flag](../administration/feature_flags.md) named `web_hook_test_api_endpoint_rate_limit`.

View File

@ -804,6 +804,9 @@ Report bugs and feature proposals to the respective projects.
For questions about these integrations, use the [GitLab community forum](https://forum.gitlab.com/).
Administrators can monitor usage of these API clients by
[parsing logs](../../administration/logs/log_parsing.md#print-top-api-user-agents).
### `C#`
- [`GitLabApiClient`](https://github.com/nmklotas/GitLabApiClient)

View File

@ -1,11 +0,0 @@
---
redirect_to: 'infrastructure/deployments.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](infrastructure/deployments.md).
<!-- This redirect file can be deleted after <2024-05-16>. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: 'rejected/deployment-architecture.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](rejected/deployment-architecture.md).
<!-- This redirect file can be deleted after <2024-05-16>. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -320,7 +320,7 @@ Multiple stages, Canary and Main, are leveraged to help with risk management of
**What will GitLab.com Cells do:**
[Delivery](https://handbook.gitlab.com/handbook/engineering/infrastructure/team/delivery/) remains responsible for initial development of this.
[The current blueprint](../application-deployment.md) that surrounds this work introduces a concept of Ring deployments to manage risk.
[The current blueprint](deployments.md) that surrounds this work introduces a concept of Ring deployments to manage risk.
### Subnets

View File

@ -37,7 +37,7 @@ This should enable everyone to see locally any change in an IDE being sent to th
1. Set the AI Gateway URL environmental variable by running `export AI_GATEWAY_URL=http://localhost:5052`.
1. Run your GDK server with `gdk start` if it's not already running.
1. [Setup AI Gateway](https://gitlab.com/gitlab-org/modelops/applied-ml/code-suggestions/ai-assist):
1. Run the AI Gateway as part of your GDK
1. Run the AI Gateway as part of your GDK
1. Follow the "How to set up and validate locally" steps in [this MR](https://gitlab.com/gitlab-org/gitlab-development-kit/-/merge_requests/3646#how-to-set-up-and-validate-locally)
1. Be sure to add your `ANTHROPIC_API_KEY` to your GDK's `gitlab-ai-gateway/.env` file
1. Run the AI Gateway externally
@ -73,7 +73,7 @@ with the deployed staging AI Gateway. To do this:
```
1. Restart the GDK.
1. Ensure you followed the necessary [steps to enable the Code Suggestions feature](../../user/project/repository/code_suggestions/self_managed.md).
1. Ensure you followed the necessary [steps to enable the Code Suggestions feature](../../user/project/repository/code_suggestions/index.md).
1. Test out the Code Suggestions feature by opening the Web IDE for a project.
### Setup instructions to use GDK with the Code Suggestions Add-on
@ -97,4 +97,4 @@ To set up your GDK for local development using the add-on, please follow these s
1. Remove any active license.
1. Add the new activation code.
1. Inside your GDK, navigate to Admin Area > GitLab Duo Pro, go to `/admin/code_suggestions`
1. Filter users to find `root` and click the toggle to assign a GitLab Duo Pro add-on seat to the root user
1. Filter users to find `root` and click the toggle to assign a GitLab Duo Pro add-on seat to the root user

View File

@ -1,11 +0,0 @@
---
redirect_to: 'first_contribution/index.md'
remove_date: '2024-05-05'
---
This document was moved to [another location](first_contribution/index.md).
<!-- This redirect file can be deleted after <2024-05-05>. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -47,7 +47,7 @@ that are coded across multiple repositories.
| [GraphQL API resources](../../../api/graphql/reference/index.md) | [GraphQL API style guide](../../api_graphql_styleguide.md#documentation-and-schema) | [Import and Integrate](https://handbook.gitlab.com/handbook/engineering/development/dev/manage/import-and-integrate/) |
| [Audit event types](../../../administration/audit_event_types.md) | [Audit event development guidelines](../../audit_event_guide/index.md) | [Compliance](https://handbook.gitlab.com/handbook/engineering/development/sec/govern/compliance/) |
| [Available custom role permissions](../../../user/custom_roles/abilities.md) | [Generated by Rake task](https://gitlab.com/gitlab-org/gitlab/-/blob/master/tooling/custom_roles/docs/templates/custom_abilities.md.erb) | [Authorization](https://handbook.gitlab.com/handbook/product/categories/#authorization-group)|
| DAST vulnerability check documentation ([Example](../../../user/application_security/dast/checks/798.19.md)) | [How to generate the Markdown](https://gitlab.com/gitlab-org/security-products/dast-cwe-checks/-/blob/main/doc/how-to-generate-the-markdown-documentation.md) | [Dynamic Analysis](https://handbook.gitlab.com/handbook/product/categories/#dynamic-analysis-group) |
| DAST vulnerability check documentation ([Example](../../../user/application_security/dast/browser/checks/798.19.md)) | [How to generate the Markdown](https://gitlab.com/gitlab-org/security-products/dast-cwe-checks/-/blob/main/doc/how-to-generate-the-markdown-documentation.md) | [Dynamic Analysis](https://handbook.gitlab.com/handbook/product/categories/#dynamic-analysis-group) |
| Blueprints ([Example](../../../architecture/blueprints/ci_data_decay/pipeline_partitioning.md)) | | |
| [The docs homepage](../../../index.md) | | [Technical Writing](https://handbook.gitlab.com/handbook/product/ux/technical-writing/) |

View File

@ -1,11 +0,0 @@
---
redirect_to: 'testing/index.md'
remove_date: '2024-05-19'
---
This document was moved to [another location](testing/index.md).
<!-- This redirect file can be deleted after <2024-05-19>. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -116,6 +116,52 @@ For help on how to do it, refer to [this guide](best_practices.md#quick-checklis
You can also check accessibility sections in [Pajamas components' documentation](https://design.gitlab.com/components/overview).
If any of the errors require global changes, create a follow-up issue and assign these labels: `accessability`, `WG::product accessibility`.
### Good practices
Adding accessibility checks in feature tests is easier if you have domain knowledge from the product area in question.
However, there are a few things that can help you contribute to accessibility tests.
#### Find a page from a test
When you don't have the page URL, you can start by running a feature spec in preview mode. To do this, add `WEBDRIVER_HEADLESS=0` to the beginning of the command that runs the tests. You can also pair it with `live_debug` to stop the browser right inside any test case with a `:js` tag (see the documentation on [testing best practices](../../testing_guide/best_practices.md#run-js-spec-in-a-visible-browser)).
#### What parts of a page to add accessibility tests for
In most cases you do not want to test accessibility of a whole page. There are a couple of reasons:
1. We have elements that appear on every application view, such as breadcrumbs or main navigation. Including them in every feature spec takes up quite a lot of resources and multiplies something that can be done just once. These elements have their own feature specs and that's where we want to test them.
1. If a feature spec covers a whole view, the best practice would be to scope it to `<main id="content-body">` element. Here's an example of such test case:
```ruby
it "passes axe automated accessibility testing" do
expect(page).to be_axe_clean.within('#content-body')
end
```
1. If a feature test covers only a part of a page, like a section that includes some components, keep the test scoped to that section. If possible, use the same selector that the feature spec uses for its test cases. Here's an example of such test case:
```ruby
it 'passes axe automated accessibility testing for todo' do
expect(page).to be_axe_clean.within(todo_selector)
end
```
#### Test output not specific enough
When axe test case fails, it outputs the violation found and an element that it concerns. Because we often use Pajamas Components,
it may happen that the element will be a `<div>` without any annotation that could help you identify it. However, we can take
advantage of a fact that axe_core rules is used both for Ruby tests and Deque browser extension - axe devTools. They both
provide the same output.
1. Make sure you have axe DevTools extension installed in a browser of your choice. See [axe DevTools official website for more information](https://www.deque.com/axe/browser-extensions/).
1. Navigate to the view you're testing with a feature test.
1. Open axe DevTools extension and run a scan of the page.
1. Expand found issues and use Highlight option to see the elements on the page for each violation.
### Known accessibility violations
This section documents violations where a recommendation differs with the [design system](https://design.gitlab.com/):

View File

@ -1,11 +0,0 @@
---
redirect_to: '../../user/project/merge_requests/cherry_pick_changes.md'
remove_date: '2024-05-14'
---
This document was moved to [another location](../../user/project/merge_requests/cherry_pick_changes.md).
<!-- This redirect file can be deleted after <2024-05-14>. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../undo.md'
remove_date: '2024-05-20'
---
This document was moved to [another location](../undo.md).
<!-- This redirect file can be deleted after <2024-05-20>. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -55,14 +55,14 @@ To run a DAST authenticated scan:
#### Form authentication
- You are using either the [DAST proxy-based analyzer](proxy-based.md) or the [DAST browser-based analyzer](browser_based.md).
- You are using either the [DAST proxy-based analyzer](proxy-based.md) or the [DAST browser-based analyzer](browser/index.md).
- You know the URL of the login form of your application. Alternatively, you know how to go to the login form from the authentication URL (see [clicking to go to the login form](#click-to-go-to-the-login-form)).
- You know the [selectors](#finding-an-elements-selector) of the username and password HTML fields that DAST uses to input the respective values.
- You know the element's [selector](#finding-an-elements-selector) that submits the login form when selected.
#### HTTP authentication
- You must be using the [DAST browser-based analyzer](browser_based.md).
- You must be using the [DAST browser-based analyzer](browser/index.md).
### Available CI/CD variables

View File

@ -15,7 +15,7 @@ information, configure the [authentication report](#configure-the-authentication
For more information about particular error messages or situations see [known problems](#known-problems).
The browser-based analyzer is used to authenticate the user. For advanced troubleshooting, see [browser-based troubleshooting](browser_based_troubleshooting.md).
The browser-based analyzer is used to authenticate the user. For advanced troubleshooting, see [browser-based troubleshooting](browser/troubleshooting.md).
## Read the logs

View File

@ -1,11 +0,0 @@
---
redirect_to: 'browser/index.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](browser/index.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: 'browser/troubleshooting.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](browser/troubleshooting.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/1004.1.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/798.9.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/113.1.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/113.1.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/1336.1.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/1336.1.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/16.1.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/16.1.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/16.10.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/16.10.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/16.11.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/16.11.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/16.2.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/16.2.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/16.3.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/16.3.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/16.4.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/16.4.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/16.5.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/16.5.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/16.6.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/16.6.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/16.7.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/16.7.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/16.8.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/16.8.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/16.9.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/16.9.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/200.1.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/200.1.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/209.1.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/209.1.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/209.2.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/209.2.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/22.1.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/22.1.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/287.1.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/287.1.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/287.2.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/287.2.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/319.1.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/319.1.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/352.1.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/352.1.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/359.1.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/359.1.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/359.2.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/359.2.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/548.1.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/548.1.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/598.1.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/598.1.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/598.2.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/598.2.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/598.3.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/598.3.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/601.1.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/601.1.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/611.1.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/611.1.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/614.1.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/614.1.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/693.1.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/693.1.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/74.1.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/74.1.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/78.1.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/78.1.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/798.1.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/798.1.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/798.10.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/798.10.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/798.100.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/798.100.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/798.101.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/798.101.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/798.102.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/798.102.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/798.103.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/798.103.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/798.104.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/798.104.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/798.105.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/798.105.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/798.106.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/798.106.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/798.107.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/798.107.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/798.108.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/798.108.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/798.109.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/798.109.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/798.11.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/798.11.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/798.110.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/798.110.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/798.111.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/798.111.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/798.112.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/798.112.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/798.113.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/798.113.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/798.114.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/798.114.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/798.115.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/798.115.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/798.116.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/798.116.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/798.117.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/798.117.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/798.118.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/798.118.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/798.119.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/798.119.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/798.12.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/798.12.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/798.120.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/798.120.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/798.121.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/798.121.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/798.122.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/798.122.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/798.123.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/798.123.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/798.124.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/798.124.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/798.125.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/798.125.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/798.126.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/798.126.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/798.127.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/798.127.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/798.128.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/798.128.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/798.13.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/798.13.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/798.14.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/798.14.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/798.15.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/798.15.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/798.16.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/798.16.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/798.17.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/798.17.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/798.18.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/798.18.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

View File

@ -1,11 +0,0 @@
---
redirect_to: '../browser/checks/798.19.md'
remove_date: '2024-05-16'
---
This document was moved to [another location](../browser/checks/798.19.md).
<!-- This redirect file can be deleted after 2024-05-16. -->
<!-- Redirects that point to other docs in the same project expire in three months. -->
<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->

Some files were not shown because too many files have changed in this diff Show More