Skip to content

Commit

Permalink
Merge pull request #5 from qoqa/fix_cve
Browse files Browse the repository at this point in the history
update ActiveModel to 6.1.7.6
  • Loading branch information
Migoo authored Jan 9, 2024
2 parents ca6aa22 + 362e978 commit af0a52d
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 13 deletions.
32 changes: 21 additions & 11 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,27 +1,37 @@
PATH
remote: .
specs:
swiss_bank_validator (0.6.1)
activemodel (~> 6.0)
swiss_bank_validator (1.0.1)
activemodel (>= 6.1.7.6)
rexml (~> 3.2.5)

GEM
remote: https://rubygems.org/
specs:
activemodel (6.1.3.2)
activesupport (= 6.1.3.2)
activesupport (6.1.3.2)
activemodel (7.1.2)
activesupport (= 7.1.2)
activesupport (7.1.2)
base64
bigdecimal
concurrent-ruby (~> 1.0, >= 1.0.2)
connection_pool (>= 2.2.5)
drb
i18n (>= 1.6, < 2)
minitest (>= 5.1)
mutex_m
tzinfo (~> 2.0)
zeitwerk (~> 2.3)
ast (2.4.1)
concurrent-ruby (1.1.8)
base64 (0.1.1)
bigdecimal (3.1.5)
concurrent-ruby (1.2.2)
connection_pool (2.4.1)
diff-lcs (1.4.4)
i18n (1.8.10)
drb (2.2.0)
ruby2_keywords
i18n (1.14.1)
concurrent-ruby (~> 1.0)
minitest (5.14.4)
minitest (5.20.0)
mutex_m (0.2.0)
parallel (1.20.1)
parser (2.7.2.0)
ast (~> 2.4.1)
Expand Down Expand Up @@ -54,10 +64,10 @@ GEM
rubocop-ast (1.3.0)
parser (>= 2.7.1.5)
ruby-progressbar (1.10.1)
tzinfo (2.0.4)
ruby2_keywords (0.0.5)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
unicode-display_width (1.7.0)
zeitwerk (2.4.2)

PLATFORMS
ruby
Expand Down
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.0.1]

- Update ActiveSupport to fix multiple CVE

## [0.6.1]

- Fix Rexml vulnerabilities
Expand Down
2 changes: 1 addition & 1 deletion lib/swiss_bank_validator/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module SwissBankValidator
VERSION = '1.0.0'
VERSION = '1.0.1'
end
2 changes: 1 addition & 1 deletion swiss_bank_validator.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']

spec.add_dependency 'activemodel', '>= 6.0'
spec.add_dependency 'activemodel', '>= 6.1.7.6'
spec.add_dependency 'rexml', '~> 3.2.5'

spec.add_development_dependency 'rspec', '~> 3.0'
Expand Down

0 comments on commit af0a52d

Please sign in to comment.