Skip to content

Commit 8abe394

Browse files
author
GitLab Bot
committed
Add latest changes from gitlab-org/gitlab@master
1 parent 6781910 commit 8abe394

File tree

82 files changed

+911
-421
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

82 files changed

+911
-421
lines changed

.eslint_todo/vue-no-unused-properties.mjs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,6 @@ export default {
377377
'ee/app/assets/javascripts/iterations/components/iteration_report.vue',
378378
'ee/app/assets/javascripts/linked_resources/components/resource_links_block.vue',
379379
'ee/app/assets/javascripts/logs/list/related_issues/related_issues_provider.vue',
380-
'ee/app/assets/javascripts/members/promotion_requests/components/app.vue',
381380
'ee/app/assets/javascripts/merge_requests/components/reviewers/approval_summary.vue',
382381
'ee/app/assets/javascripts/metrics/details/metrics_details.vue',
383382
'ee/app/assets/javascripts/metrics/details/metrics_line_chart.vue',

.gitlab/ci/docs.gitlab-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ docs code_quality:
7676
when: always
7777

7878
docs hugo_build:
79-
image: ${REGISTRY_HOST}/${REGISTRY_GROUP}/technical-writing/docs-gitlab-com/docs-gitlab-com-builder:hugo-0.142.0
79+
image: ${REGISTRY_HOST}/${REGISTRY_GROUP}/technical-writing/docs-gitlab-com/docs-gitlab-com-builder:hugo-0.145.0
8080
extends:
8181
- .default-retry
8282
- .docs:rules:docs-lint

.rubocop_todo/gitlab/bounded_contexts.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3530,7 +3530,6 @@ Gitlab/BoundedContexts:
35303530
- 'ee/lib/bulk_imports/projects/pipelines/push_rule_pipeline.rb'
35313531
- 'ee/lib/bulk_imports/projects/pipelines/vulnerabilities_pipeline.rb'
35323532
- 'ee/lib/delay.rb'
3533-
- 'ee/lib/duo_pro/bulk_user_assignment.rb'
35343533
- 'ee/lib/ee/bulk_imports/groups/stage.rb'
35353534
- 'ee/lib/ee/bulk_imports/projects/pipelines/issues_pipeline.rb'
35363535
- 'ee/lib/ee/bulk_imports/projects/stage.rb'

.rubocop_todo/layout/line_break_after_final_mixin.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ Layout/LineBreakAfterFinalMixin:
7979
- 'ee/lib/api/dependency_proxy/packages/maven.rb'
8080
- 'ee/lib/api/resource_iteration_events.rb'
8181
- 'ee/lib/api/resource_weight_events.rb'
82-
- 'ee/lib/duo_pro/bulk_user_assignment.rb'
8382
- 'ee/lib/ee/api/entities/project_push_rule.rb'
8483
- 'ee/lib/ee/gitlab/background_migration/create_compliance_standards_adherence.rb'
8584
- 'ee/lib/gitlab/auth/group_saml/identity_linker.rb'

GITALY_SERVER_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
d5b6a529fbff95ae2f8479a95ae375abaa497ae1
1+
5603e4787366e8a2b02491ab921364627efc3ed3

app/assets/javascripts/clusters_list/components/agent_token.vue

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,12 @@
11
<script>
22
import { GlAlert, GlFormInputGroup, GlLink, GlSprintf, GlIcon } from '@gitlab/ui';
3-
import { helpPagePath } from '~/helpers/help_page_helper';
43
import ModalCopyButton from '~/vue_shared/components/modal_copy_button.vue';
54
import CodeBlock from '~/vue_shared/components/code_block.vue';
65
import { generateAgentRegistrationCommand } from '../clusters_util';
76
import { I18N_AGENT_TOKEN, HELM_VERSION_POLICY_URL } from '../constants';
87
98
export default {
109
i18n: I18N_AGENT_TOKEN,
11-
advancedInstallPath: helpPagePath('user/clusters/agent/install/_index', {
12-
anchor: 'advanced-installation-method',
13-
}),
1410
HELM_VERSION_POLICY_URL,
1511
components: {
1612
GlAlert,
@@ -95,17 +91,5 @@ export default {
9591
:modal-id="modalId"
9692
/>
9793
</p>
98-
99-
<p>
100-
<strong>{{ $options.i18n.advancedInstallTitle }}</strong>
101-
</p>
102-
103-
<p>
104-
<gl-sprintf :message="$options.i18n.advancedInstallBody">
105-
<template #link="{ content }">
106-
<gl-link :href="$options.advancedInstallPath" target="_blank"> {{ content }}</gl-link>
107-
</template>
108-
</gl-sprintf>
109-
</p>
11094
</div>
11195
</template>

app/assets/javascripts/clusters_list/constants.js

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -98,18 +98,13 @@ export const I18N_AGENT_TOKEN = {
9898
),
9999
tokenSubtitle: s__('ClusterAgents|The agent uses the token to connect with GitLab.'),
100100

101-
basicInstallTitle: s__('ClusterAgents|Install using Helm (recommended)'),
101+
basicInstallTitle: s__('ClusterAgents|Install using Helm'),
102102
basicInstallBody: s__(
103103
'ClusterAgents|From a terminal, connect to your cluster and run this command. The token is included in the command.',
104104
),
105105
helmVersionText: s__(
106106
'ClusterAgents|Use a Helm version compatible with your Kubernetes version (see %{linkStart}Helm version support policy%{linkEnd}).',
107107
),
108-
109-
advancedInstallTitle: s__('ClusterAgents|Advanced installation methods'),
110-
advancedInstallBody: s__(
111-
'ClusterAgents|%{linkStart}View the documentation%{linkEnd} for advanced installation. Ensure you have your access token available.',
112-
),
113108
};
114109

115110
export const HELM_VERSION_POLICY_URL = 'https://helm.sh/docs/topics/version_skew/';

app/assets/javascripts/import_entities/import_groups/components/import_table.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -812,7 +812,7 @@ export default {
812812
class="import-table-bar gl-sticky gl-z-3 gl-flex-col gl-bg-subtle gl-px-5 md:gl-flex md:gl-flex-row md:gl-items-center md:gl-justify-between"
813813
>
814814
<div class="gl-flex gl-w-full gl-items-center gl-gap-4 gl-pb-4">
815-
<span data-test-id="selection-count">
815+
<span data-testid="selection-count">
816816
<gl-sprintf :message="__('%{count} selected')">
817817
<template #count>
818818
{{ selectedGroupsIds.length }}
@@ -885,7 +885,7 @@ export default {
885885
/>
886886
</template>
887887
<template #head(importTarget)="data">
888-
<span data-test-id="new-path-col">
888+
<span data-testid="new-path-col">
889889
<span class="gl-mr-2">{{ data.label }}</span
890890
><gl-icon
891891
v-gl-tooltip="s__('BulkImport|Path of the new group.')"

app/assets/javascripts/notes/components/comment_form.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ export default {
9898
[constants.ISSUE_NOTEABLE_TYPE]: this.$options.i18n.issue,
9999
[constants.EPIC_NOTEABLE_TYPE]: this.$options.i18n.epic,
100100
[constants.MERGE_REQUEST_NOTEABLE_TYPE]: this.$options.i18n.mergeRequest,
101+
[constants.INCIDENT_NOTEABLE_TYPE]: this.$options.i18n.incident,
101102
};
102103
103104
const noteableTypeKey =

app/assets/javascripts/notes/components/notes_app.vue

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,12 @@ export default {
161161
return this.sortDirection === constants.DESC;
162162
},
163163
noteableType() {
164+
if (this.noteableData.type?.toUpperCase() === constants.INCIDENT_NOTEABLE_TYPE) {
165+
return (
166+
this.noteableData.type.charAt(0).toUpperCase() +
167+
this.noteableData.type.slice(1).toLowerCase()
168+
);
169+
}
164170
return this.noteableData.noteableType;
165171
},
166172
previewNoteId() {

0 commit comments

Comments
 (0)