- 20 May, 2021 40 commits
-
-
Craig Norris authored
Add new words to the spelling exceptions list See merge request gitlab-org/gitlab!62049
-
Amy Qualls authored
-
Rémy Coutable authored
Merge branch '331102-incorrect-system-notes-and-email-notifications-when-unassigning-users-via-api' into 'master' Resolve "Incorrect system notes and email notifications when unassigning users via API" See merge request gitlab-org/gitlab!61897
-
Mikołaj Wawrzyniak authored
Properly process stale container repository cleanups See merge request gitlab-org/gitlab!62005
-
David Fernandez authored
-
Etienne Baqué authored
Enable load balancing for WebHookWorker [RUN ALL RSPEC] [RUN AS-IF-FOSS] See merge request gitlab-org/gitlab!62075
-
Achilleas Pipinellis authored
Add note on mismatched external_url causing Geo status page 401 See merge request gitlab-org/gitlab!62142
-
Achilleas Pipinellis authored
List storages not included in backups See merge request gitlab-org/gitlab!61846
-
Harsh Chouraria authored
-
Marcia Ramos authored
Add testing best practices for Elasticsearch See merge request gitlab-org/gitlab!61171
-
Terri Chu authored
-
Marcia Ramos authored
Added note on recommended approach See merge request gitlab-org/gitlab!62180
-
Natalia Tepluhina authored
Add a common thWidthClass table utility function See merge request gitlab-org/gitlab!62100
-
Jiaan Louw authored
-
Natalia Tepluhina authored
Create status checks form and branch selection See merge request gitlab-org/gitlab!61700
-
Robert Hunt authored
-
Alex Kalderimis authored
Due to a bug in our sidekiq middleware, post-update actions were not being applied after changing assignees. This is fixed by changing the format of the arguments to the background worker. An unused worker is deleted, and we opt-in to the use of specialized workers in the API, meaning we can delete some duplicated code. Details of the fix: This is vital to getting correct deduplication behavior in our sidekiq middleware. The current logic is: - CLIENT creates hash from worker queue name and arguments (calling `#to_s`) - a job matching that hash is already running (in the working queue), it is not enqueued by the client. - otherwise, the job is serialized and sent to the server - SERVER pops the job and deserializes it - the server runs the job - The server calculates the deduplication hash, and deletes it, allowing similar jobs to be enqueued again. This protocol relies on serialization being completely isomorphic. i.e. `load . serialize === id`. If not, then the two hashes will not match, and the deduplication block will remain up, and not be taken down by the server. The workaround in our case is to use a round-trippable hashmap (i.e. string keys rather than symbols), since: ``` JSON.load({ 'x' => true}.to_json) == { 'x' => true } ``` but ``` JSON.load({ x: => true}.to_json) /= { x: => true } ``` See: https://gitlab.com/gitlab-com/gl-infra/scalability/-/issues/1090 Changelog: fixed
-
Achilleas Pipinellis authored
docs: Update Redis with the minimum version 5.0 See merge request gitlab-org/gitlab!62159
-
Mikołaj Wawrzyniak authored
Hide billing plans with hide card attribute See merge request gitlab-org/gitlab!61990
-
Vitaly Slobodin authored
-
Sean McGivern authored
Remove Unicorn support: delete Unicorn Sampler See merge request gitlab-org/gitlab!62090
-
David Fernandez authored
Move gosec to alphabetical order See merge request gitlab-org/gitlab!61948
-
David Fernandez authored
Fix blob preview error See merge request gitlab-org/gitlab!62128
-
Phil Hughes authored
Refactor LabelToken to use BaseToken See merge request gitlab-org/gitlab!61992
-
Mikołaj Wawrzyniak authored
Add description to 2 analytics metrics See merge request gitlab-org/gitlab!62046
-
Dan Jensen authored
-
Sean McGivern authored
Set current project/group in WebHookWorker context [RUN AS-IF-FOSS] See merge request gitlab-org/gitlab!62130
-
Nick Thomas authored
Merge branch '331461-follow-template-development-guidelines-on-container-scanning-template' into 'master' Follow template development guidelines for Container Scanning See merge request gitlab-org/gitlab!62157
-
Aleksei Lipniagov authored
With removing Unicorn support in 14.0, UnicornSampler is no longer needed. Raindrops was only used with Unicorn, so it could be removed too. Update the docs related to the change. Changelog: removed
-
Kati Paizee authored
List requirements to see FE snowplow events See merge request gitlab-org/gitlab!62077
-
Nicolas Dular authored
-
Alex Kalderimis authored
Keyset paginator for AR::Relation See merge request gitlab-org/gitlab!60412
-
Adam Hegyi authored
Initial implementation of the ActiveRecord::Relation keyset paginator.
-
Sashi Kumar Kumaresan authored
-
Vitali Tatarintev authored
Redirect some deprecated repository routes See merge request gitlab-org/gitlab!34867
-
Alessio Caiazza authored
Disable ci_drop_cyclical_triggered_pipelines feature flag See merge request gitlab-org/gitlab!62181
-
Vitali Tatarintev authored
Return 404 from branches API when repository does not exist See merge request gitlab-org/gitlab!62089
-
charlie ablett authored
Fix design management references in the the data dictionary See merge request gitlab-org/gitlab!62052
-
Nick Thomas authored
Fix argument help for Workhorse apiCiLongPollingDuration command See merge request gitlab-org/gitlab!62150
-
Marius Bobin authored
-