Skip to content

Commit

Permalink
gitlab: 12.5.5 -> 12.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
talyz committed Dec 22, 2019
1 parent a3c72e6 commit ff28cfa
Show file tree
Hide file tree
Showing 6 changed files with 341 additions and 261 deletions.
12 changes: 6 additions & 6 deletions pkgs/applications/version-management/gitlab/data.json
@@ -1,13 +1,13 @@
{
"version": "12.5.5",
"repo_hash": "1vafy31s2sbs6xc2cp457k535yyawz630i8ks22ypyg2m2gy5n5m",
"version": "12.6.0",
"repo_hash": "1pm630yaxgljrj5jwgsbk7yvdlna7riispc67gfrmf0kq8p80hjx",
"owner": "gitlab-org",
"repo": "gitlab",
"rev": "v12.5.5-ee",
"rev": "v12.6.0-ee",
"passthru": {
"GITALY_SERVER_VERSION": "1.72.1",
"GITALY_SERVER_VERSION": "a4b6c71d4b7c1588587345e2dfe0c6bd7cc63a83",
"GITLAB_PAGES_VERSION": "1.12.0",
"GITLAB_SHELL_VERSION": "10.2.0",
"GITLAB_WORKHORSE_VERSION": "8.14.1"
"GITLAB_SHELL_VERSION": "10.3.0",
"GITLAB_WORKHORSE_VERSION": "8.18.0"
}
}
9 changes: 8 additions & 1 deletion pkgs/applications/version-management/gitlab/default.nix
Expand Up @@ -43,7 +43,14 @@ let
pname = "gitlab-assets";
inherit version src;

nativeBuildInputs = [ rubyEnv.wrappedRuby rubyEnv.bundler nodejs yarn ];
nativeBuildInputs = [ rubyEnv.wrappedRuby rubyEnv.bundler nodejs yarn git ];

# Since version 12.6.0, the rake tasks need the location of git,
# so we have to apply the location patches here too.
patches = [ ./remove-hardcoded-locations.patch ];
# One of the patches uses this variable - if it's unset, execution
# of rake tasks fails.
GITLAB_LOG_PATH = "log";

configurePhase = ''
runHook preConfigure
Expand Down
49 changes: 25 additions & 24 deletions pkgs/applications/version-management/gitlab/rubyEnv/Gemfile
Expand Up @@ -22,6 +22,7 @@ gem 'rugged', '~> 0.28'
gem 'grape-path-helpers', '~> 1.1'

gem 'faraday', '~> 0.12'
gem 'marginalia', '~> 1.8.0'

# Authentication libraries
gem 'devise', '~> 4.6'
Expand Down Expand Up @@ -101,7 +102,7 @@ gem 'hashie-forbidden_attributes'
gem 'kaminari', '~> 1.0'

# HAML
gem 'hamlit', '~> 2.8.8'
gem 'hamlit', '~> 2.11.0'

# Files attachments
gem 'carrierwave', '~> 1.3'
Expand Down Expand Up @@ -135,11 +136,11 @@ gem 'aws-sdk'
gem 'faraday_middleware-aws-signers-v4'

# Markdown and HTML processing
gem 'html-pipeline', '~> 2.8'
gem 'html-pipeline', '~> 2.12'
gem 'deckar01-task_list', '2.2.1'
gem 'gitlab-markup', '~> 1.7.0'
gem 'github-markup', '~> 1.7.0', require: 'github/markup'
gem 'commonmarker', '~> 0.17'
gem 'commonmarker', '~> 0.20'
gem 'RedCloth', '~> 4.3.2'
gem 'rdoc', '~> 6.0'
gem 'org-ruby', '~> 0.9.12'
Expand Down Expand Up @@ -170,8 +171,8 @@ group :unicorn do
end

group :puma do
gem 'puma', '~> 3.12', require: false
gem 'puma_worker_killer', require: false
gem 'gitlab-puma', '~> 4.3.1.gitlab.2', require: false
gem 'gitlab-puma_worker_killer', '~> 0.1.1.gitlab.1', require: false
gem 'rack-timeout', require: false
end

Expand Down Expand Up @@ -273,8 +274,8 @@ gem 'mimemagic', '~> 0.3.2'
gem 'fast_blank'

