From ee772e0c77e11099a9f077f780cd1a18de803222 Mon Sep 17 00:00:00 2001 From: GitLab Bot Date: Fri, 12 Aug 2022 12:11:32 +0000 Subject: [PATCH] Add latest changes from gitlab-org/gitlab@master --- ...Pipeline Authoring Issue Implementation.md | 15 +++ .rubocop_todo/layout/hash_alignment.yml | 10 -- .../javascripts/crm/components/form.vue | 20 +++- .../components/contact_form_wrapper.vue | 7 +- .../crm_contact_fields.fragment.graphql | 1 + .../crm_organization_fields.fragment.graphql | 1 + .../components/organization_form_wrapper.vue | 27 +++-- .../diffs/components/commit_item.vue | 9 +- .../ide/components/ide_project_header.vue | 1 + .../components/integration_overrides.vue | 1 + .../jobs/components/environments_block.vue | 16 ++- .../javascripts/lib/utils/text_markdown.js | 32 +++-- .../components/related_issues_block.vue | 42 +++---- .../repository/components/last_commit.vue | 9 +- .../vue_shared/components/project_avatar.vue | 11 +- .../project_selector/project_list_item.vue | 1 + .../work_item_links/work_item_links.vue | 2 +- .../admin/applications_controller.rb | 1 - .../projects/pipelines/stages_controller.rb | 3 +- app/models/ci/pipeline.rb | 4 - app/models/oauth_access_token.rb | 1 - .../integrations/project_entity.rb | 1 + app/views/admin/applications/index.html.haml | 3 - doc/ci/pipelines/multi_project_pipelines.md | 90 +++++++++++++++ doc/ci/yaml/includes.md | 14 ++- doc/ci/yaml/index.md | 26 +++-- doc/development/fe_guide/index.md | 2 +- doc/development/feature_flags/index.md | 15 +++ doc/development/features_inside_dot_gitlab.md | 4 +- doc/development/integrations/secure.md | 2 +- doc/development/redis/new_redis_instance.md | 2 +- .../sidekiq/compatibility_across_updates.md | 2 +- .../testing_guide/contract/consumer_tests.md | 109 ++++++++++-------- .../testing_guide/contract/index.md | 4 +- doc/gitlab-basics/start-using-git.md | 2 +- doc/raketasks/spdx.md | 2 +- doc/security/index.md | 2 +- locale/gitlab.pot | 6 + package.json | 4 +- .../source_editor_toolbar_spec.rb | 2 +- qa/qa/support/loglinking.rb | 16 +-- qa/spec/support/loglinking_spec.rb | 32 ++--- spec/features/issues/related_issues_spec.rb | 20 +++- .../frontend/crm/contact_form_wrapper_spec.js | 9 +- spec/frontend/crm/form_spec.js | 38 +++--- spec/frontend/crm/mock_data.js | 10 ++ .../crm/organization_form_wrapper_spec.js | 2 +- .../ide/components/ide_project_header_spec.js | 2 + .../components/integration_overrides_spec.js | 3 + .../components/related_issues_block_spec.js | 3 +- spec/frontend/lib/utils/text_markdown_spec.js | 23 ++++ .../shared/package_list_row_spec.js | 2 +- .../components/project_avatar_spec.js | 28 ++++- .../project_list_item_spec.js | 1 + spec/models/ci/pipeline_spec.rb | 18 --- spec/models/oauth_access_token_spec.rb | 21 ---- .../admin/integrations_controller_spec.rb | 1 + .../integrations/project_entity_spec.rb | 1 + yarn.lock | 76 ++++++++---- 59 files changed, 526 insertions(+), 286 deletions(-) diff --git a/.gitlab/issue_templates/Pipeline Authoring Issue Implementation.md b/.gitlab/issue_templates/Pipeline Authoring Issue Implementation.md index 4544e675256..523a50dfdf8 100644 --- a/.gitlab/issue_templates/Pipeline Authoring Issue Implementation.md +++ b/.gitlab/issue_templates/Pipeline Authoring Issue Implementation.md @@ -12,6 +12,21 @@ ## Proposal +## Additional details + + +Some relevant technical details, if applicable, such as: + +- Does this need a ~"feature flag"? +- Is there an example response showing the data structure that should be returned (new endpoints only)? +- What permissions should be used? +- Is this EE or CE? + - [ ] EE + - [ ] CE +- Additional comments: + ## Implementation Table