Merge branch 'ce-to-ee-2018-01-09' into 'master'
CE upstream - Tuesday Closes #4519, #3953, #4308, gitlab-org/release/tasks#13, and gitaly#886 See merge request gitlab-org/gitlab-ee!3978
Showing
... | @@ -73,6 +73,10 @@ gem 'net-ldap' | ... | @@ -73,6 +73,10 @@ gem 'net-ldap' |
# Git Wiki | # Git Wiki | ||
# Required manually in config/initializers/gollum.rb to control load order | # Required manually in config/initializers/gollum.rb to control load order | ||
gem 'gollum-lib', '~> 4.2', require: false | gem 'gollum-lib', '~> 4.2', require: false | ||
# Before updating this gem, check if | |||
# https://github.com/gollum/rugged_adapter/pull/28 has been merged. | |||
# If it has, then remove the monkey patch for tree_entry in config/initializers/gollum.rb | |||
gem 'gollum-rugged_adapter', '~> 0.4.4', require: false | gem 'gollum-rugged_adapter', '~> 0.4.4', require: false | ||
# Language detection | # Language detection | ||
... | @@ -81,7 +85,7 @@ gem 'github-linguist', '~> 4.7.0', require: 'linguist' | ... | @@ -81,7 +85,7 @@ gem 'github-linguist', '~> 4.7.0', require: 'linguist' |
# API | # API | ||
gem 'grape', '~> 1.0' | gem 'grape', '~> 1.0' | ||
gem 'grape-entity', '~> 0.6.0' | gem 'grape-entity', '~> 0.6.0' | ||
gem 'rack-cors', '~> 0.4.0', require: 'rack/cors' | gem 'rack-cors', '~> 1.0.0', require: 'rack/cors' | ||
# Disable strong_params so that Mash does not respond to :permitted? | # Disable strong_params so that Mash does not respond to :permitted? | ||
gem 'hashie-forbidden_attributes' | gem 'hashie-forbidden_attributes' | ||
... | ... |
This diff is collapsed.
... | @@ -15,7 +15,6 @@ | ... | @@ -15,7 +15,6 @@ |
"dependencies": { | "dependencies": { | ||
"autosize": "^4.0.0", | "autosize": "^4.0.0", | ||
"axios": "^0.17.1", | "axios": "^0.17.1", | ||
"axios-mock-adapter": "^1.10.0", | |||
"babel-core": "^6.26.0", | "babel-core": "^6.26.0", | ||
"babel-eslint": "^8.0.2", | "babel-eslint": "^8.0.2", | ||
"babel-loader": "^7.1.2", | "babel-loader": "^7.1.2", | ||
... | @@ -91,6 +90,7 @@ | ... | @@ -91,6 +90,7 @@ |
}, | }, | ||
"devDependencies": { | "devDependencies": { | ||
"@gitlab-org/gitlab-svgs": "^1.5.0", | "@gitlab-org/gitlab-svgs": "^1.5.0", | ||
"axios-mock-adapter": "^1.10.0", | |||
"babel-plugin-istanbul": "^4.1.5", | "babel-plugin-istanbul": "^4.1.5", | ||
"eslint": "^3.10.1", | "eslint": "^3.10.1", | ||
"eslint-config-airbnb-base": "^10.0.1", | "eslint-config-airbnb-base": "^10.0.1", | ||
... | ... |
Please register or sign in to comment