summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | | | | | Attempt to fix spec in CIMichael Kozono2017-12-011-1/+1
| | | | | | | | |
| * | | | | | | | Log the find command usedMichael Kozono2017-12-011-0/+2
| | | | | | | | |
| * | | | | | | | Move temp table creation into the prepare jobMichael Kozono2017-12-016-77/+76
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Hopefully fixes spec failures in which the table doesn’t exist * Decouples the background migration from the post-deploy migration, e.g. we could easily run it again even though the table is dropped when finished.
| * | | | | | | | Fix migration for pre-Postgres 9.5Michael Kozono2017-12-011-1/+15
| | | | | | | | |
| * | | | | | | | Fix Rubocop offensesMichael Kozono2017-12-014-11/+9
| | | | | | | | |
| * | | | | | | | Drop temporary tracking table when finishedMichael Kozono2017-12-016-92/+131
| | | | | | | | |
| * | | | | | | | Refactor specsMichael Kozono2017-12-014-337/+183
| | | | | | | | |
| * | | | | | | | Speed up insertsMichael Kozono2017-12-011-2/+4
| | | | | | | | |
| * | | | | | | | Fallback on checksum jobsMichael Kozono2017-12-011-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since `calculate_checksum` depends on `Uploader` classes which are not defined in this background migration and may change at any time.
| * | | | | | | | Remove irrelevant copy-pasted codeMichael Kozono2017-12-011-20/+0
| | | | | | | | |
| * | | | | | | | Fix uploads.path length for long filenamesMichael Kozono2017-12-012-1/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This will prevent our other migration for adding old files to the uploads table from breaking.
| * | | | | | | | Fix MySQL path field lengthMichael Kozono2017-12-011-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I believe the field only needs to fit 519 at the moment but I’m rounding up to be a little safer. See the migration spec for more detail on the magic number 519.
| * | | | | | | | Store paths relative to CarrierWave.rootMichael Kozono2017-12-015-68/+79
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | So the path on source installs cannot be too long for our column. And fix the column length test since Route.path is limited to 255 chars, it doesn’t matter how many nested groups there are.
| * | | | | | | | Fix `ionice` prependMichael Kozono2017-12-011-1/+1
| | | | | | | | |
| * | | | | | | | Exclude `untracked_files_for_uploads` from schemaMichael Kozono2017-12-011-10/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Because it is a temporary table meant only to facilitate a migration of data. It is referenced only by the post-deploy migration and 2 related background migrations. It should be dropped when the data migration is finished.
| * | | | | | | | Clean up after testMichael Kozono2017-12-011-1/+7
| | | | | | | | |
| * | | | | | | | Remove unnecessary clearingMichael Kozono2017-12-012-7/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since duplicate inserts are now ignored.
| * | | | | | | | Reword testMichael Kozono2017-12-011-1/+1
| | | | | | | | |
| * | | | | | | | Rename table to untracked_files_for_uploadsMichael Kozono2017-12-017-157/+157
| | | | | | | | |
| * | | | | | | | Refactor, no change in behaviorMichael Kozono2017-12-015-39/+53
| | | | | | | | |
| * | | | | | | | Use `find` `-prune` option for performanceMichael Kozono2017-12-011-2/+4
| | | | | | | | |
| * | | | | | | | Make regexes more readableMichael Kozono2017-12-012-13/+13
| | | | | | | | |
| * | | | | | | | Avoid instantiating an AR object and ignore dupesMichael Kozono2017-12-011-1/+15
| | | | | | | | |
| * | | | | | | | Add changelog entryMichael Kozono2017-12-011-0/+5
| | | | | | | | |
| * | | | | | | | Fix Rubocop offensesMichael Kozono2017-12-014-14/+14
| | | | | | | | |
| * | | | | | | | Test batch processingMichael Kozono2017-12-011-0/+42
| | | | | | | | |
| * | | | | | | | Allow individual failuresMichael Kozono2017-12-011-16/+24
| | | | | | | | |
| * | | | | | | | Calculate checksumsMichael Kozono2017-12-013-110/+170
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | by copy-pasting in the whole `Upload` class. Also, fix `Namespace` `model_type` (it should not be `Group`).
| * | | | | | | | Add untracked files to uploadsMichael Kozono2017-12-013-34/+752
| | | | | | | | |
| * | | | | | | | Kick off follow up background migration jobsMichael Kozono2017-12-013-17/+105
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | To process the unhashed_upload_files table.
| * | | | | | | | Find and store unhashed upload file pathsMichael Kozono2017-12-012-6/+132
| | | | | | | | |
| * | | | | | | | Backport `which` from EEMichael Kozono2017-12-012-1/+26
| | | | | | | | |
| * | | | | | | | Add TrackUntrackedUploads post-deploy migrationMichael Kozono2017-12-014-0/+195
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | To create the table, and schedule the background migration that begins the work.
* | | | | | | | | Merge branch ↵Clement Ho2017-12-071-8/+8
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | '40631-sidebar-icon-alignment-for-confidentiality-and-lock-issue-is-misaligned' into 'master' Resolve "Sidebar icon alignment for confidentiality and lock issue is misaligned" Closes #40631 See merge request gitlab-org/gitlab-ce!15692
| * | | | | | | | | Correct sidebar-item-icon margin and vertical align40631-sidebar-icon-alignment-for-confidentiality-and-lock-issue-is-misalignedLuke Bennett2017-12-021-8/+8
| |/ / / / / / / /
* | | | | | | | | Merge branch '40592-dropdown-options-are-misaligned' into 'master'Clement Ho2017-12-071-0/+1
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Resolve "Dropdown options are misaligned" Closes #40592 See merge request gitlab-org/gitlab-ce!15693
| * | | | | | | | | remove top from dropdown-label-box that is child of filter-dropdown-item40592-dropdown-options-are-misalignedLuke Bennett2017-12-021-0/+1
| |/ / / / / / / /
* | | | | | | | | Merge branch '32329-empty-state-for-changes-tab-in-mr' into 'master'Clement Ho2017-12-073-1/+20
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Resolve "Empty state for Changes tab in MR" Closes #32329 See merge request gitlab-org/gitlab-ce!15611
| * | | | | | | | | Update empty state page of merge request 'changes' tab32329-empty-state-for-changes-tab-in-mrVitaliy @blackst0ne Klachkov2017-11-303-1/+20
| | | | | | | | | |
* | | | | | | | | | Merge branch 'winh-tree-dropdown-caret' into 'master'Tim Zallmann2017-12-068-19/+36
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add chevron to create dropdown on repository page Closes #39458 See merge request gitlab-org/gitlab-ce!15648
| * | | | | | | | | | Add chevron to create dropdown on repository pageWinnie Hellmann2017-12-068-19/+36
|/ / / / / / / / / /
* | | | | | | | | | Merge branch ↵Tim Zallmann2017-12-066-26/+199
|\ \ \ \ \ \ \ \ \ \ | |_|_|_|/ / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | '22680-unlabel-slash-command-limit-autocomplete-to-applied-labels' into 'master' Resolve "/unlabel quick action - limit autocomplete to applied labels" Closes #22680 and #27319 See merge request gitlab-org/gitlab-ce!11110
| * | | | | | | | | Limit autocomplete menu to applied labelsVitaliy @blackst0ne Klachkov2017-11-286-26/+199
| | | | | | | | | |
* | | | | | | | | | Merge branch '35773-search-box-close-dropdown' into 'master'Annabel Dunstone Gray2017-12-063-69/+77
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Close all open dropdowns when search input is clicked Closes #35773 See merge request gitlab-org/gitlab-ce!15737
| * | | | | | | | | | Fix broken testsFilipa Lacerda2017-12-061-1/+1
| | | | | | | | | | |
| * | | | | | | | | | Updates the dropdown to match the docs and remove old hack of stop event ↵35773-search-box-close-dropdownFilipa Lacerda2017-12-063-71/+77
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | propagation
| * | | | | | | | | | Revert to adding open class to dropdownsAnnabel Dunstone Gray2017-12-051-3/+2
| | | | | | | | | | |
| * | | | | | | | | | Close all open dropdowns when search input is clickedAnnabel Dunstone Gray2017-12-051-0/+3
| | | | | | | | | | |
* | | | | | | | | | | Merge branch 'sh-bump-redis-actionpack' into 'master'Robert Speicher2017-12-062-15/+15
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bump redis-rails to 5.0.2 to get redis-store security updates Closes #40889 See merge request gitlab-org/gitlab-ce!15773
| * | | | | | | | | | | Bump redis-rails to 5.0.2 to get redis-store security updatesStan Hu2017-12-062-15/+15
| | | | | | | | | | | |