summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Enable SpaceAfterComma in scss-lintTakuya Noguchi2017-07-127-18/+22
|
* Merge branch 'fix/gb/stage-id-reference-background-migration' into 'master'Grzegorz Bizon2017-07-087-7/+189
|\ | | | | | | | | | | | | Add build stage_id reference background migration Closes #34151 See merge request !12513
| * Merge branch 'master' into 'fix/gb/stage-id-reference-background-migration'Grzegorz Bizon2017-07-07235-873/+3376
| |\ | | | | | | | | | | | | # Conflicts: # app/models/concerns/each_batch.rb # spec/models/concerns/each_batch_spec.rb
| * | Simplify stage_id migration as we now use relationsGrzegorz Bizon2017-07-071-9/+4
| | |
| * | Do not schedule bg migration when it is not neededGrzegorz Bizon2017-07-072-3/+2
| | |
| * | Schedule stage_id bg migrations in batches of 10Grzegorz Bizon2017-07-073-8/+13
| | |
| * | Use new `each_batch` helper instead of custom oneGrzegorz Bizon2017-07-073-11/+13
| | | | | | | | | | | | In stage_id backgrond migration.
| * | Merge remote-tracking branch 'origin/active-record-each-batch' into ↵Grzegorz Bizon2017-07-07172-753/+2454
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fix/gb/stage-id-reference-background-migration * origin/active-record-each-batch: (59 commits) Added EachBatch for iterating tables in batches Extend MR tabs a bit to cover up the avatar holder and collapse icon on scroll Update VERSION to 9.4.0-pre. Add CHANGELOG Fix some N+1 queries in the GET /projects API Don't show auxiliary blob viewer for README when there is no wiki Improve & fix the performance bar UI and behavior Remove orphaned haml files Fixed CHANGELOG.md for 9.3.4 release Add table for merge request commits 34727 Remove two columned layout from project member settings Just draw :legacy_builds Re-enable polling for environments Cleanup minor UX issues in the performance dashboard Upgrade GitLab Workhorse to v2.3.0 Added test for the chart legend Use correct field for label name, fix default for unit to be blank Fix shorter route helpers in production environment Encode certificate-authority-data in base64 Revert "Merge branch 'winh-mr-widget-no-pipeline' into 'master'" ...
| | * | Added EachBatch for iterating tables in batchesYorick Peterse2017-07-078-1/+185
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This module provides a class method called `each_batch` that can be used to iterate tables in batches in a more efficient way compared to Rails' `in_batches` method. This commit also includes a RuboCop cop to blacklist the use of `in_batches` in favour of this new method.
| * | | Revert recent changes in migration helpersGrzegorz Bizon2017-07-072-172/+30
| | | |
| * | | Add some comments on new migrations helpersGrzegorz Bizon2017-07-071-0/+38
| | | |
| * | | Schedule stage_id background migration in rangesGrzegorz Bizon2017-07-074-19/+22
| | | |
| * | | Extract `execute_in_batches` migrations helperGrzegorz Bizon2017-07-072-22/+60
| | | |
| * | | Add walk_table_in_batches and refactor migration helpersGrzegorz Bizon2017-07-072-31/+97
| | | |
| * | | Reduce a delay between stage_id scheduled migrationsGrzegorz Bizon2017-07-072-5/+5
| | | |
| * | | Improve exception description in bg migrationsGrzegorz Bizon2017-07-071-1/+3
| | | |
| * | | Do not override original AR5 batching interfaceGrzegorz Bizon2017-07-072-4/+7
| | | |
| * | | Sanitize id value passed to async background migrationGrzegorz Bizon2017-07-071-3/+1
| | | |
| * | | Improve code examples in background migrations docsGrzegorz Bizon2017-07-071-4/+2
| | | |
| * | | Add description to exception in bg migrations workerGrzegorz Bizon2017-07-071-1/+1
| | | |
| * | | Do not compare float with integer in migrations specsGrzegorz Bizon2017-07-071-1/+1
| | | |
| * | | Improve readability of build stage id migration queryGrzegorz Bizon2017-07-072-8/+9
| | | |
| * | | Use integers to schedule delayed background migrationsGrzegorz Bizon2017-07-072-3/+3
| | | |
| * | | Test if argument passed to a migration is presentGrzegorz Bizon2017-07-071-1/+1
| | | |
| * | | Make `inline` a default sidekiq testing processing againGrzegorz Bizon2017-07-071-1/+1
| | | |
| * | | Improve specs for background stage_id ref migrationGrzegorz Bizon2017-07-072-12/+18
| | | |
| * | | Perform stage_id ref backgound migration in bulksGrzegorz Bizon2017-07-071-3/+3
| | | |
| * | | Remove unused background migrations matcherGrzegorz Bizon2017-07-071-12/+0
| | | |
| * | | Use ActiveRecord 5 batching to schedule bg migrationGrzegorz Bizon2017-07-074-36/+32
| | | |
| * | | Make it possible to schedule bg migrations in bulkGrzegorz Bizon2017-07-074-8/+70
| | | |
| * | | Add specs for delayed stage_id background migrationsGrzegorz Bizon2017-07-072-7/+51
| | | |
| * | | Schedule background migration only when it is neededGrzegorz Bizon2017-07-071-4/+6
| | | |
| * | | Find builds that require a migration in batchesGrzegorz Bizon2017-07-072-3/+8
| | | |
| * | | Add initial build stage_id ref background migrationGrzegorz Bizon2017-07-073-7/+26
| | | |
| * | | Add initial stage_id background migration filesGrzegorz Bizon2017-07-073-0/+54
| | | |
* | | | Merge branch 'sh-optimize-mr-api' into 'master'Stan Hu2017-07-082-2/+4
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | Remove many N+1 queries with merge requests API See merge request !12726
| * | | | Remove many N+1 queries with merge requests APIsh-optimize-mr-apiStan Hu2017-07-072-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Identified via `ENABLE_BULLET=1 bundle exec rspec spec/requests/api/merge_requests_spec.rb:34` Improves speed of #34159
* | | | | Merge branch 'gitaly-internal-allowed-send-repo' into 'master'Robert Speicher2017-07-083-21/+91
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Send Gitaly Repository with /api/internal/allowed See merge request !12452
| * | | | | Send Gitaly Repository with /api/internal/allowedgitaly-internal-allowed-send-repoKim "BKC" Carlbäcker2017-07-073-21/+91
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Make single gitaly payload - Add feature-flag specs to verify payload
* | | | | | Merge branch 'fix_migrations_in_the_future' into 'master'Douwe Maan2017-07-074-1/+15
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fix migrations in the future Closes #34832 See merge request !12719
| * | | | | | Make wrong migrations idempotentfix_migrations_in_the_futureFelipe Artur2017-07-073-3/+11
| | | | | | |
| * | | | | | fix migrations in the futureFelipe Artur2017-07-074-1/+7
| | | | | | |
* | | | | | | Merge branch 'username-password-stripped-from-import-url-fix' into 'master'Douwe Maan2017-07-072-0/+9
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Username and password are no longer stripped from import url on import See merge request !12725
| * | | | | | | Username and password are no longer stripped from import url on importusername-password-stripped-from-import-url-fixTiago Botelho2017-07-072-0/+9
| | | | | | | |
* | | | | | | | Merge branch 'issue_34852' into 'master'Mike Greiling2017-07-071-1/+2
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fix milestones finder failing spec Closes #34852 See merge request !12727
| * | | | | | | | fix milestones finder failing specissue_34852Felipe Artur2017-07-071-1/+2
|/ / / / / / / /
* | | | | | | | Merge branch '34612-double-border-groups' into 'master'Phil Hughes2017-07-071-0/+6
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove double border on last group row Closes #34612 See merge request !12666
| * | | | | | | | Remove double border on last group rowAnnabel Dunstone Gray2017-07-071-0/+6
|/ / / / / / / /
* | | | | | | | Merge branch '2501-ce-port-update-welcome-page' into 'master'Jacob Schatz2017-07-0711-56/+184
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | CE port of updated welcome page See merge request !12662
| * | | | | | | Fix SVG scaling issue2501-ce-port-update-welcome-pagekushalpandya2017-07-071-3/+5
| | | | | | | |