From 837e5eba97bd9f75e8b3724f9d519e7a4114cff3 Mon Sep 17 00:00:00 2001 From: GitLab Bot Date: Thu, 27 Jun 2024 06:20:11 +0000 Subject: [PATCH] Add latest changes from gitlab-org/gitlab@master --- GITALY_SERVER_VERSION | 2 +- GITLAB_PAGES_VERSION | 2 +- .../components/ci_variable_table.vue | 39 ++-- .../application_settings/ci_cd.html.haml | 2 +- .../show_role_details_in_drawer.yml | 6 +- db/docs/deployments.yml | 10 + ...4014810_drop_unused_deployments_indexes.rb | 24 +++ db/schema_migrations/20240624014810 | 1 + .../internal_event_instrumentation/index.md | 1 + .../metric_definition_guide.md | 196 ++++++++++++++++++ doc/user/product_analytics/index.md | 2 +- .../ci/templates/Jobs/Build.gitlab-ci.yml | 2 +- .../templates/Jobs/Build.latest.gitlab-ci.yml | 2 +- locale/gitlab.pot | 2 +- .../components/ci_variable_table_spec.js | 11 +- 15 files changed, 264 insertions(+), 38 deletions(-) rename config/feature_flags/{wip => beta}/show_role_details_in_drawer.yml (70%) create mode 100644 db/post_migrate/20240624014810_drop_unused_deployments_indexes.rb create mode 100644 db/schema_migrations/20240624014810 create mode 100644 doc/development/internal_analytics/internal_event_instrumentation/metric_definition_guide.md diff --git a/GITALY_SERVER_VERSION b/GITALY_SERVER_VERSION index 182559019f6..b3e26eca3fe 100644 --- a/GITALY_SERVER_VERSION +++ b/GITALY_SERVER_VERSION @@ -1 +1 @@ -cab22ed596319359484966ded1f21bfbe3bd9796 +117d83886351afe9c05c3a3464cba7e22bc234a3 diff --git a/GITLAB_PAGES_VERSION b/GITLAB_PAGES_VERSION index eab0ed3e71e..c9e3694ea32 100644 --- a/GITLAB_PAGES_VERSION +++ b/GITLAB_PAGES_VERSION @@ -1 +1 @@ -9b8665b9d50d2be9880d85949ce5aea4afbd272d +df16e199eba9d1fe851e42b7842bab4bb6215ae2 diff --git a/app/assets/javascripts/ci/ci_variable_list/components/ci_variable_table.vue b/app/assets/javascripts/ci/ci_variable_list/components/ci_variable_table.vue index 473ba5058eb..1f02fab15a1 100644 --- a/app/assets/javascripts/ci/ci_variable_list/components/ci_variable_table.vue +++ b/app/assets/javascripts/ci/ci_variable_list/components/ci_variable_table.vue @@ -3,8 +3,6 @@ import { GlAlert, GlBadge, GlButton, - GlCard, - GlIcon, GlLoadingIcon, GlModalDirective, GlKeysetPagination, @@ -15,6 +13,7 @@ import { } from '@gitlab/ui'; import { __, s__, sprintf } from '~/locale'; import glFeatureFlagsMixin from '~/vue_shared/mixins/gl_feature_flags_mixin'; +import CrudComponent from '~/vue_shared/components/crud_component.vue'; import { convertEnvironmentScope } from '~/ci/common/private/ci_environments_dropdown'; import { DEFAULT_EXCEEDS_VARIABLE_LIMIT_TEXT, @@ -65,13 +64,12 @@ export default { GlAlert, GlBadge, GlButton, - GlCard, GlKeysetPagination, GlLink, - GlIcon, GlLoadingIcon, GlTable, GlModal, + CrudComponent, }, directives: { GlModalDirective, @@ -213,20 +211,14 @@ export default {