Skip to content

Commit bc2bf19

Browse files
committed
fix: Update kramdown to fix critical security vulnerability
1 parent 61d91d8 commit bc2bf19

2 files changed

Lines changed: 98 additions & 0 deletions

File tree

Gemfile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
source "https://rubygems.org"
2+
3+
gem "jekyll", "~> 4.3.3"
4+
gem "kramdown", "~> 2.4.0" # Updated to secure version
5+
gem "webrick", "~> 1.8" # Required for Ruby 3.0+
6+
gem "minima", "~> 2.5"
7+
8+
group :jekyll_plugins do
9+
gem "jekyll-feed", "~> 0.12"
10+
gem "jekyll-seo-tag", "~> 2.8"
11+
end

Gemfile.lock

Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
addressable (2.8.7)
5+
public_suffix (>= 2.0.2, < 7.0)
6+
bigdecimal (3.1.9)
7+
colorator (1.1.0)
8+
concurrent-ruby (1.3.5)
9+
em-websocket (0.5.3)
10+
eventmachine (>= 0.12.9)
11+
http_parser.rb (~> 0)
12+
eventmachine (1.2.7)
13+
ffi (1.17.2-arm64-darwin)
14+
forwardable-extended (2.6.0)
15+
google-protobuf (4.30.2-arm64-darwin)
16+
bigdecimal
17+
rake (>= 13)
18+
http_parser.rb (0.8.0)
19+
i18n (1.14.7)
20+
concurrent-ruby (~> 1.0)
21+
jekyll (4.3.4)
22+
addressable (~> 2.4)
23+
colorator (~> 1.0)
24+
em-websocket (~> 0.5)
25+
i18n (~> 1.0)
26+
jekyll-sass-converter (>= 2.0, < 4.0)
27+
jekyll-watch (~> 2.0)
28+
kramdown (~> 2.3, >= 2.3.1)
29+
kramdown-parser-gfm (~> 1.0)
30+
liquid (~> 4.0)
31+
mercenary (>= 0.3.6, < 0.5)
32+
pathutil (~> 0.9)
33+
rouge (>= 3.0, < 5.0)
34+
safe_yaml (~> 1.0)
35+
terminal-table (>= 1.8, < 4.0)
36+
webrick (~> 1.7)
37+
jekyll-feed (0.17.0)
38+
jekyll (>= 3.7, < 5.0)
39+
jekyll-sass-converter (3.1.0)
40+
sass-embedded (~> 1.75)
41+
jekyll-seo-tag (2.8.0)
42+
jekyll (>= 3.8, < 5.0)
43+
jekyll-watch (2.2.1)
44+
listen (~> 3.0)
45+
kramdown (2.4.0)
46+
rexml
47+
kramdown-parser-gfm (1.1.0)
48+
kramdown (~> 2.0)
49+
liquid (4.0.4)
50+
listen (3.9.0)
51+
rb-fsevent (~> 0.10, >= 0.10.3)
52+
rb-inotify (~> 0.9, >= 0.9.10)
53+
mercenary (0.4.0)
54+
minima (2.5.2)
55+
jekyll (>= 3.5, < 5.0)
56+
jekyll-feed (~> 0.9)
57+
jekyll-seo-tag (~> 2.1)
58+
pathutil (0.16.2)
59+
forwardable-extended (~> 2.6)
60+
public_suffix (6.0.2)
61+
rake (13.2.1)
62+
rb-fsevent (0.11.2)
63+
rb-inotify (0.11.1)
64+
ffi (~> 1.0)
65+
rexml (3.4.1)
66+
rouge (4.5.2)
67+
safe_yaml (1.0.5)
68+
sass-embedded (1.87.0-arm64-darwin)
69+
google-protobuf (~> 4.30)
70+
terminal-table (3.0.2)
71+
unicode-display_width (>= 1.1.1, < 3)
72+
unicode-display_width (2.6.0)
73+
webrick (1.9.1)
74+
75+
PLATFORMS
76+
arm64-darwin-22
77+
78+
DEPENDENCIES
79+
jekyll (~> 4.3.3)
80+
jekyll-feed (~> 0.12)
81+
jekyll-seo-tag (~> 2.8)
82+
kramdown (~> 2.4.0)
83+
minima (~> 2.5)
84+
webrick (~> 1.8)
85+
86+
BUNDLED WITH
87+
2.4.7

0 commit comments

Comments
 (0)