- 16 Jul, 2020 40 commits
-
-
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
-
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
-
Robert Speicher authored
Product Analytics collector See merge request gitlab-org/gitlab!36443
-
Dmytro Zaporozhets authored
Rack application within Rails to record product analytics events. Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
-
Daniel Paul Searles authored
Why: * https://gitlab.com/gitlab-org/gitlab/-/issues/36059 This change addresses the need by: * Remove references to TSLint. * Update TypeScript references to point to the ESLint analyzer. * Remove tslint-sast job from the SAST.gitlab-ci.yml file. * Update eslint-sast job in the SAST.gitlab-ci.yml file to be triggered by TypeScript files. Side effects: * TypeScript vulnerabilities may be auto closed and reopened by the ESLint analyzer.
-
Alex Kalderimis authored
The feature has been in production on gitlab.com for several weeks now without incident.
-
James Fargher authored
Present only issues visible to user in Vulnerabilitiy Issue Links API See merge request gitlab-org/gitlab!36987
-
Alan (Maciej) Paruszewski authored
-
Stan Hu authored
Verbiage tweaks for SAST config MRs See merge request gitlab-org/gitlab!36831
-
Robert Speicher authored
Add state events to API See merge request gitlab-org/gitlab!35210
-
Russell Dickenson authored
add a commonly used virtualenv directory as a sample path to exclude See merge request gitlab-org/gitlab!37124
-
Edmond Chan authored
-
Stan Hu authored
include gl-coverage-fuzzing-report.json in artifacts See merge request gitlab-org/gitlab!37110
-
Stan Hu authored
Add a version number to metrics dashboard cache keys See merge request gitlab-org/gitlab!37081
-
Bob Van Landuyt authored
Swap Grape over to Gitlab::Json See merge request gitlab-org/gitlab!36472
-