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
2018-01-18Update rubocop, rubocop-rspec, and gitlab-stylesRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-01-16Use the fast_blank gemdosire
See https://github.com/rails/rails/pull/24658#issuecomment-212651965
2018-01-16Update seed-fu to a version compatible with postgresql 10Nick Thomas
2018-01-15Migrate importing repository to GitalyAhmad Sherif
Closes gitaly#907
2018-01-12Merge branch 'grpc-1.8.3' into 'master'Sean McGivern
Update the grpc gem to 1.8.3 See merge request gitlab-org/gitlab-ce!16354
2018-01-11Merge branch 'remove-soft-removals' into 'master'Douwe Maan
Remove soft removals related code Closes #37447 See merge request gitlab-org/gitlab-ce!15789
2018-01-10Update the grpc gem to 1.8.3Jacob Vosmaer
2018-01-09Add support for multiple refmaps to RemoteService#add_remoteAhmad Sherif
Closes gitaly#903
2018-01-08Remove soft removals related codeYorick Peterse
This removes all usage of soft removals except for the "pending delete" system implemented for projects. This in turn simplifies all the query plans of the models that used soft removals. Since we don't really use soft removals for anything useful there's no point in keeping it around. This _does_ mean that hard removals of issues (which only admins can do if I'm not mistaken) can influence the "iid" values, but that code is broken to begin with. More on this (and how to fix it) can be found in https://gitlab.com/gitlab-org/gitlab-ce/issues/31114. Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/37447
2018-01-08Merge branch 'rs-update-rack-cors' into 'master'Nick Thomas
Update rack-cors from 0.4.0 to 1.0.2 Closes #41199 See merge request gitlab-org/gitlab-ce!16183
2018-01-08Update scss-lint to 0.56.0Takuya Noguchi
2018-01-05Update redis-rack to 2.0.4Yorick Peterse
Up until version 2.0.3 redis-rack included a "rake" binary that would overwrite/hijack the one provided by Rake itself. Unfortunately the binary provided by redis-rack would produce errors in many cases. See https://github.com/redis-store/redis-rack/pull/34 for more info.
2018-01-03Merge branch 'migrate-fork-repo-to-gitaly' into 'master'Robert Speicher
Migrate repo forking to Gitaly Closes gitaly#825 See merge request gitlab-org/gitlab-ce!16018
2018-01-02Update rack-cors from 0.4.0 to 1.0.2Robert Speicher
2018-01-02Migrate repo forking to GitalyAhmad Sherif
Closes gitaly#825
2018-01-02Update prometheus gem to version that adds inf+ bucket in accordance with ↵Pawel Chojnacki
Prometheus docs.
2017-12-29Merge branch 'bump_mysql_gem' into 'master'Robert Speicher
Bumped mysql2 gem version from 0.4.5 to 0.4.10. See merge request gitlab-org/gitlab-ce!16034
2017-12-28Bump Sidekiq version to 5.0.5Stan Hu
Minor changes: https://github.com/mperham/sidekiq/blob/master/Changes.md
2017-12-25Merge branch 'gitaly-remotes' into 'master'Dmitriy Zaporozhets
Incorporate Gitaly's RemoteService RPCs Closes gitaly#852 See merge request gitlab-org/gitlab-ce!16060
2017-12-23Incorporate Gitaly's RemoteService RPCsAlejandro Rodríguez
2017-12-22Use gitlab-stylesRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-12-22Bumped mysql2 gem version from 0.4.5 to 0.4.10.asaparov
2017-12-19Load commit in batches for pipelines#indexZeger-Jan van de Weg
Uses `list_commits_by_oid` on the CommitService, to request the needed commits for pipelines. These commits are needed to display the user that created the commit and the commit title. This includes fixes for tests failing that depended on the commit being `nil`. However, now these are batch loaded, this doesn't happen anymore and the commits are an instance of BatchLoader.
2017-12-15Merge branch 'rc/use-factory_bot_rails' into 'master'Robert Speicher
Replace factory_girl_rails with factory_bot_rails See merge request gitlab-org/gitlab-ce!15919
2017-12-14Merge branch 'feature/migrate-merge-base-to-gitaly' into 'master'Robert Speicher
Migrate Gitlab::Git::Repository#merge_base_commit to Gitaly Closes gitaly#808 See merge request gitlab-org/gitlab-ce!15770
2017-12-14Replace factory_girl_rails with factory_bot_railsRémy Coutable
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>
2017-12-14Update flipper to 0.11.0 and take advantage of the new featuresRémy Coutable
- Added an ActiveSupport (using Rails.cache) caching adapter - Overview of the new features can be found at https://johnnunemaker.com/flippin-features-at-runtime/ - Full Changelog can be found at https://github.com/jnunemaker/flipper/blob/v0.11.0/Changelog.md Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-12-13Migrate Gitlab::Git::Repository#merge_base_commit to GitalyAhmad Sherif
Closes gitaly#808
2017-12-09Properly bump prometheus-client-mmap gem versionsStan Hu
Only the Gemfile.lock was updated before.
2017-12-08Resolve "Include asset_sync gem"Ian Baum
2017-12-07Update prometheus-client-mmap gem to highly optimized versionPawel Chojnacki
+ change string concatenation to help with GC pressure. + fix metric producing incompatible label sets
2017-12-06Bump redis-rails to 5.0.2 to get redis-store security updatesStan Hu
2017-12-06Merge branch 'downgrade-grpc-to-1.4.5' into 'master'Sean McGivern
Downgrade the grpc gem to 1.4.5 See merge request gitlab-org/gitlab-ce!15746
2017-12-05Downgrade the grpc gem to 1.4.5Jacob Vosmaer
2017-12-05Migrate Gitlab::Git::Repository#revert to GitalyAhmad Sherif
Closes gitaly#780
2017-12-04Merge branch 'feature/migrate-cherry-pick-to-gitaly' into 'master'Robert Speicher
Migrate Gitlab::Git::Repository#cherry_pick to Gitaly Closes gitaly#737 See merge request gitlab-org/gitlab-ce!15517
2017-12-04Migrate Gitlab::Git::Repository#cherry_pick to GitalyAhmad Sherif
Closes gitaly#737
2017-12-04Merge branch '40691-upgrade-rails-to-4-2-10' into 'master'Douwe Maan
Resolve "Upgrade Rails to 4.2.10" Closes #40691 See merge request gitlab-org/gitlab-ce!15662
2017-12-04Update parser gem to remove warning about wrong ruby versionGabriel Mazetto
2017-12-01Update Rails to 4.2.10Rémy Coutable
Changes since 4.2.8: - [No change in ActionMailer](https://github.com/rails/rails/blob/v4.2.10/actionmailer/CHANGELOG.md) - [1 change and 1 regression fix in ActionPack](https://github.com/rails/rails/blob/v4.2.10/actionpack/CHANGELOG.md) - [No change in ActiveModel](https://github.com/rails/rails/blob/v4.2.10/activemodel/CHANGELOG.md) - [7 fixes in ActiveRecord](https://github.com/rails/rails/blob/v4.2.10/activerecord/CHANGELOG.md) - [5 fixes in ActiveSupport](https://github.com/rails/rails/blob/v4.2.10/activesupport/CHANGELOG.md) - [No change in Railties](https://github.com/rails/rails/blob/v4.2.10/railties/CHANGELOG.md) Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-11-30Pin seed-fu to 2.3.6 since 2.3.7 is brokenRémy Coutable
See https://gitlab.com/gitlab-org/gitlab-ce/issues/40690 and https://github.com/mbleigh/seed-fu/issues/123 for details. Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-11-28Lock seed-fu at the correct version in Gemfile.lockRobert Speicher
[ci skip]
2017-11-28Merge branch '40568-bump-seed-fu-to-2-3-7' into 'master'Rémy Coutable
Upgrade seed-fu to 2.3.7 Closes #40568 See merge request gitlab-org/gitlab-ce!15607
2017-11-27Update prometheus gem to fix build on RPiPawel Chojnacki
2017-11-27Merge branch '40481-bump-jquery-to-2-2-4' into 'master'Phil Hughes
Upgrade jQuery to 2.2.4 Closes #40481 See merge request gitlab-org/gitlab-ce!15570
2017-11-26Upgrade seed-fu to 2.3.7Takuya Noguchi
2017-11-24Update prometheus Gem to fix compilation on centos 6 duo to GCC not ↵Pawel Chojnacki
recognizing `std=c11` option
2017-11-24Move prometheus middle ware to prometheus initialized.Pawel Chojnacki
2017-11-23Upgrade jQuery to 2.2.4Takuya Noguchi
2017-11-23Update prometheus-client-gem to 0.7.0.beta33Pawel Chojnacki