- 20 Jul, 2020 1 commit
-
-
Craig Smith authored
The scanned resources count in the MR widget is counts duplicate URLs twice, but the URLs displayed are unique. The commit updates the count to only consider unique URLs
-
- 17 Jul, 2020 6 commits
-
-
Ezekiel Kigbo authored
Migrate viewer switcher button Closes #219890 See merge request gitlab-org/gitlab!37135
-
Ezekiel Kigbo authored
Check WIP status as late as possible See merge request gitlab-org/gitlab!36624
-
Ezekiel Kigbo authored
Revert "Merge branch 'bw-surround-text-wth-char' into 'master'" See merge request gitlab-org/gitlab!37131
-
Ezekiel Kigbo authored
Use new vuex store for code quality MR widget See merge request gitlab-org/gitlab!36120
-
Ash McKenzie authored
Merge branch '218250-project-level-integration-implement-project-level-setting-selector' into 'master' Add override selector for project-level integrations See merge request gitlab-org/gitlab!34742
-
Ash McKenzie authored
Use stored user mapping for Jira importer See merge request gitlab-org/gitlab!34487
-
- 16 Jul, 2020 33 commits
-
-
Russell Dickenson authored
Update database review docs to link to Telemetry guide See merge request gitlab-org/gitlab!37050
-
Alina Mihaila authored
-
Stan Hu authored
Properly check if license-check approved See merge request gitlab-org/gitlab!37097
-
Amy Qualls authored
Change CI examples for Terraform to remove non-working variable refs See merge request gitlab-org/gitlab!37137
-
Matt Kasa authored
-
Tiger Watson authored
Remove design_activity_events feature flag Closes #225205 See merge request gitlab-org/gitlab!37107
-
Russell Dickenson authored
Add Figma integration to docs See merge request gitlab-org/gitlab!37106
-
Christen Dybenko authored
-
Stan Hu authored
Always sort Elasticsearch searches by relevance not updated_at See merge request gitlab-org/gitlab!36774
-
Mike Lewis authored
Updating integrations overview documentation See merge request gitlab-org/gitlab!36496
-
Patrick Deuley authored
-
Nick Gaskill authored
Add front matter and fixes to some topics See merge request gitlab-org/gitlab!37044
-
Amy Qualls authored
Docs: Removed Runner content See merge request gitlab-org/gitlab!37119
-
Nick Gaskill authored
Doc: Update metadata group label See merge request gitlab-org/gitlab!37140
-
Thong Kuah authored
Update kubernetes.rb to read entire file See merge request gitlab-org/gitlab!31254
-
Abdelrahman authored
- writing all intermediate ca certificates to a file and passing file path for kubernetes connection
-
charlie ablett authored
Sidebar add to-do for alert (Alert todo create mutation) See merge request gitlab-org/gitlab!34175
-
Allison Browne authored
Hook up todo mutation to button
-
Amy Qualls authored
Update Terraform code example on index.md See merge request gitlab-org/gitlab!36677
-
Craig Norris authored
-
Thong Kuah authored
Send an email when MR is set to MWPS See merge request gitlab-org/gitlab!33460
-
Thong Kuah authored
Add API support for instance clusters Closes #31000 See merge request gitlab-org/gitlab!36001
-
Valerie Karnes authored
-
Robert Speicher authored
Remove obsolete code in importers and remove new_import_ui feature flag" See merge request gitlab-org/gitlab!35748
-
Mayra Cabrera authored
Paginate the notes incremental fetch endpoint See merge request gitlab-org/gitlab!34628
-
Nick Thomas authored
Returning an unlimited number of elements from any endpoint is a bad idea. For the notes endpoint specifically, we return all notes since a given `X-Last-Fetched-At` value. The backend specifies the new value to use for that item in the response, so if we return a limited set of notes and use an appropriate value, we get a rudimentary form of keyset pagination for free. The way the notes endpoint is used today, this is mostly a theoretical worry, and in practice, basically every response will fit within a single page anyway. However, we can use the `notes` endpoint *instead of* the `discussions` endpoint to fill a merge request discussion from the beginning of time. When we do this, large discussions are loaded in batches automatically, using pre-existing frontend code. So this change is best seen as preparatory work for removing `discussions` altogether. This commit also fixes a pre-existing problem with the endpoint, which is the fact that `updated_at` is stored with *microsecond* precision in the database. Converting the X-Last-Fetched-At value from integer to float allows us to avoid a range of boundary conditions that result.
-
Robert Speicher authored
Merge tslint with eslint See merge request gitlab-org/gitlab!36400
-
Dylan Griffith authored
**TL;DR** Elasticsearch defaults to sorting by `_score` and this is what we want so remove all the explicit sorting. At present some searches are being sorted by `_score` (ie. the relevance score) while others are being first sorted by `updated_at` then `_score`. There doesn't really appear to be any good reason to use `updated_at` as the primary sort followed by `_score` since this will bury the most relevant matches behind lots of recent matches. Using sort in this way will only ever sort by `_score` if the `updated_at` was equal but this is basically never going to happen since these are timestamps so `_score` in practice is never factoring in to the sorting which probably was never the intent here. Since the [default sorting is by score](https://www.elastic.co/guide/en/elasticsearch/guide/master/sorting.html) we can leave it out of all queries. We can in future look into whether or not we want recency to factor into the sorting using more advanced tools like [`function_score`](https://www.elastic.co/guide/en/elasticsearch/guide/current/function-score-query.html) but for now sorting just by relevance is better than sorting just by `updated_at`.
-
Mayra Cabrera authored
Remove GitlabIssueTrackerService records See merge request gitlab-org/gitlab!35221
-
Andy Soiron authored
The GitlabIssueTrackerService class is not used anymore and will be removed too.
-
Jose Ivan Vargas authored
Exposing GitLab managed apps logs - Documentation Update See merge request gitlab-org/gitlab!37096
-
Thomas Randolph authored
-
Thomas Randolph authored
Also tests the (existing, untested) rebase state
-