From 173bd0618fb24fce59586a533290923ff8bbf99a Mon Sep 17 00:00:00 2001 From: GitLab Bot Date: Thu, 17 Dec 2020 09:10:19 +0000 Subject: [PATCH] Add latest changes from gitlab-org/gitlab@master --- GITLAB_SHELL_VERSION | 2 +- .../javascripts/diffs/components/diff_row.vue | 169 ++++++++++------ app/assets/javascripts/diffs/constants.js | 6 + app/assets/javascripts/diffs/store/utils.js | 44 ++++- app/assets/stylesheets/highlight/common.scss | 42 ++++ .../highlight/conflict_colors.scss | 119 ++++++++++++ .../stylesheets/highlight/themes/dark.scss | 2 + .../stylesheets/highlight/themes/monokai.scss | 2 + .../highlight/themes/solarized-dark.scss | 2 + .../highlight/themes/solarized-light.scss | 2 + .../stylesheets/highlight/themes/white.scss | 2 + .../stylesheets/highlight/white_base.scss | 13 +- .../page_bundles/merge_conflicts.scss | 180 +++--------------- .../ci_pipeline_open_merge_requests.yml | 1 + .../value_stream_analytics_extended_form.yml | 8 + .../postgresql/replication_and_failover.md | 10 + .../reference_architectures/3k_users.md | 2 + doc/ci/pipelines/index.md | 4 + doc/development/feature_flags/development.md | 12 ++ .../packages/composer_repository/index.md | 7 + doc/user/packages/npm_registry/index.md | 23 +++ doc/user/packages/pypi_repository/index.md | 6 + doc/user/search/advanced_search_syntax.md | 7 +- lib/gitlab/conflict/file.rb | 29 ++- lib/gitlab/diff/line.rb | 4 +- locale/gitlab.pot | 6 + ...er_interacts_with_batched_mr_diffs_spec.rb | 3 +- spec/frontend/diffs/store/utils_spec.js | 64 +++++++ spec/lib/gitlab/conflict/file_spec.rb | 32 ++-- 29 files changed, 563 insertions(+), 240 deletions(-) create mode 100644 app/assets/stylesheets/highlight/conflict_colors.scss create mode 100644 config/feature_flags/development/value_stream_analytics_extended_form.yml diff --git a/GITLAB_SHELL_VERSION b/GITLAB_SHELL_VERSION index d9a01d25342..04f6473099c 100644 --- a/GITLAB_SHELL_VERSION +++ b/GITLAB_SHELL_VERSION @@ -1 +1 @@ -13.14.0 +13.15.0 diff --git a/app/assets/javascripts/diffs/components/diff_row.vue b/app/assets/javascripts/diffs/components/diff_row.vue index c0719e2a7d9..9a43a7405c6 100644 --- a/app/assets/javascripts/diffs/components/diff_row.vue +++ b/app/assets/javascripts/diffs/components/diff_row.vue @@ -1,7 +1,15 @@