- 17 Dec, 2019 6 commits
-
-
Michael Kozono authored
Add timestamps to pod logs See merge request gitlab-org/gitlab!21663
-
Adrien Kohlbecker authored
-
Stan Hu authored
Revert "Merge branch '35170-consolidate-process-config' into 'master'" See merge request gitlab-org/gitlab!21882
-
Mike Greiling authored
Add note about ESLint rule no-jquery/no-animate-toggle See merge request gitlab-org/gitlab!21880
-
Mark Lapierre authored
Allow for generic DAST count matching Closes #36559 See merge request gitlab-org/gitlab!21193
-
Zeff Morgan authored
-
- 16 Dec, 2019 34 commits
-
-
Marcel Amirault authored
Fixing kramdown error in docs. Closes gitlab-docs#473 See merge request gitlab-org/gitlab!21859
-
Michael Kozono authored
This reverts merge request !20294
-
Walmyr Lima e Silva Filho authored
Simplify the "issues weight" end-to-end test See merge request gitlab-org/gitlab!21754
-
Evan Read authored
Update cohorts docs with new image See merge request gitlab-org/gitlab!21632
-
Winnie Hellmann authored
-
Nick Thomas authored
Capture author and created_at data for Version See merge request gitlab-org/gitlab!17322
-
Mike Greiling authored
Move escapeFileUrl to shared url_utility See merge request gitlab-org/gitlab!21865
-
Walmyr Lima e Silva Filho authored
Prefer let instead of instance variable on test See merge request gitlab-org/gitlab!21758
-
Michael Kozono authored
Upgrade Gitaly to v1.76.0 See merge request gitlab-org/gitlab!21857
-
GitalyBot authored
-
Grzegorz Bizon authored
Add protected branch permission check to run downstream pipelines See merge request gitlab-org/gitlab!20964
-
Mike Greiling authored
Enable no-jquery/slim ESLint profile See merge request gitlab-org/gitlab!21775
-
Winnie Hellmann authored
-
Luke Duncalfe authored
And adding a missing spec for the event data.
-
Luke Duncalfe authored
https://gitlab.com/gitlab-org/gitlab/merge_requests/17316 introduced new user_id and created_at columns for `Versions` https://gitlab.com/gitlab-org/gitlab/merge_requests/18506 renamed this column to author_id. This MR has the app capture a `author_id` when new versions are created. It also contains a post-migration to backfill author and created_at data for `Version`s by sourcing from `Commit`s. https://gitlab.com/gitlab-org/gitlab/issues/32081 https://gitlab.com/gitlab-org/gitlab/issues/13426
-
Paul Slaughter authored
**Why?** This is no longer needed in just the IDE. We also need it to make sure we properly escape paths in the file finder.
-
Douglas Barbosa Alexandre authored
Make use of uncached diffs where highlighting is not required Closes #43654 See merge request gitlab-org/gitlab!21842
-
Mayra Cabrera authored
Add indexes on deployments to improve environments search Closes #55353 See merge request gitlab-org/gitlab!21789
-
Robert Speicher authored
Previously it sounded like we'd always target the fork, regardless of where the MR was opened.
-
ngaskill authored
-
Clement Ho authored
Replace var with const / let in notes.js Closes #36269 See merge request gitlab-org/gitlab!21845
-
Winnie Hellmann authored
(cherry picked from commit 0e4b14cd3b10f78a6a0686424a0ee0dc7b94c7a0)
-
Douglas Barbosa Alexandre authored
Reuse prometheus chart values when editing alerts See merge request gitlab-org/gitlab!21344
-
Walmyr Lima authored
This commit applies only to the project variable. I couldn't find a way to not use the instance variable for the issue.
-
Walmyr Lima authored
By leaving the project fabrication to the milestone fabrication since it creates it by default if none is provided.
-
Martin Wortschack authored
Fix init_create_cluster_spec timing out See merge request gitlab-org/gitlab!21856
-
Kamil Trzciński authored
Limit max metrics embeds to 100 See merge request gitlab-org/gitlab!21356
-
Sarah Yasonik authored
Limits the maximum number of metrics embeds in a single GFM field to 100 to help with loading. OVer 100 has a hard time loading.
-
Dan Davison authored
Feature spec for cluster health board See merge request gitlab-org/gitlab!20839
-
Olena Horal-Koretska authored
For some reason we need to create clusters_applications_prometheus before stubbing Kube client discover request
-
Stan Hu authored
To load diffs and other files, we make two SELECT calls in `MergeRequest#environments_for`: one for the source branch, and one for the target branch. The source branch query makes a subquery: ```sql SELECT environment_id FROM deployments WHERE project_id = 123 AND ref = 'source_branch' ``` The target branch makes this subquery: ```sql SELECT environment_id FROM deployments WHERE project_id = 123 AND (ref = 'master' OR tag IS TRUE) ``` Both subqueries were taking over 250 ms to execute. When we add an index for the deployments table on `(projects_id, ref)`, this execution drops down to under 5 ms since the table usually has a small number of rows for the source branch. Adding a partial index on `projects_id WHERE tag IS TRUE` allows PostgreSQL to perform two separate indexed scans: one for the ref, and one for the tag condition. However, this query still takes 60 ms to run for the gitlab-org/gitlab project because `master` has 10,000+ rows. We should consider adding a LIMIT in a future iteration. Closes https://gitlab.com/gitlab-org/gitlab/issues/55353
-
GitLab Release Tools Bot authored
[ci skip]
-
GitLab Release Tools Bot authored
[ci skip]
-
Imre Farkas authored
Generate sample Prometheus data See merge request gitlab-org/gitlab!19987
-