- Jul 26, 2019
-
-
Nick Thomas authored
Fix error rendering submodules in MR diffs when there is no .gitmodules See merge request gitlab-org/gitlab-ce!31162 (cherry picked from commit 55f99e93) cfef1e8e Fix error rendering submodules in MR diffs when there is no .gitmodules
-
- Jul 25, 2019
-
- Jul 24, 2019
-
-
Clement Ho authored
Fix translation of 'Updated' term in projects list See merge request gitlab-org/gitlab-ce!30958 (cherry picked from commit 3cc5535c) 324b8109 Fix translation of 'Updated' term in projects list
-
Sean McGivern authored
Default manual_sorting feature flag to on See merge request gitlab-org/gitlab-ce!30788 (cherry picked from commit 98152f17) 81f10288 Default manual_sorting feature flag to on
-
Nick Thomas authored
Add index for issues on relative position, project, and state for manual sorting See merge request gitlab-org/gitlab-ce!30542 (cherry picked from commit 31335ea6) b0eafaac Add index for issues on relative position, project
-
Thong Kuah authored
Set DOCKER_TLS_CERTDIR in CI job templates See merge request gitlab-org/gitlab-ce!31080 (cherry picked from commit 8768e295) c472bec5 Set DOCKER_TLS_CERTDIR in CI job templates
-
Thong Kuah authored
Set DOCKER_TLS_CERTDIR in Auto Dev-Ops CI template See merge request gitlab-org/gitlab-ce!31078 (cherry picked from commit a842c388) af88ccfa Set DOCKER_TLS_CERTDIR in Auto Dev-Ops CI template
-
Kamil Trzcińśki authored
Extra logging for new live trace architecture See merge request gitlab-org/gitlab-ce!30892 (cherry picked from commit 4435cdde) c2e0e689 Validate the existence of archived traces before removing live trace
-
- Jul 23, 2019
-
-
Kamil Trzcińśki authored
Use persistent Redis cluster for Workhorse pub/sub notifications See merge request gitlab-org/gitlab-ce!30990 (cherry picked from commit 995e5b52) 583c12ac Use persistent Redis cluster for Workhorse pub/sub notifications
-
Robert Speicher authored
Mark mirrors as failed 1 hour after they started See merge request gitlab-org/gitlab-ce!30999 (cherry picked from commit d892e80b) ab11eee1 Mark mirrors as failed 1 hour after they started
-
- Jul 22, 2019
-
-
Nick Thomas authored
Merge branch '64870-can-t-save-pages-domain-form-with-let-s-encrypt-enabled-if-current-certificate-is-outdated' into 'master' Resolve "Can't save pages domain form with Let's Encrypt enabled if current certificate is outdated" Closes #64870 See merge request gitlab-org/gitlab-ce!30995 (cherry picked from commit 8073b055) 9c0f4286 Validate certificate chain only if it's changed
-
Nick Thomas authored
Ensure SubmoduleHelper works outside view context Closes #64833 See merge request gitlab-org/gitlab-ce!31005 (cherry picked from commit 8b284a51) 26ac53b3 Ensure SubmoduleHelper works outside view context
-
Marcia Ramos authored
Docs: add alert for bugs - Pages' LE integration See merge request gitlab-org/gitlab-ce!31002 (cherry picked from commit b40630e1) 69744896 Add alert for bugs d1c583d2 Copy edit alert, add tbs steps
-
Fatih Acet authored
Embed metrics charts in issues See merge request gitlab-org/gitlab-ce!29691 (cherry picked from commit 886a6957) 80feba93 Add ability to embed metrics b5cdde0c Integrate latest backend changes and feature flag 330b0414 Fix jest test c260ad82 Migrate TODOs to issues 3a822d99 Seet appropriate default 57c2eb79 Put gfm rendering behind a feature flag cfeda009 Rename link variable 81ff8d43 Move feature spec into new MR 9d08a5dd Add devensive check on `gon` features object ca5e00cf Add w-100 style 6e63457b Condense border into shorthand 8de8b6cf Move sidebarAnimationDuration into constants c9936bf9 Remove extraneous default export 010bb0e3 Reword conditional logic f4ea4c81 Simplify filter logic a2f1b4c2 Move styling from css to utility class da9788df Tidy up component initialization c69a119b Avoid duplication of `embedded` param supplied by backend be4b7a11 Remove unnecessary mount d203980b Apply suggestion to app/assets/javascripts/monitoring/components/charts/area.vue 62ebc6e3 Use object notation 26075703 Add missing class d9464420 Make sidebarAnimationDuration match actual sidebar animation length 83014858 Remove nextTick and compute groupData object directly 259f700b Rename variable for accuracy f34890cc Use composite key for dashboard metric groups 92ef33a0 Fix unit test to accommodate for removal of mount call e2f10bba Remove changelog entry as feature is behind feature flag c6d8b271 Use graph title as key for embeds
-
Ramya Authappan authored
Updates check_mentions_for_xss_spec to use admin token for creating the user Closes gitlab-org/quality/staging#65 See merge request gitlab-org/gitlab-ce!30943 (cherry picked from commit 53547792) 033c1c0c Create user as admin
-
- Jul 21, 2019
-
-
Douwe Maan authored
Wiki Usage Ping for Create SMAU See merge request gitlab-org/gitlab-ce!30864
-
This adds a counter to count page creation, which is reflected in the usage-data we collect. The number created is stored in Redis, avoiding DB access.
-
- Jul 19, 2019
-
-
Daniel Davison authored
Refactor collapse issue comments end-to-end test See merge request gitlab-org/gitlab-ce!30902
-
Daniel Davison authored
Refactor create issue end-to-end test See merge request gitlab-org/gitlab-ce!30945
-
Stan Hu authored
Fixes typo in developer documentation See merge request gitlab-org/gitlab-ce!30964
-
Mayra Cabrera authored
Fix the project auto devops API See merge request gitlab-org/gitlab-ce!30946
-
If `project_auto_devops.enabled` is nil for a project, when setting any auto devops values via the API, we try to create a new row in the DB, instead of re-using the existing one. This leads to the project_id being set to nil, and the database `NOT NULL` constraint leading to a 500 response. This commit resolves the issue by correctly detecting the presence of a ProjectAutoDevops row and re-using it. Persistence is also moved away from explicit `update!` calls and into relying on `autosave: true` on the model.
-
Jeremy Jackson authored
-
Mayra Cabrera authored
Fix Gitaly auto-detection caching Closes #64802 See merge request gitlab-org/gitlab-ce!30954
-
Fatih Acet authored
Remove duplicate buttons Closes #64160 See merge request gitlab-org/gitlab-ce!30757
-
Nick Thomas authored
Document database review process See merge request gitlab-org/gitlab-ce!30405
-
Kamil Trzcińśki authored
Get rid of `worker_label` in RubySampler See merge request gitlab-org/gitlab-ce!30942
-
Nick Thomas authored
Avoid increasing redis counters when usage_ping is disabled See merge request gitlab-org/gitlab-ce!30949
-
-
Stan Hu authored
If `GitalyClient#can_use_disk?` returned `false`, it was never cached properly and led to excessive number of Gitaly calls. Instead of using `cached_value.present?`, we need to check `cached_value.nil?`. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/64802
-
Phil Hughes authored
Fixes the alignment on reports See merge request gitlab-org/gitlab-ce!30839
-
Sam Beckham authored
- Removes a justify-center class that causes reports to centrally align
-
Phil Hughes authored
Centers loading icon in CI action Closes #64265 See merge request gitlab-org/gitlab-ce!30947
-
Sean McGivern authored
Use `issuable_path` helper See merge request gitlab-org/gitlab-ce!30913
-
Filipa Lacerda authored
-
Phil Hughes authored
Resolve "Export frontend fixtures as pipeline artifact" Closes #64722 and #59166 See merge request gitlab-org/gitlab-ce!30917
-
Walmyr Lima e Silva Filho authored
This refactor: - Moves the tests pre-conditions to a before blocks - Creates an issue via the api for the second test to improve the test suite performance
-
Aleksei Lipniagov authored
We have Prometheus::PidProvider which sets correct worker id for a process, so such implementation of `worker_label` in the sampler is obsolete.
-
Kushal Pandya authored
Fix regression in re-naming files Closes #64784 See merge request gitlab-org/gitlab-ce!30941
-