# Parse time & duration
gem 'chronic', '~> 0.10.2'
gem 'gitlab_chronic_duration', '~> 0.10.6.1'
gem 'gitlab-chronic', '~> 0.10.5'
gem 'gitlab_chronic_duration', '~> 0.10.6.2'

gem 'webpack-rails', '~> 0.9.10'
gem 'rack-proxy', '~> 0.6.0'
Expand Down Expand Up @@ -312,8 +313,7 @@ gem 'gettext', '~> 3.2.2', require: false, group: :development
gem 'batch-loader', '~> 1.4.0'

# Perf bar
# https://gitlab.com/gitlab-org/gitlab/issues/13996
gem 'gitlab-peek', '~> 0.0.1', require: 'peek'
gem 'peek', '~> 1.1'

# Snowplow events tracking
gem 'snowplow-tracker', '~> 0.6.1'
Expand Down Expand Up @@ -347,31 +347,22 @@ group :development do
end

group :development, :test do
gem 'bullet', '~> 5.5.0', require: !!ENV['ENABLE_BULLET']
gem 'bullet', '~> 6.0.2', require: !!ENV['ENABLE_BULLET']
gem 'pry-byebug', '~> 3.5.1', platform: :mri
gem 'pry-rails', '~> 0.3.4'

gem 'awesome_print', require: false
gem 'fuubar', '~> 2.2.0'

gem 'database_cleaner', '~> 1.7.0'
gem 'factory_bot_rails', '~> 5.1.0'
gem 'rspec-rails', '~> 3.8.0'
gem 'rspec-retry', '~> 0.6.1'
gem 'rspec_profiling', '~> 0.0.5'
gem 'rspec-set', '~> 0.1.3'
gem 'rspec-parameterized', require: false
gem 'rspec-rails', '~> 4.0.0.beta3'

# Prevent occasions where minitest is not bundled in packaged versions of ruby (see #3826)
gem 'minitest', '~> 5.11.0'

# Generate Fake data
gem 'ffaker', '~> 2.10'

gem 'capybara', '~> 3.22.0'
gem 'capybara-screenshot', '~> 1.0.22'
gem 'selenium-webdriver', '~> 3.141'

gem 'spring', '~> 2.0.0'
gem 'spring-commands-rspec', '~> 1.0.4'

Expand All @@ -382,15 +373,15 @@ group :development, :test do
gem 'rubocop-rspec', '~> 1.22.1'

gem 'scss_lint', '~> 0.56.0', require: false
gem 'haml_lint', '~> 0.31.0', require: false
gem 'haml_lint', '~> 0.34.0', require: false
gem 'simplecov', '~> 0.16.1', require: false
gem 'bundler-audit', '~> 0.5.0', require: false

gem 'benchmark-ips', '~> 2.3.0', require: false

gem 'knapsack', '~> 1.17'

gem 'stackprof', '~> 0.2.10', require: false
gem 'stackprof', '~> 0.2.13', require: false

gem 'simple_po_parser', '~> 1.1.2', require: false

Expand All @@ -403,6 +394,16 @@ group :development, :test, :omnibus do
end

group :test do
gem 'fuubar', '~> 2.2.0'
gem 'rspec-retry', '~> 0.6.1'
gem 'rspec_profiling', '~> 0.0.5'
gem 'rspec-set', '~> 0.1.3'
gem 'rspec-parameterized', require: false

gem 'capybara', '~> 3.22.0'
gem 'capybara-screenshot', '~> 1.0.22'
gem 'selenium-webdriver', '~> 3.142'

gem 'shoulda-matchers', '~> 4.0.1', require: false
gem 'email_spec', '~> 2.2.0'
gem 'json-schema', '~> 2.8.0'
Expand All @@ -416,7 +417,7 @@ end

gem 'octokit', '~> 4.9'

gem 'mail_room', '~> 0.9.1'
gem 'mail_room', '~> 0.10.0'

gem 'email_reply_trimmer', '~> 0.1'
gem 'html2text'
Expand Down Expand Up @@ -451,7 +452,7 @@ group :ed25519 do
end

# Gitaly GRPC protocol definitions
gem 'gitaly', '~> 1.70.0'
gem 'gitaly', '~> 1.73.0'

gem 'grpc', '~> 1.24.0'

Expand Down

0 comments on commit ff28cfa

Please sign in to comment.