Skip to content

Commit dc7d9c8

Browse files
committed
Fix REXML vulnerability (CVE-2024-43398)
1 parent 56119e7 commit dc7d9c8

File tree

2 files changed

+14
-9
lines changed

2 files changed

+14
-9
lines changed

assets/docs/Gemfile

+2
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,5 @@ end
3232
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
3333
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
3434

35+
# add REXML to get rid of vulnerability
36+
gem "rexml", ">= 3.3.6"

assets/docs/Gemfile.lock

+12-9
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ GEM
3333
sass (~> 3.4)
3434
jekyll-watch (2.2.1)
3535
listen (~> 3.0)
36-
kramdown (2.3.1)
37-
rexml (>= 3.2.5)
36+
kramdown (2.5.1)
37+
rexml (>= 3.3.9)
3838
liquid (4.0.3)
39-
listen (3.2.1)
39+
listen (3.9.0)
4040
rb-fsevent (~> 0.10, >= 0.10.3)
4141
rb-inotify (~> 0.9, >= 0.9.10)
4242
mercenary (0.3.6)
@@ -48,30 +48,33 @@ GEM
4848
rb-fsevent (0.10.4)
4949
rb-inotify (0.10.1)
5050
ffi (~> 1.0)
51-
rexml (3.2.8)
52-
strscan (>= 3.0.9)
51+
rexml (3.4.1)
5352
rouge (3.22.0)
5453
safe_yaml (1.0.5)
5554
sass (3.7.4)
5655
sass-listen (~> 4.0.0)
5756
sass-listen (4.0.0)
5857
rb-fsevent (~> 0.9, >= 0.9.4)
5958
rb-inotify (~> 0.9, >= 0.9.7)
60-
strscan (3.1.0)
59+
tzinfo (2.0.6)
60+
concurrent-ruby (~> 1.0)
61+
tzinfo-data (1.2025.1)
62+
tzinfo (>= 1.0.0)
6163

6264
PLATFORMS
63-
ruby
65+
x64-mingw-ucrt
6466

6567
DEPENDENCIES
6668
ffi (>= 1.9.24)
6769
jekyll (= 3.9.0)
6870
jekyll-feed (~> 0.6)
6971
kramdown (>= 2.3.0)
7072
minima (~> 2.0)
73+
rexml (>= 3.3.6)
7174
tzinfo-data
7275

7376
RUBY VERSION
74-
ruby 2.4.0p0
77+
ruby 3.2.2p53
7578

7679
BUNDLED WITH
77-
1.15.0
80+
2.4.10

0 commit comments

Comments
 (0)