Skip to content

Commit

Permalink
Merge pull request #96 from airbnb/airbnb/vvassiliouk/require-nokogir…
Browse files Browse the repository at this point in the history
…i-1.8.2

Require nokogiri ~> 1.8.2 due to vulnerability in libxml2
  • Loading branch information
vvassiliouk authored Jul 12, 2018
2 parents fd5de6d + ab3723e commit 5bbc81c
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ sudo: false
language: ruby
cache: bundler
rvm:
- 1.9.3
- 2.1.2
- 2.2.4
- 2.3.1
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.12.0
- Require Nokogiri ~> 1.8.2 due to vulnerability CVE-2017-15412
- Require ruby version >= 2.1 for Nokogiri compatibility

# 0.11.11
- Fix set_classic_link issue - vpc_id could be nil or false

Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ group :test do
gem 'rake', '~> 10.3.2'
end

gem 'nokogiri', '< 1.7.0'
gem 'nokogiri', '~> 1.8.2'
2 changes: 1 addition & 1 deletion lib/stemcell/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Stemcell
VERSION = "0.11.11"
VERSION = "0.12.0"
end
2 changes: 1 addition & 1 deletion stemcell.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Gem::Specification.new do |s|
# version dependency. lets explicitly include it here. if this becomes
# no-longer a dependency of chef via chef-zero, then remove it
s.add_runtime_dependency 'rack', '< 2.0.0'
s.add_runtime_dependency 'nokogiri', '< 1.7.0'
s.add_runtime_dependency 'nokogiri', '~> 1.8.2'
s.add_runtime_dependency 'ffi-yajl', '< 2.3.1'

s.add_runtime_dependency 'trollop', '~> 2.1'
Expand Down

0 comments on commit 5bbc81c

Please sign in to comment.