- 10 Jul, 2020 21 commits
-
-
Patrick Steinhardt authored
With strong consistency nearing beta stage, we need to document what it does and how to enable it to give it a try. So let's do so.
-
Marcel Amirault authored
Docs: Added latest templates See merge request gitlab-org/gitlab!36503
-
Dylan Griffith authored
Merge branch '221211-improve-performance-of-group-search-api-advanced-merge_requests-scope' into 'master' Resolve "Improve performance of Group Search API (advanced): merge_requests scope" Closes #221211 See merge request gitlab-org/gitlab!36072
-
Dylan Griffith authored
Instrument PyPI and Composer events via Snowplow Closes #214905 See merge request gitlab-org/gitlab!36514
-
Tim Rizzi authored
-
Dylan Griffith authored
Resolve remaining N+1 in Search API (Advanced) projects scope Closes #218703 See merge request gitlab-org/gitlab!35833
-
Dmitry Gruzd authored
-
Shinya Maeda authored
Load correct iteration on iteration report See merge request gitlab-org/gitlab!34842
-
Simon Knox authored
Also unquarantine test, as it will load correct item now Remove sign_in as not needed to view
-
Mike Greiling authored
Add controls to enable viewing Jira issues within GitLab See merge request gitlab-org/gitlab!35417
-
Justin Ho Tuan Duong authored
Currently only a skeleton of the changes required.
-
Evan Read authored
Change single quotes around private token to double quotes See merge request gitlab-org/gitlab!36506
-
Evan Read authored
Change single quotes to double quotes See merge request gitlab-org/gitlab!36507
-
Micael Bergeron authored
-
James Fargher authored
Fix IndexStatus find_or_create race condition See merge request gitlab-org/gitlab!36266
-
Dylan Griffith authored
**TL;DR** Fix a race condition where `IndexStatus` is not created and does not raise error. Need to use `!` and get rid of problematic unique model validation. Looking at the code I notice a logical problem with using `find_or_create_by` alongside a unique model validation. The problem is a race condition which comes from `find_or_create` first checking to see if the record exists. If it does not it tries creating which then invokes the validation which checks again to see if the record exists which finally returns a validation error. But see here we are not using `!` version of `find_or_create` and so this validation error is silently ignored. Since we already have a [`safe_find_or_create_by!`]( https://gitlab.com/gitlab-org/gitlab/-/blob/2b01f1f3420d9177e27418df063aad2e1bda1216/app/models/application_record.rb#L37 ) which is designed for handling this race condition using unique indexes and rescue and seeing that this model already has the [unique index]( https://gitlab.com/gitlab-org/gitlab/-/blob/2b01f1f3420d9177e27418df063aad2e1bda1216/db/structure.sql#L19266 ) we should just get rid of the model validation since it just complicates the error handling. Since this is a pretty weird race condition it seems tricky/contrived to try to create a proper unit test for this case.
-
Amy Qualls authored
Move tracing page See merge request gitlab-org/gitlab!36511
-
Amy Qualls authored
As part of the reorganization, move the tracing file to the new home for Operations files.
-
Amy Qualls authored
Move the Create Dashboards and dashboard YAML pages See merge request gitlab-org/gitlab!36504
-
Amy Qualls authored
Create the bare stub for the dashboards page.
-
Micael Bergeron authored
-
- 09 Jul, 2020 19 commits
-
-
Mayra Cabrera authored
Support markdown in user's bio attribute See merge request gitlab-org/gitlab!35604
-
Mayra Cabrera authored
Track wiki page views in Snowplow See merge request gitlab-org/gitlab!35784
-
Mayra Cabrera authored
Add additional sort values for Jira issue finder See merge request gitlab-org/gitlab!36364
-
Serena Fang authored
-
Stan Hu authored
Convert serialized date times into UTC Closes #227487 See merge request gitlab-org/gitlab!36382
-
Serena Fang authored
-
Stan Hu authored
Adds over_storage_limit? method to EE::Namespace See merge request gitlab-org/gitlab!36358
-
Mike Jang authored
Add a tip to chatops_on_gitlabcom.md step 1 to help in the process See merge request gitlab-org/gitlab!36477
-
Angelo Gulina authored
-
Craig Norris authored
Create new operations/metrics page See merge request gitlab-org/gitlab!36500
-
Amy Qualls authored
Mark both the new operations/metrics page and the operations/ page as belonging to Monitor.
-
Suzanne Selhorn authored
-
Mayra Cabrera authored
Revert "Merge branch 'gitlab-json-multi' into 'master'" See merge request gitlab-org/gitlab!36498
-
Robert Speicher authored
Count health status only for opened issues See merge request gitlab-org/gitlab!36359
-
Robert Speicher authored
Geo Settings Form - Remove Old Code Closes #216134 See merge request gitlab-org/gitlab!35879
-
Stan Hu authored
Enable pagination for the Jira Issues controller See merge request gitlab-org/gitlab!36126
-
Brett Walker authored
for jira issue controller
-
Jose Ivan Vargas authored
Add Snowplow event for expanding security widget See merge request gitlab-org/gitlab!35909
-
Robert May authored
This reverts merge request !35527
-