Merge remote-tracking branch 'upstream/master' into ce-to-ee-2018-03-15
# Conflicts: # Gemfile.lock # app/models/ci/build.rb # lib/gitlab/slash_commands/command.rb [ci skip]
Showing
.prettierrc
0 → 100644
... | ... | @@ -34,7 +34,7 @@ gem 'omniauth-gitlab', '~> 1.0.2' |
gem 'omniauth-google-oauth2', '~> 0.5.2' | ||
gem 'omniauth-kerberos', '~> 0.3.0', group: :kerberos | ||
gem 'omniauth-oauth2-generic', '~> 0.2.2' | ||
gem 'omniauth-saml', '~> 1.7.0' | ||
gem 'omniauth-saml', '~> 1.10.0' | ||
gem 'omniauth-shibboleth', '~> 1.2.0' | ||
gem 'omniauth-twitter', '~> 1.2.0' | ||
gem 'omniauth_crowd', '~> 2.2.0' | ||
... | ... | @@ -162,7 +162,7 @@ end |
gem 'state_machines-activerecord', '~> 0.4.0' | ||
# Issue tags | ||
gem 'acts-as-taggable-on', '~> 4.0' | ||
gem 'acts-as-taggable-on', '~> 5.0' | ||
# Background jobs | ||
gem 'sidekiq', '~> 5.0' | ||
... | ... | @@ -174,7 +174,7 @@ gem 'sidekiq-limit_fetch', '~> 3.4', require: false |
gem 'rufus-scheduler', '~> 3.4' | ||
# HTTP requests | ||
gem 'httparty', '~> 0.13.3' | ||
gem 'httparty', '~> 0.15.6' | ||
# Colored output to console | ||
gem 'rainbow', '~> 2.2' | ||
... | ... | @@ -275,7 +275,7 @@ gem 'base32', '~> 0.3.0' |
gem "gitlab-license", "~> 1.0" | ||
# Sentry integration | ||
gem 'sentry-raven', '~> 2.5.3' | ||
gem 'sentry-raven', '~> 2.7' | ||
gem 'premailer-rails', '~> 1.9.7' | ||
... | ... | @@ -392,14 +392,14 @@ group :test do |
gem 'test-prof', '~> 0.2.5' | ||
end | ||
gem 'octokit', '~> 4.6.2' | ||
gem 'octokit', '~> 4.8' | ||
gem 'mail_room', '~> 0.9.1' | ||
gem 'email_reply_trimmer', '~> 0.1' | ||
gem 'html2text' | ||
gem 'ruby-prof', '~> 0.16.2' | ||
gem 'ruby-prof', '~> 0.17.0' | ||
# OAuth | ||
gem 'oauth2', '~> 1.4' | ||
... | ... | @@ -415,7 +415,7 @@ gem 'sys-filesystem', '~> 1.1.6' |
gem 'net-ntp' | ||
# SSH host key support | ||
gem 'net-ssh', '~> 4.1.0' | ||
gem 'net-ssh', '~> 4.2.0' | ||
gem 'sshkey', '~> 1.9.0' | ||
# Required for ED25519 SSH host key support | ||
... | ... |
File moved
... | ... | @@ -8,6 +8,10 @@ |
"karma": "karma start config/karma.config.js --single-run", | ||
"karma-coverage": "BABEL_ENV=coverage karma start config/karma.config.js --single-run", | ||
"karma-start": "karma start config/karma.config.js", | ||
"prettier-staged": "node ./scripts/frontend/prettier.js", | ||
"prettier-staged-save": "node ./scripts/frontend/prettier.js save", | ||
"prettier-all": "node ./scripts/frontend/prettier.js check-all", | ||
"prettier-all-save": "node ./scripts/frontend/prettier.js save-all", | ||
"webpack": "webpack --config config/webpack.config.js", | ||
"webpack-prod": "NODE_ENV=production webpack --config config/webpack.config.js" | ||
}, | ||
... | ... | @@ -116,7 +120,7 @@ |
"karma-sourcemap-loader": "^0.3.7", | ||
"karma-webpack": "2.0.7", | ||
"nodemon": "^1.15.1", | ||
"prettier": "1.9.2", | ||
"prettier": "1.11.1", | ||
"webpack-dev-server": "^2.11.2" | ||
} | ||
} |
scripts/frontend/prettier.js
0 → 100644
Please register or sign in to comment