Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-09-03Switch back to the '--wait' flag for the 'helm upgrade' commandRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-09-03Merge branch 'fixes-broken-master-on-anonymous-session' into 'master'Rémy Coutable
Uses spec_helper instead of rails_helper Closes #66952 See merge request gitlab-org/gitlab-ce!32594
2019-09-03Uses spec_helper instead of rails_helperMayra Cabrera
spec/rails_helper.rb was removed on 1068ec2e9201af3de1fc5ebe9c8d9f7953c89b51
2019-09-03Merge branch 'docs/edit-rules-docs' into 'master'Achilleas Pipinellis
Edit to new rules documentation See merge request gitlab-org/gitlab-ce!32244
2019-09-03Edit to new rules documentationEvan Read
2019-09-03Merge branch 'docs-development_add_new_prometheus_metrics' into 'master'Achilleas Pipinellis
Development docs: how to add Prometheus metrics See merge request gitlab-org/gitlab-ce!32306
2019-09-03Development docs: how to add Prometheus metricsThong Kuah
This documents the various knowledge needed to add new GitLab self-monitoring Prometheus metrics.
2019-09-03Merge branch 'ogolowinski-master-patch-72109' into 'master'Marcia Ramos
Updated Feature flags doc See merge request gitlab-org/gitlab-ce!32578
2019-09-03Updated Feature flags docOrit Golowinski
2019-09-03Merge branch 'qa-remove-unneeded-only-extend' into 'master'Lin Jen-Shin
Fixes two bugs with the `package-and-qa-manual:master` and `build-qa-image` jobs See merge request gitlab-org/gitlab-ce!32584
2019-09-03Merge branch 'winh-yarn-integrity-check-output' into 'master'Kushal Pandya
Improve output for yarn integrity check See merge request gitlab-org/gitlab-ce!32569
2019-09-03Improve output for yarn integrity checkWinnie Hellmann
2019-09-03Merge branch '62591-fix-milestone-due-date-today-wording' into 'master'Nick Thomas
Fix wording on milestone due date today Closes #62591 See merge request gitlab-org/gitlab-ce!32096
2019-09-03Merge branch '66741-remove-spec-rails_helper-rb' into 'master'Grzegorz Bizon
Remove spec/rails_helper.rb Closes #66741 See merge request gitlab-org/gitlab-ce!32380
2019-09-03Merge branch '65509-improve-gc-report-buckets-granularity' into 'master'Kamil Trzciński
Improve GC_REPORT_BUCKETS granularity See merge request gitlab-org/gitlab-ce!32586
2019-09-03Merge branch 'winh-dev-incoming_email-check' into 'master'Sean McGivern
Remove outdated mail_room check See merge request gitlab-org/gitlab-ce!32588
2019-09-03Remove outdated mail_room checkWinnie Hellmann
2019-09-03Merge branch 'docs/clarify-needs-limits' into 'master'Achilleas Pipinellis
Clarify limits for needs keyword See merge request gitlab-org/gitlab-ce!32444
2019-09-03Clarify limits for needs keywordEvan Read
2019-09-03Merge branch 'ab-routable-nplus1' into 'master'Stan Hu
Preload routes information in Routable See merge request gitlab-org/gitlab-ce!32352
2019-09-03Merge branch 'mc/feature/downstream-pipeline-tracking-ce' into 'master'Kamil Trzciński
Backport documentation for status checking behaviors See merge request gitlab-org/gitlab-ce!32184
2019-09-03Merge branch '66454-utils-parser' into 'master'Kushal Pandya
Creates utility parser for the job log See merge request gitlab-org/gitlab-ce!32555
2019-09-03Merge branch 'mh/jest-fail-unmocked-requests' into 'master'Kushal Pandya
Make unmocked requests fail in Jest again See merge request gitlab-org/gitlab-ce!31863
2019-09-03Fix wording on milestone due date todayAlexandru Croitor
Fix wording on milestone due date, to show today instead of hours ago or remaining, when milestone is due today.
2019-09-03Remove a useless '.except-docs-qa' extension in 'package-and-qa-manual'Rémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-09-03Improve GC_REPORT_BUCKETS granularityAleksei Lipniagov
2019-09-03Merge branch 'ab-remove-support-bot-column' into 'master'Yorick Peterse
Remove Users.support_bot column See merge request gitlab-org/gitlab-ce!32554
2019-09-03Backport documentation from EEMatija Čupić
Backport documentation from https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/15580
2019-09-03Merge branch 'clusterable_cluster_environments_path' into 'master'Jan Provaznik
Add #environments_cluster_path which will always return nil in CE See merge request gitlab-org/gitlab-ce!32527
2019-09-03Merge branch 'create-build-qa-image-for-all-pipelines' into 'master'Lin Jen-Shin
Make sure 'build-qa-image' is created for all pipelines See merge request gitlab-org/gitlab-ce!32570
2019-09-03Preload routes informationAndreas Brandl
This fixes a high frequency N+1 issue: `RoutableActions#find_routable!` is used across many controllers to retrieve e.g. the Project or Namespace by path. The `#find_routable!` method calls `#ensure_canonical_path` which in turn retrieves `#full_path` from the given Routable. This in turn triggers a lookup on `routes`, leading to a high frequency of these queries: ```sql SELECT "routes".* FROM "routes" WHERE "routes"."source_id" = $1 AND "routes"."source_type" = $2 LIMIT $3 ``` This is unnecessary as we already join `routes` in `Routable#find_by_full_path` anyways.
2019-09-03Merge branch 'fix-cycle-analytics-seeds' into 'master'Thong Kuah
Fix cycle analytics seed script See merge request gitlab-org/gitlab-ce!32536
2019-09-03Fix cycle analytics seed scriptAdam Hegyi
2019-09-03Merge branch 'winh-quarantine-dashboard_spec' into 'master'Tim Zallmann
Quarantine flaky dashboard_spec.js See merge request gitlab-org/gitlab-ce!32574
2019-09-03Merge branch '62402-milestone-release-be' into 'master'Andreas Brandl
"Allow milestones to be associated with releases" BE See merge request gitlab-org/gitlab-ce!30816
2019-09-03Added relationships between Release and MilestoneEtienne Baqué
Modified schema via migrations. Added one-to-one relationship between the two models. Added changelog file
2019-09-03Merge branch 'db/prometheus-metrics-not-null-constraints' into 'master'Andreas Brandl
Add not null constraints to prometheus_metrics table columns Closes #66663 See merge request gitlab-org/gitlab-ce!32339
2019-09-03Merge branch 'links-use-new-location' into 'master'Rémy Coutable
Use new location for helm charts repo See merge request gitlab-org/gitlab-ce!32563
2019-09-03Merge branch 'add-pipeline-type-key-in-pipeline-entity' into 'master'Kamil Trzciński
Expose `name` and `merge_request_event_type` in serialized json and predefined variables See merge request gitlab-org/gitlab-ce!32323
2019-09-03Merge branch 'id-skip-setting-repo-refs' into 'master'Lin Jen-Shin
Skip set_repo_refs to speed up the tests See merge request gitlab-org/gitlab-ce!32556
2019-09-03Skip set_repo_refs to speed up the testsIgor
2019-09-03Introduce a new 'package-and-qa-manual:master' jobRémy Coutable
This is needed because in `master`, the `gitlab:assets:compile` is created, but not the `gitlab:assets:compile pull-cache` job, and the `needs` keyword cannot take jobs that don't exist, thus we have to create a dedicated job for `master`, with `needs: ["build-qa-image", "gitlab:assets:compile"]` instead of `needs: ["build-qa-image", "gitlab:assets:compile pull-cache"]`. Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-09-03Merge branch '36765-flash-notification' into 'master'Kushal Pandya
Make error flash notification sticky See merge request gitlab-org/gitlab-ce!30141
2019-09-03Make flash notifications stickyFatih Acet
This commit also unifies layout structure and remove no_container flag
2019-09-03Creates utils for the job logFilipa Lacerda
With the new job log json format we need a parser on the frontend
2019-09-03Quarantine flaky dashboard_spec.jsWinnie Hellmann
2019-09-03Ensure 'build-qa-image' is created for all pipelines except docs & qaRémy Coutable
This also makes 'package-and-qa-manual' created for 'master' because it's a valid use-case to run manual QA on 'master'. Without this change, no pipeline could be created for auto-deploy branches due to the following error: The form contains the following error: package-and-qa-manual: needs 'build-qa-image' Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-09-03Merge branch 'change-role-system-hook' into 'master'Rémy Coutable
Add system hooks for project/group membership updates Closes gitlab-ee#12252 See merge request gitlab-org/gitlab-ce!32371
2019-09-03Merge branch 'ce-12996-cancel-redundant-pipelines' into 'master'Lin Jen-Shin
Backport retries options for cancel_running See merge request gitlab-org/gitlab-ce!32525
2019-09-03Add pipeline.type key to PipelineEntityShinya Maeda
This commit adds pipeline.type key to PipelineEntity. This key will be used in MR widget in the next iteration.