Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-11-19Add latest changes from gitlab-org/gitlab@13-6-stable-eev13.6.0-rc42GitLab Bot
2020-10-21Add latest changes from gitlab-org/gitlab@13-5-stable-eev13.5.0-rc42GitLab Bot
2020-09-19Add latest changes from gitlab-org/gitlab@13-4-stable-eeGitLab Bot
2020-08-20Add latest changes from gitlab-org/gitlab@13-3-stable-eeGitLab Bot
2020-07-20Add latest changes from gitlab-org/gitlab@13-2-stable-eeGitLab Bot
2020-06-18Add latest changes from gitlab-org/gitlab@13-1-stable-eeGitLab Bot
2019-05-14Optimise upload path callsSean McGivern
String#underscore isn't particularly slow, but it's possible for us to call it many times in a users autocomplete request, with mostly-static values ('User', 'Group', etc.). We can memoise this and save a surprising amount of time (around 10% of the total request time in some cases).
2019-04-25Merge branch 'security-approval-race-condition' into 'master'GitLab Release Tools Bot
Add ApplicationRecord#safe_ensure_unique method See merge request gitlab/gitlabhq!3054
2019-04-15Forbid the use of `#reload` and prefer `#reset`Kamil TrzciƄski
The `#reload` makes to load all objects into memory, and the main purpose of `#reload` is to drop the association cache. The `#reset` seems to solve exactly that case.
2019-04-12Add ApplicationRecord#safe_ensure_unique methodPatrick Bajao
Port of https://dev.gitlab.org/gitlab/gitlab-ee/merge_requests/866 to CE excluding the migration and service changes as they don't apply to CE.
2019-03-28Add a thin encapsulation around .pluck(:id)Nick Thomas
2019-02-06Avoid race conditions when creating GpgSignatureBob Van Landuyt
This avoids race conditions when creating GpgSignature.
2019-02-05Adds helper for `find_or_create_by` in transactionBob Van Landuyt
This allows us to call `find_or_create_by` on all models and scopes.
2019-01-15Add query method for id queryMark Chao
2018-11-14Add ApplicationRecord model classJan Provaznik
In Rails 5 all models by default inherit from ApplicationRecord.