debian-mirror-gitlab/debian/patches/0050-relax-stable-libs.patch

433 lines
12 KiB
Diff
Raw Normal View History

2019-05-04 01:01:32 +05:30
We should be able to update minor versions of stable libs without breaking
2016-04-05 22:57:46 +05:30
gitlab Gemfile
2017-01-15 13:33:34 +05:30
--- a/Gemfile
+++ b/Gemfile
2019-07-31 23:45:35 +05:30
@@ -8,7 +8,7 @@
2016-06-16 12:31:48 +05:30
# Responders respond_to and respond_with
2016-09-13 18:27:13 +05:30
gem 'responders', '~> 2.0'
2016-11-03 15:15:38 +05:30
-gem 'sprockets', '~> 3.7.0'
+gem 'sprockets', '~> 3.7'
2016-06-16 12:31:48 +05:30
# Default values for AR models
2019-02-15 18:28:22 +05:30
gem 'gitlab-default_value_for', '~> 3.1.1', require: 'default_value_for'
2019-07-31 23:45:35 +05:30
@@ -27,61 +27,61 @@
2018-05-09 12:38:34 +05:30
gem 'doorkeeper', '~> 4.3'
2018-11-08 20:39:57 +05:30
gem 'doorkeeper-openid_connect', '~> 1.5'
2018-05-09 12:38:34 +05:30
gem 'omniauth', '~> 1.8'
2018-03-26 14:57:00 +05:30
-gem 'omniauth-auth0', '~> 2.0.0'
+gem 'omniauth-auth0', '~> 2.0'
2018-03-18 12:27:51 +05:30
gem 'omniauth-azure-oauth2', '~> 0.0.9'
2017-09-10 18:21:32 +05:30
-gem 'omniauth-cas3', '~> 1.1.4'
2017-08-17 23:00:15 +05:30
-gem 'omniauth-facebook', '~> 4.0.0'
2017-09-10 18:21:32 +05:30
+gem 'omniauth-cas3', '~> 1.1', '>= 1.1.4'
2017-08-17 23:00:15 +05:30
+gem 'omniauth-facebook', '~> 4.0'
2018-10-15 15:54:03 +05:30
gem 'omniauth-github', '~> 1.3'
-gem 'omniauth-gitlab', '~> 1.0.2'
2018-03-19 12:30:19 +05:30
+gem 'omniauth-gitlab', '~> 1.0', '>= 1.0.2'
2019-02-15 18:28:22 +05:30
gem 'omniauth-google-oauth2', '~> 0.6.0'
2017-08-17 23:00:15 +05:30
gem 'omniauth-kerberos', '~> 0.3.0', group: :kerberos
gem 'omniauth-oauth2-generic', '~> 0.2.2'
2018-05-09 12:38:34 +05:30
gem 'omniauth-saml', '~> 1.10'
2018-11-08 20:39:57 +05:30
-gem 'omniauth-shibboleth', '~> 1.3.0'
+gem 'omniauth-shibboleth', '~> 1.3'
2018-05-09 12:38:34 +05:30
gem 'omniauth-twitter', '~> 1.4'
-gem 'omniauth_crowd', '~> 2.2.0'
2017-08-17 23:00:15 +05:30
+gem 'omniauth_crowd', '~> 2.2'
2018-11-08 20:39:57 +05:30
gem 'omniauth-authentiq', '~> 0.3.3'
2019-07-31 23:45:35 +05:30
gem 'omniauth_openid_connect', '~> 0.3.0'
gem "omniauth-ultraauth", '~> 0.0.2'
-gem 'omniauth-salesforce', '~> 1.0.5'
2019-05-18 00:59:38 +05:30
-gem 'rack-oauth2', '~> 1.9.3'
2019-02-15 18:28:22 +05:30
-gem 'jwt', '~> 2.1.0'
2019-07-31 23:45:35 +05:30
+gem 'omniauth-salesforce', '~> 1.0', '>= 1.0.5'
2019-05-18 00:59:38 +05:30
+gem 'rack-oauth2', '~> 1.9', '>= 1.9.3'
2019-02-15 18:28:22 +05:30
+gem 'jwt', '~> 2.1'
2016-06-16 12:31:48 +05:30
# Spam and anti-bot protection
2019-05-18 00:59:38 +05:30
gem 'recaptcha', '~> 4.11', require: 'recaptcha/rails'
2016-06-16 12:31:48 +05:30
gem 'akismet', '~> 2.0'
# Two-factor authentication
2016-06-16 23:10:45 +05:30
-gem 'devise-two-factor', '~> 3.0.0'
+gem 'devise-two-factor', '~> 3.0'
2016-06-16 12:31:48 +05:30
gem 'rqrcode-rails3', '~> 0.1.7'
2018-05-09 12:38:34 +05:30
-gem 'attr_encrypted', '~> 3.1.0'
+gem 'attr_encrypted', '~> 3.1'
2016-06-16 23:10:45 +05:30
gem 'u2f', '~> 0.2.1'
2016-06-16 12:31:48 +05:30
2017-08-17 23:00:15 +05:30
# GitLab Pages
-gem 'validates_hostname', '~> 1.0.6'
2019-02-15 18:28:22 +05:30
-gem 'rubyzip', '~> 1.2.2', require: 'zip'
2017-08-17 23:00:15 +05:30
+gem 'validates_hostname', '~> 1.0', '>= 1.0.6'
2019-02-15 18:28:22 +05:30
+gem 'rubyzip', '~> 1.2', '>= 1.2.2', require: 'zip'
2016-08-25 14:58:19 +05:30
2017-08-17 23:00:15 +05:30
# Browser detection
2018-11-20 21:00:51 +05:30
gem 'browser', '~> 2.5'
2019-02-15 18:28:22 +05:30
# GPG
-gem 'gpgme', '~> 2.0.18'
+gem 'gpgme', '~> 2.0', '>= 2.0.18'
2018-12-13 14:23:24 +05:30
# LDAP Auth
# GitLab fork with several improvements to original library. For full list of changes
# see https://github.com/intridea/omniauth-ldap/compare/master...gitlabhq:master
2019-05-18 00:59:38 +05:30
-gem 'gitlab_omniauth-ldap', '~> 2.1.1', require: 'omniauth-ldap'
+gem 'gitlab_omniauth-ldap', '~> 2.1', '>= 2.1.1', require: 'omniauth-ldap'
2018-12-13 14:23:24 +05:30
gem 'net-ldap'
2016-06-16 12:31:48 +05:30
# API
2019-02-15 18:28:22 +05:30
-gem 'grape', '~> 1.1.0'
+gem 'grape', '~> 1.1'
2018-10-15 15:54:03 +05:30
gem 'grape-entity', '~> 0.7.1'
2018-03-18 12:27:51 +05:30
-gem 'rack-cors', '~> 1.0.0', require: 'rack/cors'
+gem 'rack-cors', '~> 1.0', require: 'rack/cors'
2018-11-08 20:39:57 +05:30
# GraphQL API
-gem 'graphql', '~> 1.8.0'
2018-12-06 11:33:01 +05:30
-gem 'graphiql-rails', '~> 1.4.10'
2019-07-31 23:45:35 +05:30
-gem 'apollo_upload_server', '~> 2.0.0.beta3'
2018-11-08 20:39:57 +05:30
+gem 'graphql', '~> 1.8'
2018-12-06 11:33:01 +05:30
+gem 'graphiql-rails', '~> 1.4', '>= 1.4.10'
2019-07-31 23:45:35 +05:30
+gem 'apollo_upload_server', '~> 2.0', '>= 2.0.0.beta3'
2018-11-08 20:39:57 +05:30
2018-03-18 12:27:51 +05:30
# Disable strong_params so that Mash does not respond to :permitted?
2018-12-06 11:33:01 +05:30
gem 'hashie-forbidden_attributes'
2019-07-31 23:45:35 +05:30
@@ -90,7 +90,7 @@
2017-09-10 18:21:32 +05:30
gem 'kaminari', '~> 1.0'
2016-09-13 18:27:13 +05:30
# HAML
2018-11-18 11:20:06 +05:30
-gem 'hamlit', '~> 2.8.8'
+gem 'hamlit', '~> 2.8', '>= 2.8.8'
2016-09-13 18:27:13 +05:30
# Files attachments
2019-02-15 18:28:22 +05:30
gem 'carrierwave', '~> 1.3'
2019-07-31 23:45:35 +05:30
@@ -100,7 +100,7 @@
2019-05-18 00:59:38 +05:30
gem 'fog-aws', '~> 3.3'
# Locked until fog-google resolves https://github.com/fog/fog-google/issues/421.
# Also see config/initializers/fog_core_patch.rb.
-gem 'fog-core', '= 2.1.0'
+gem 'fog-core', '= 2.1'
gem 'fog-google', '~> 1.8'
gem 'fog-local', '~> 0.6'
gem 'fog-openstack', '~> 1.0'
2019-07-31 23:45:35 +05:30
@@ -114,38 +114,38 @@
2018-03-18 12:27:51 +05:30
gem 'unf', '~> 0.1.4'
# Seed data
-gem 'seed-fu', '~> 2.3.7'
+gem 'seed-fu', '~> 2.3', '>= 2.3.7'
2016-06-16 12:31:48 +05:30
2016-03-15 21:57:01 +05:30
# Markdown and HTML processing
2018-11-08 20:39:57 +05:30
gem 'html-pipeline', '~> 2.8'
-gem 'deckar01-task_list', '2.2.0'
2019-05-18 00:59:38 +05:30
-gem 'gitlab-markup', '~> 1.7.0'
2018-12-06 11:33:01 +05:30
-gem 'github-markup', '~> 1.7.0', require: 'github/markup'
2019-07-31 23:45:35 +05:30
+gem 'deckar01-task_list', '2.2'
2019-05-18 00:59:38 +05:30
+gem 'gitlab-markup', '~> 1.7'
2018-12-06 11:33:01 +05:30
+gem 'github-markup', '~> 1.7', require: 'github/markup'
2018-03-27 20:24:05 +05:30
gem 'commonmarker', '~> 0.17'
2017-08-17 23:00:15 +05:30
-gem 'RedCloth', '~> 4.3.2'
+gem 'RedCloth', '~> 4.3', '>= 4.3.2'
2018-11-08 20:39:57 +05:30
gem 'rdoc', '~> 6.0'
2017-08-17 23:00:15 +05:30
gem 'org-ruby', '~> 0.9.12'
gem 'creole', '~> 0.5.0'
gem 'wikicloth', '0.8.1'
2018-12-24 00:09:40 +05:30
-gem 'asciidoctor', '~> 1.5.8'
+gem 'asciidoctor', '~> 1.5', '>= 1.5.8'
2019-02-15 18:28:22 +05:30
gem 'asciidoctor-plantuml', '0.0.8'
2018-06-27 16:13:27 +05:30
gem 'rouge', '~> 3.1'
gem 'truncato', '~> 0.7.11'
2019-05-18 00:59:38 +05:30
-gem 'bootstrap_form', '~> 4.2.0'
2019-07-31 23:45:35 +05:30
-gem 'nokogiri', '~> 1.10.3'
2019-05-18 00:59:38 +05:30
+gem 'bootstrap_form', '~> 4.2'
2019-07-31 23:45:35 +05:30
+gem 'nokogiri', '~> 1.10', '>= 1.10.3'
2018-12-13 14:23:24 +05:30
gem 'escape_utils', '~> 1.1'
2016-06-16 12:31:48 +05:30
2018-11-08 20:39:57 +05:30
# Calendar rendering
gem 'icalendar'
2016-06-16 12:31:48 +05:30
# Diffs
2017-08-17 23:00:15 +05:30
-gem 'diffy', '~> 3.1.0'
+gem 'diffy', '~> 3.1'
2016-06-16 12:31:48 +05:30
# Application server
2019-07-31 23:45:35 +05:30
-gem 'rack', '~> 2.0.7'
+gem 'rack', '~> 2.0', '>= 2.0.7'
2018-12-24 00:09:40 +05:30
2016-06-16 12:31:48 +05:30
group :unicorn do
2019-05-18 00:59:38 +05:30
- gem 'unicorn', '~> 5.4.1'
+ gem 'unicorn', '~> 5.4', '>= 5.4.1'
2016-11-03 15:15:38 +05:30
gem 'unicorn-worker-killer', '~> 0.4.4'
2016-06-16 12:31:48 +05:30
end
2019-07-31 23:45:35 +05:30
@@ -161,9 +161,9 @@
2019-05-18 00:59:38 +05:30
gem 'acts-as-taggable-on', '~> 6.0'
2018-12-06 11:33:01 +05:30
2016-06-16 12:31:48 +05:30
# Background jobs
2019-07-31 23:45:35 +05:30
-gem 'sidekiq', '~> 5.2.7'
+gem 'sidekiq', '~> 5.2', '>= 5.2.7'
gem 'sidekiq-cron', '~> 1.0'
2018-11-08 20:39:57 +05:30
-gem 'redis-namespace', '~> 1.6.0'
+gem 'redis-namespace', '~> 1.6'
2019-02-15 18:28:22 +05:30
gem 'gitlab-sidekiq-fetcher', '~> 0.4.0', require: 'sidekiq-reliable-fetch'
2017-08-17 23:00:15 +05:30
# Cron Parser
2019-07-31 23:45:35 +05:30
@@ -179,14 +179,14 @@
2018-11-08 20:39:57 +05:30
gem 'ruby-progressbar'
2016-06-16 12:31:48 +05:30
# GitLab settings
-gem 'settingslogic', '~> 2.0.9'
+gem 'settingslogic', '~> 2.0', '>= 2.0.9'
2017-08-17 23:00:15 +05:30
# Linear-time regex library for untrusted regular expressions
2017-09-10 18:21:32 +05:30
-gem 're2', '~> 1.1.1'
+gem 're2', '~> 1.1', '>= 1.1.1'
2017-08-17 23:00:15 +05:30
2016-06-16 12:31:48 +05:30
# Misc
2019-05-18 00:59:38 +05:30
-gem 'version_sorter', '~> 2.2.4'
+gem 'version_sorter', '~> 2.2', '>= 2.2.4'
2016-06-16 12:31:48 +05:30
2018-11-20 21:00:51 +05:30
# Export Ruby Regex to Javascript
gem 'js_regex', '~> 3.1'
2019-07-31 23:45:35 +05:30
@@ -195,7 +195,7 @@
2018-10-15 15:54:03 +05:30
gem 'device_detector'
2016-06-16 12:31:48 +05:30
# Cache
2018-03-18 12:27:51 +05:30
-gem 'redis-rails', '~> 5.0.2'
+gem 'redis-rails', '~> 5.0', '>= 5.0.2'
2016-06-16 12:31:48 +05:30
# Redis
gem 'redis', '~> 3.2'
2019-07-31 23:45:35 +05:30
@@ -205,7 +205,7 @@
2018-12-24 00:09:40 +05:30
gem 'discordrb-webhooks-blackst0ne', '~> 3.3', require: false
2016-06-16 12:31:48 +05:30
# HipChat integration
-gem 'hipchat', '~> 1.5.0'
+gem 'hipchat', '~> 1.5'
2017-08-17 23:00:15 +05:30
# JIRA integration
2018-03-18 12:27:51 +05:30
gem 'jira-ruby', '~> 1.4'
2019-07-31 23:45:35 +05:30
@@ -214,7 +214,7 @@
2018-12-13 14:23:24 +05:30
gem 'flowdock', '~> 0.7'
2016-09-13 18:27:13 +05:30
2016-06-16 12:31:48 +05:30
# Slack integration
2017-08-17 23:00:15 +05:30
-gem 'slack-notifier', '~> 1.5.1'
+gem 'slack-notifier', '~> 1.5', '>= 1.5.1'
2016-06-16 12:31:48 +05:30
2018-11-18 11:20:06 +05:30
# Hangouts Chat integration
gem 'hangouts-chat', '~> 0.0.5'
2019-07-31 23:45:35 +05:30
@@ -226,11 +226,11 @@
2018-11-08 20:39:57 +05:30
gem 'ruby-fogbugz', '~> 0.2.1'
2017-08-17 23:00:15 +05:30
2018-11-08 20:39:57 +05:30
# Kubernetes integration
-gem 'kubeclient', '~> 4.2.2'
+gem 'kubeclient', '~> 4.2', '>= 4.2.2'
2016-06-16 12:31:48 +05:30
# Sanitize user input
2018-11-18 11:20:06 +05:30
gem 'sanitize', '~> 4.6'
2016-06-16 12:31:48 +05:30
-gem 'babosa', '~> 1.0.2'
2019-05-18 00:59:38 +05:30
+gem 'babosa', '~> 1.0', '>= 1.0.2'
2016-06-16 12:31:48 +05:30
# Sanitizes SVG input
2018-04-04 21:51:30 +05:30
gem 'loofah', '~> 2.2'
2019-07-31 23:45:35 +05:30
@@ -239,10 +239,10 @@
2018-05-09 12:38:34 +05:30
gem 'licensee', '~> 8.9'
2016-06-16 12:31:48 +05:30
# Protect against bruteforcing
2017-08-17 23:00:15 +05:30
-gem 'rack-attack', '~> 4.4.1'
+gem 'rack-attack', '~> 4.4', '>= 4.4.1'
2016-06-16 12:31:48 +05:30
# Ace editor
2016-09-13 18:27:13 +05:30
-gem 'ace-rails-ap', '~> 4.1.0'
+gem 'ace-rails-ap', '~> 4.1'
2016-06-16 12:31:48 +05:30
# Detect and convert string character encoding
2018-03-18 12:27:51 +05:30
gem 'charlock_holmes', '~> 0.7.5'
2019-07-31 23:45:35 +05:30
@@ -260,21 +260,21 @@
2017-08-17 23:00:15 +05:30
gem 'webpack-rails', '~> 0.9.10'
gem 'rack-proxy', '~> 0.6.0'
2016-06-16 12:31:48 +05:30
2019-07-31 23:45:35 +05:30
-gem 'sassc-rails', '~> 2.1.0'
2019-02-15 18:28:22 +05:30
-gem 'uglifier', '~> 2.7.2'
2019-07-31 23:45:35 +05:30
+gem 'sassc-rails', '~> 2.1'
2017-08-17 23:00:15 +05:30
+gem 'uglifier', '~> 2.7', '>= 2.7.2'
2018-03-18 12:27:51 +05:30
-gem 'addressable', '~> 2.5.2'
+gem 'addressable', '~> 2.5', '>= 2.5.2'
2017-08-17 23:00:15 +05:30
gem 'font-awesome-rails', '~> 4.7'
2017-09-10 18:21:32 +05:30
gem 'gemojione', '~> 3.3'
2018-11-08 20:39:57 +05:30
gem 'gon', '~> 6.2'
2017-08-17 23:00:15 +05:30
gem 'request_store', '~> 1.3'
-gem 'virtus', '~> 1.0.1'
+gem 'virtus', '~> 1.0', '>= 1.0.1'
gem 'base32', '~> 0.3.0'
2016-06-16 12:31:48 +05:30
# Sentry integration
2018-05-09 12:38:34 +05:30
gem 'sentry-raven', '~> 2.7'
2016-06-16 12:31:48 +05:30
2017-09-10 18:21:32 +05:30
-gem 'premailer-rails', '~> 1.9.7'
+gem 'premailer-rails', '~> 1.9', '>= 1.9.7'
2016-06-16 12:31:48 +05:30
2019-07-31 23:45:35 +05:30
# LabKit: Tracing and Correlation
gem 'gitlab-labkit', '~> 0.2.0'
@@ -282,19 +282,19 @@
2017-08-17 23:00:15 +05:30
# I18n
2017-09-10 18:21:32 +05:30
gem 'ruby_parser', '~> 3.8', require: false
2019-02-15 18:28:22 +05:30
gem 'rails-i18n', '~> 5.1'
2017-08-17 23:00:15 +05:30
-gem 'gettext_i18n_rails', '~> 1.8.0'
+gem 'gettext_i18n_rails', '~> 1.8'
2018-05-09 12:38:34 +05:30
gem 'gettext_i18n_rails_js', '~> 1.3'
2019-02-15 18:28:22 +05:30
-gem 'gettext', '~> 3.2.2', require: false, group: :development
+gem 'gettext', '~> 3.2', '>= 3.2.2', require: false, group: :development
2018-03-18 12:27:51 +05:30
2019-07-31 23:45:35 +05:30
-gem 'batch-loader', '~> 1.4.0'
+gem 'batch-loader', '~> 1.4'
2016-06-16 12:31:48 +05:30
2017-09-10 18:21:32 +05:30
# Perf bar
-gem 'peek', '~> 1.0.1'
+gem 'peek', '~> 1.0', '>= 1.0.1'
gem 'peek-gc', '~> 0.0.2'
2019-02-15 18:28:22 +05:30
-gem 'peek-mysql2', '~> 1.2.0', group: :mysql
2017-09-10 18:21:32 +05:30
-gem 'peek-pg', '~> 1.3.0', group: :postgres
2019-05-18 00:59:38 +05:30
+gem 'peek-mysql2', '~> 1.2', group: :mysql
2017-09-10 18:21:32 +05:30
+gem 'peek-pg', '~> 1.3', group: :postgres
gem 'peek-rblineprof', '~> 0.2.0'
-gem 'peek-redis', '~> 1.2.0'
+gem 'peek-redis', '~> 1.2'
2017-08-19 19:09:35 +05:30
2017-09-10 18:21:32 +05:30
# Metrics
2018-12-24 00:09:40 +05:30
group :metrics do
2019-07-31 23:45:35 +05:30
@@ -314,55 +314,55 @@
2019-02-15 18:28:22 +05:30
gem 'rblineprof', '~> 0.3.6', platform: :mri, require: false
# Better errors handler
- gem 'better_errors', '~> 2.5.0'
+ gem 'better_errors', '~> 2.5'
gem 'binding_of_caller', '~> 0.8.0'
# thin instead webrick
- gem 'thin', '~> 1.7.0'
+ gem 'thin', '~> 1.7'
end
group :development, :test do
2019-05-18 00:59:38 +05:30
gem 'bootsnap', '~> 1.4'
2019-02-15 18:28:22 +05:30
- gem 'bullet', '~> 5.5.0', require: !!ENV['ENABLE_BULLET']
- gem 'pry-byebug', '~> 3.5.1', platform: :mri
+ gem 'bullet', '~> 5.5', require: !!ENV['ENABLE_BULLET']
+ gem 'pry-byebug', '~> 3.5', '>= 3.5.1', platform: :mri
gem 'pry-rails', '~> 0.3.4'
gem 'awesome_print', require: false
- gem 'fuubar', '~> 2.2.0'
+ gem 'fuubar', '~> 2.2'
- gem 'database_cleaner', '~> 1.7.0'
- gem 'factory_bot_rails', '~> 4.8.2'
- gem 'rspec-rails', '~> 3.7.0'
+ gem 'database_cleaner', '~> 1.7'
+ gem 'factory_bot_rails', '~> 4.8', '>= 4.8.2'
+ gem 'rspec-rails', '~> 3.7'
2019-07-31 23:45:35 +05:30
gem 'rspec-retry', '~> 0.6.1'
2019-02-15 18:28:22 +05:30
gem 'rspec_profiling', '~> 0.0.5'
gem 'rspec-set', '~> 0.1.3'
gem 'rspec-parameterized', require: false
# Prevent occasions where minitest is not bundled in packaged versions of ruby (see #3826)
- gem 'minitest', '~> 5.11.0'
+ gem 'minitest', '~> 5.11'
# Generate Fake data
gem 'ffaker', '~> 2.10'
2019-07-31 23:45:35 +05:30
- gem 'capybara', '~> 2.18.0'
- gem 'capybara-screenshot', '~> 1.0.22'
+ gem 'capybara', '~> 2.18'
+ gem 'capybara-screenshot', '~> 1.0', '>= 1.0.22'
gem 'selenium-webdriver', '~> 3.141'
2019-02-15 18:28:22 +05:30
- gem 'spring', '~> 2.0.0'
- gem 'spring-commands-rspec', '~> 1.0.4'
+ gem 'spring', '~> 2.0'
+ gem 'spring-commands-rspec', '~> 1.0', '>= 1.0.4'
2019-07-31 23:45:35 +05:30
gem 'gitlab-styles', '~> 2.6', require: false
2019-02-15 18:28:22 +05:30
# Pin these dependencies, otherwise a new rule could break the CI pipelines
2019-07-31 23:45:35 +05:30
gem 'rubocop', '~> 0.68.1'
- gem 'rubocop-performance', '~> 1.1.0'
2019-02-15 18:28:22 +05:30
- gem 'rubocop-rspec', '~> 1.22.1'
2019-07-31 23:45:35 +05:30
+ gem 'rubocop-performance', '~> 1.1'
2019-02-15 18:28:22 +05:30
+ gem 'rubocop-rspec', '~> 1.22', '>= 1.22.1'
gem 'scss_lint', '~> 0.56.0', require: false
2019-07-31 23:45:35 +05:30
gem 'haml_lint', '~> 0.30.0', require: false
2019-02-15 18:28:22 +05:30
gem 'simplecov', '~> 0.14.0', require: false
gem 'bundler-audit', '~> 0.5.0', require: false
- gem 'benchmark-ips', '~> 2.3.0', require: false
+ gem 'benchmark-ips', '~> 2.3', require: false
gem 'license_finder', '~> 5.4', require: false
gem 'knapsack', '~> 1.17'
2019-07-07 11:29:07 +05:30
@@ -371,18 +371,18 @@
2019-02-15 18:28:22 +05:30
gem 'stackprof', '~> 0.2.10', require: false
- gem 'simple_po_parser', '~> 1.1.2', require: false
+ gem 'simple_po_parser', '~> 1.1', '>= 1.1.2', require: false
gem 'timecop', '~> 0.8.0'
end
group :test do
- gem 'shoulda-matchers', '~> 3.1.2', require: false
- gem 'email_spec', '~> 2.2.0'
- gem 'json-schema', '~> 2.8.0'
2019-05-18 00:59:38 +05:30
- gem 'webmock', '~> 3.5.1'
2019-02-15 18:28:22 +05:30
+ gem 'shoulda-matchers', '~> 3.1', '>= 3.1.2', require: false
+ gem 'email_spec', '~> 2.2'
+ gem 'json-schema', '~> 2.8'
2019-05-18 00:59:38 +05:30
+ gem 'webmock', '~> 3.5', '>= 3.5.1'
2019-02-15 18:28:22 +05:30
gem 'rails-controller-testing'
- gem 'sham_rack', '~> 1.3.6'
+ gem 'sham_rack', '~> 1.3', '>= 1.3.6'
gem 'concurrent-ruby', '~> 1.1'
gem 'test-prof', '~> 0.2.5'
gem 'rspec_junit_formatter'
2019-07-07 11:29:07 +05:30
@@ -402,11 +402,11 @@
2018-10-15 15:54:03 +05:30
gem 'oauth2', '~> 1.4'
# Health check
-gem 'health_check', '~> 2.6.0'
+gem 'health_check', '~> 2.6'
2017-08-19 19:09:35 +05:30
# System information
-gem 'vmstat', '~> 2.3.0'
-gem 'sys-filesystem', '~> 1.1.6'
+gem 'vmstat', '~> 2.3'
+gem 'sys-filesystem', '~> 1.1', '>= 1.1.6'
2017-09-10 18:21:32 +05:30
# SSH host key support
2018-11-08 20:39:57 +05:30
gem 'net-ssh', '~> 5.0'
2019-07-07 11:29:07 +05:30
@@ -419,13 +419,13 @@
2018-11-20 21:00:51 +05:30
end
2018-05-09 12:38:34 +05:30
# Gitaly GRPC client
2019-07-31 23:45:35 +05:30
-gem 'gitaly-proto', '~> 1.27.2', require: 'gitaly'
+gem 'gitaly-proto', '~> 1.27', '>= 1.27.2', require: 'gitaly'
2019-07-07 11:29:07 +05:30
2019-07-31 23:45:35 +05:30
-gem 'grpc', '~> 1.19.0'
+gem 'grpc', '~> 1.19'
2018-12-13 14:23:24 +05:30
2019-07-31 23:45:35 +05:30
-gem 'google-protobuf', '~> 3.7.1'
+gem 'google-protobuf', '~> 3.7', '>= 3.7.1'
2018-03-27 20:24:05 +05:30
-gem 'toml-rb', '~> 1.0.0', require: false
+gem 'toml-rb', '~> 1.0', require: false
# Feature toggles
2018-05-09 12:38:34 +05:30
gem 'flipper', '~> 0.13.0'