From 5b0916450cebb6a88bd651fd0579737541c355c8 Mon Sep 17 00:00:00 2001 From: GitLab Bot Date: Fri, 3 Dec 2021 18:11:11 +0000 Subject: [PATCH] Add latest changes from gitlab-org/gitlab@master --- GITALY_SERVER_VERSION | 2 +- .../components/graph/job_group_dropdown.vue | 2 +- .../pipelines/components/graph/job_item.vue | 8 ++-- .../components/graph/linked_pipeline.vue | 8 ++-- .../pipeline_graph/pipeline_graph.vue | 2 +- .../charts/components/statistics_list.vue | 17 ++++++- .../projects/pipelines/charts/index.js | 3 +- .../page_bundles/_pipeline_mixins.scss | 6 +-- .../stylesheets/page_bundles/pipeline.scss | 11 +++-- app/mailers/emails/issues.rb | 28 +++++------ app/mailers/emails/merge_requests.rb | 42 ++++++++--------- app/mailers/emails/notes.rb | 15 +++--- app/mailers/emails/releases.rb | 5 +- app/models/issue.rb | 8 ++-- app/models/todo.rb | 1 + .../todos/destroy/private_features_service.rb | 46 ------------------- .../destroy/unauthorized_features_service.rb | 43 +++++++++++++++++ app/views/notify/_note_email.html.haml | 2 +- app/views/notify/issue_due_email.html.haml | 2 +- app/views/notify/new_issue_email.html.haml | 2 +- .../notify/new_merge_request_email.html.haml | 2 +- app/views/notify/new_release_email.html.haml | 2 +- .../service_desk_new_note_email.html.haml | 2 +- app/views/projects/pipelines/charts.html.haml | 3 +- .../private_features_worker.rb | 2 +- .../development/multiple_gpg_signatures.yml | 2 +- .../development/track_importer_activity.yml | 8 ---- ...0444_add_index_todos_project_id_user_id.rb | 15 ++++++ ...02145237_add_todos_project_and_id_index.rb | 32 +++++++++++++ db/schema_migrations/20211125120444 | 1 + db/schema_migrations/20211202145237 | 1 + db/structure.sql | 4 +- doc/administration/instance_limits.md | 8 ++-- doc/administration/nfs.md | 18 ++++---- doc/user/group/settings/import_export.md | 4 ++ doc/user/profile/notifications.md | 26 +++++------ .../database/load_balancing/configuration.rb | 4 ++ .../known_events/importer_events.yml | 3 -- .../statistics_list_spec.js.snap | 10 ++-- .../charts/components/statistics_list_spec.js | 13 +++++- .../load_balancing/configuration_spec.rb | 9 ++++ .../load_balancing/service_discovery_spec.rb | 8 ++-- spec/mailers/notify_spec.rb | 22 +++++++++ spec/models/issue_spec.rb | 2 + ... => unauthorized_features_service_spec.rb} | 22 ++++----- .../private_features_worker_spec.rb | 2 +- 46 files changed, 296 insertions(+), 182 deletions(-) delete mode 100644 app/services/todos/destroy/private_features_service.rb create mode 100644 app/services/todos/destroy/unauthorized_features_service.rb delete mode 100644 config/feature_flags/development/track_importer_activity.yml create mode 100644 db/post_migrate/20211125120444_add_index_todos_project_id_user_id.rb create mode 100644 db/post_migrate/20211202145237_add_todos_project_and_id_index.rb create mode 100644 db/schema_migrations/20211125120444 create mode 100644 db/schema_migrations/20211202145237 rename spec/services/todos/destroy/{private_features_service_spec.rb => unauthorized_features_service_spec.rb} (91%) diff --git a/GITALY_SERVER_VERSION b/GITALY_SERVER_VERSION index 84090347905..969bcd28142 100644 --- a/GITALY_SERVER_VERSION +++ b/GITALY_SERVER_VERSION @@ -1 +1 @@ -2247949bf06c7e8b28ef629dccb347868ee3abf4 +7034511c6f456177e023d7b418ceaa391deee79a diff --git a/app/assets/javascripts/pipelines/components/graph/job_group_dropdown.vue b/app/assets/javascripts/pipelines/components/graph/job_group_dropdown.vue index 6f4360649ff..12c3f9a7f40 100644 --- a/app/assets/javascripts/pipelines/components/graph/job_group_dropdown.vue +++ b/app/assets/javascripts/pipelines/components/graph/job_group_dropdown.vue @@ -67,7 +67,7 @@ export default { :class="cssClassJobName" class="dropdown-menu-toggle gl-pipeline-job-width! gl-pr-4!" > -
+
-
-
{{ job.name }}
+
+
{{ job.name }}
{{ stageName }}
diff --git a/app/assets/javascripts/pipelines/components/graph/linked_pipeline.vue b/app/assets/javascripts/pipelines/components/graph/linked_pipeline.vue index be47799868b..e0c1dcc5be5 100644 --- a/app/assets/javascripts/pipelines/components/graph/linked_pipeline.vue +++ b/app/assets/javascripts/pipelines/components/graph/linked_pipeline.vue @@ -124,7 +124,7 @@ export default {
-
+
-
+
{{ downstreamTitle }} diff --git a/app/assets/javascripts/pipelines/components/pipeline_graph/pipeline_graph.vue b/app/assets/javascripts/pipelines/components/pipeline_graph/pipeline_graph.vue index 78771b6a072..64210576b29 100644 --- a/app/assets/javascripts/pipelines/components/pipeline_graph/pipeline_graph.vue +++ b/app/assets/javascripts/pipelines/components/pipeline_graph/pipeline_graph.vue @@ -25,7 +25,7 @@ export default { // The max width and the width make sure the ellipsis to work and the min width // is for when there is less text than the stage column width (which the width 100% does not fix) jobWrapperClasses: - 'gl-display-flex gl-flex-direction-column gl-align-items-center gl-w-full gl-px-8 gl-min-w-full gl-max-w-15', + 'gl-display-flex gl-flex-direction-column gl-align-items-stretch gl-w-full gl-px-8 gl-min-w-full gl-max-w-15', props: { pipelineData: { required: true, diff --git a/app/assets/javascripts/projects/pipelines/charts/components/statistics_list.vue b/app/assets/javascripts/projects/pipelines/charts/components/statistics_list.vue index 7bc3b787f75..5383a6cdddf 100644 --- a/app/assets/javascripts/projects/pipelines/charts/components/statistics_list.vue +++ b/app/assets/javascripts/projects/pipelines/charts/components/statistics_list.vue @@ -1,10 +1,19 @@