Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add latest changes from gitlab-org/gitlab@master | GitLab Bot | 2019-10-16 | 1 | -1/+1 |
| | |||||
* | Add latest changes from gitlab-org/gitlab@master | GitLab Bot | 2019-10-03 | 1 | -10/+15 |
| | |||||
* | Add latest changes from gitlab-org/gitlab@master | GitLab Bot | 2019-10-02 | 1 | -12/+12 |
| | |||||
* | Add rake tasks for migrating leacy uploadslegacy-attachments-migrate-fix | Jarka Košanová | 2019-08-16 | 1 | -4/+1 |
| | | | | | - move uploads created by AttachmentUploader - handle also files created for legacy_diff_notes | ||||
* | Add frozen_string_literal to spec/factoriesfrozen_string_spec_factories | Thong Kuah | 2019-07-26 | 1 | -0/+2 |
| | | | | | Using the sed script from https://gitlab.com/gitlab-org/gitlab-ce/issues/59758 | ||||
* | Revert "Merge branch '50070-legacy-attachments' into 'master'"sh-revert-mr-24679 | Stan Hu | 2019-06-09 | 1 | -1/+4 |
| | | | | | This reverts commit fd19f887dfeeeedb483c4a4fb32f9f768e89389c, reversing changes made to abb2d4c601d796339c8d7cb0c00946696730f198. | ||||
* | Migrate legacy uploads to the project location50070-legacy-attachments | Jarka Košanová | 2019-06-06 | 1 | -4/+1 |
| | | | | | | Uploads coming from AttachmentUploader need to be moved to the currently supported location (FileUploader) | ||||
* | Optimise upload path calls | Sean McGivern | 2019-05-14 | 1 | -1/+1 |
| | | | | | | | | 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). | ||||
* | Fix DynamicAttributeDefinedStatically cop | Semyon Pupkov | 2018-09-21 | 1 | -5/+5 |
| | |||||
* | Backport of https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/6860 | Valery Sizov | 2018-08-14 | 1 | -0/+7 |
| | |||||
* | update uploads saver | James Lopez | 2018-07-10 | 1 | -0/+7 |
| | |||||
* | remove geo specific code | Micaël Bergeron | 2018-03-01 | 1 | -1/+0 |
| | |||||
* | port the object storage to CE | Micaël Bergeron | 2018-03-01 | 1 | -0/+5 |
| | |||||
* | Merge commit '7e424eb852716495073881710e8a8851b4a4cd5a' into ↵ | Kamil Trzciński | 2018-02-28 | 1 | -8/+12 |
|\ | | | | | | | object-storage-ee-to-ce-backport | ||||
| * | add the uploader context to the upload model | Micaël Bergeron | 2018-02-02 | 1 | -8/+12 |
| | | |||||
| * | port of 594e6a0a625^..f74c90f68c6 | Micaël Bergeron | 2018-02-01 | 1 | -4/+22 |
| | | |||||
* | | Merge branch '4163-move-uploads-to-object-storage' into 'master' | Sean McGivern | 2018-02-28 | 1 | -4/+23 |
|/ | | | | | | | | Move uploads to object storage Closes #4163 See merge request gitlab-org/gitlab-ee!3867 | ||||
* | Replace factory_girl_rails with factory_bot_railsrc/use-factory_bot_rails | Rémy Coutable | 2017-12-14 | 1 | -1/+1 |
| | | | | | | | | | | | I've followed the [upgrade guide](https://github.com/thoughtbot/factory_bot/blob/4-9-0-stable/UPGRADE_FROM_FACTORY_GIRL.md) and ran these two commands: ``` grep -e FactoryGirl **/*.rake **/*.rb -s -l | xargs sed -i "" "s|FactoryGirl|FactoryBot|" grep -e factory_girl **/*.rake **/*.rb -s -l | xargs sed -i "" "s|factory_girl|factory_bot|" ``` Signed-off-by: Rémy Coutable <remy@rymai.me> | ||||
* | Support uploads for groups | Jarka Kadlecova | 2017-12-07 | 1 | -0/+16 |
| | |||||
* | Change all `:empty_project` to `:project`rs-empty_project-default | Robert Speicher | 2017-08-02 | 1 | -1/+1 |
| | |||||
* | Ensure all project factories use `:repository` trait or `:empty_project`rs-empty_project-cleanup | Robert Speicher | 2017-08-01 | 1 | -1/+1 |
| | |||||
* | Update specs for new upload path | Bob Van Landuyt | 2017-07-18 | 1 | -1/+1 |
| | |||||
* | Bring in security changes from the 9.2.5 release | DJ Mountney | 2017-06-07 | 1 | -0/+8 |
Ran: - git format-patch v9.2.2..v9.2.5 --stdout > patchfile.patch - git checkout -b 9-2-5-security-patch origin/v9.2.2 - git apply patchfile.patch - git commit - [Got the sha ref for the commit] - git checkout -b upstream-9-2-security master - git cherry-pick <SHA of the patchfile commit> - [Resolved conflicts] - git cherry-pick --continue |