Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Snyk] Fix for 3 vulnerabilities #38

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ source 'https://rubygems.org'

ruby '>= 2.2.5'

gem 'rails', '~> 5.0.0'
gem 'rails', '~> 5.0.0', '>= 5.0.0.1'
gem 'actionpack-xml_parser', '~> 2.0.0'
gem 'activemodel-serializers-xml', '~> 1.0.1'
gem 'activerecord-session_store', '~> 1.0.0'
gem 'responders', '~> 2.3'
gem 'responders', '~> 2.3', '>= 2.3.0'

gem 'coderay', '~> 1.1.0'
gem 'rubytree', '~> 0.9.7'
Expand Down Expand Up @@ -106,7 +106,7 @@ gem 'rack-attack', '~> 5.0.1'
gem 'rails-angular-xss', git: 'https://github.com/opf/rails-angular-xss', ref: 'a45267d5'

gem "syck", '~> 1.0.5', require: false
gem 'gon', '~> 4.0'
gem 'gon', '~> 4.1', '>= 4.1.1'

# catch exceptions and send them to any airbrake compatible backend
# don't require by default, instead load on-demand when actually configured
Expand Down Expand Up @@ -145,7 +145,7 @@ gem 'cocaine', '~> 0.5.8'
# also, better than thin since we can control worker concurrency.
gem 'unicorn'

gem 'nokogiri', '~> 1.6.8'
gem 'nokogiri', '~> 1.13.4'

# carrierwave 0.11.3 should allow to use fog-aws without the rest of the
# fog dependency chain. We only need aws here, so we can avoid it
Expand All @@ -163,7 +163,7 @@ group :test do
# definitions from core are not available in the plugin thus specs break
gem 'factory_girl', '~> 4.5'
# require factory_girl_rails for convenience in core development
gem 'factory_girl_rails', '~> 4.7', require: false
gem 'factory_girl_rails', '~> 4.7', '>= 4.7.0', require: false

gem 'cucumber', '~> 2.4.0'
gem 'cucumber-rails', '~> 1.4.4', require: false
Expand Down Expand Up @@ -200,7 +200,7 @@ group :test do
gem 'shoulda-matchers', '~> 3.1', require: nil
gem 'json_spec', '~> 1.1.4'
gem 'codecov', '~> 0.1.5', require: nil
gem 'equivalent-xml', '~> 0.6'
gem 'equivalent-xml', '~> 0.6', '>= 0.6.0'

gem 'parallel_tests', '~> 2.4.1'
end
Expand Down Expand Up @@ -235,7 +235,7 @@ end
gem 'grape', '~> 0.17'
gem 'grape-cache_control', '~> 1.0.1'

gem 'roar', '~> 1.0.0'
gem 'roar', '~> 1.0.4'
gem 'reform', '~> 1.2.6', require: false

platforms :mri, :mingw, :x64_mingw do
Expand Down