Skip to content

Commit

Permalink
Resolve rexml vulnerability CVE-2021-28965 (#3)
Browse files Browse the repository at this point in the history
This change resolves rexml vulnerability CVE-2021-28965 by updating gem
dependencies. Updates have also been made to require ruby 2.5+.
  • Loading branch information
wheatevo authored May 1, 2021
1 parent 0958100 commit f298187
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
AllCops:
TargetRubyVersion: 2.4
TargetRubyVersion: 2.5
NewCops: enable

Style/StringLiterals:
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## [Unreleased]

## [0.1.2] - 2021-05-01

- Resolve rexml vulnerability CVE-2021-28965

## [0.1.1] - 2021-03-15

- Handle `nil` `Rails.application`
Expand Down
12 changes: 6 additions & 6 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
PATH
remote: .
specs:
container_config (0.1.1)
container_config (0.1.2)

GEM
remote: https://rubygems.org/
specs:
ast (2.4.2)
diff-lcs (1.4.4)
parallel (1.20.1)
parser (3.0.0.0)
parser (3.0.1.0)
ast (~> 2.4.1)
rainbow (3.0.0)
rake (13.0.3)
regexp_parser (2.1.1)
rexml (3.2.4)
rexml (3.2.5)
rspec (3.10.0)
rspec-core (~> 3.10.0)
rspec-expectations (~> 3.10.0)
Expand All @@ -28,7 +28,7 @@ GEM
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.10.0)
rspec-support (3.10.2)
rubocop (1.11.0)
rubocop (1.13.0)
parallel (~> 1.10)
parser (>= 3.0.0.0)
rainbow (>= 2.2.2, < 4.0)
Expand All @@ -41,7 +41,7 @@ GEM
parser (>= 2.7.1.5)
rubocop-rake (0.5.1)
rubocop
rubocop-rspec (2.2.0)
rubocop-rspec (2.3.0)
rubocop (~> 1.0)
rubocop-ast (>= 1.1.0)
ruby-progressbar (1.11.0)
Expand All @@ -61,4 +61,4 @@ DEPENDENCIES
yard (~> 0.9)

BUNDLED WITH
2.2.9
2.2.14
2 changes: 1 addition & 1 deletion container_config.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
spec.description = "Loads container configuration values from environment variables, secrets, and credentials."
spec.homepage = "https://github.com/wheatevo/container_config"
spec.license = "MIT"
spec.required_ruby_version = Gem::Requirement.new(">= 2.4.0")
spec.required_ruby_version = Gem::Requirement.new(">= 2.5.0")

spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/wheatevo/container_config"
Expand Down
2 changes: 1 addition & 1 deletion lib/container_config/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

module ContainerConfig
# ContainerConfig version
VERSION = "0.1.1"
VERSION = "0.1.2"
end

0 comments on commit f298187

Please sign in to comment.