rpdoc 0.3.2 → 0.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/Gemfile.lock +10 -10
- data/lib/rpdoc/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 609952a248c63a9b7fa860f9c1cdb21951e5a5230d150b0c3323d4ea3373e1d9
|
|
4
|
+
data.tar.gz: c7c769874ff0ad316a73d3b32dfdcfc57b2caea3af3b28a623675ed19a536c94
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c76883d495304d674bd211c02ab29b2dd21d73aaa93523bf0db7fa1967890c868c4304cf8ab09a009ec99a13e75c4e4f4ba2690d9260c494da12df43c6b57fb5
|
|
7
|
+
data.tar.gz: 4dfd06f8d7c3c3fac0d9ae1b08d955641f8881b569f5da90ed9d9e15423bb0ec0beba4c2ca9950e316bc6c70c18fa7d7ca884f47992d0f7dfc9b92a41136bb45
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
## [0.3.3] - 2026-06-16
|
|
2
|
+
- Update `nokogiri` to `1.19.3` to address GHSA-c4rq-3m3g-8wgx.
|
|
3
|
+
- Update `erb` to `6.0.4` to address CVE-2026-41316 ERB template injection advisory.
|
|
4
|
+
- Regenerate `Gemfile.lock` so the gem PATH spec tracks `0.3.3`.
|
|
5
|
+
|
|
1
6
|
## [0.3.2] - 2026-04-14
|
|
2
7
|
- Update required Ruby version to `>= 3.2.0` in `rpdoc.gemspec` and `.rubocop.yml` to align with the latest security and performance requirements.
|
|
3
8
|
- activesupport to `8.1.3` to address the latest security and performance requirements.
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
rpdoc (0.3.
|
|
4
|
+
rpdoc (0.3.3)
|
|
5
5
|
activesupport (>= 7.1, < 9.0)
|
|
6
6
|
json_requester (~> 2.0, >= 2.0.1)
|
|
7
7
|
|
|
@@ -50,7 +50,7 @@ GEM
|
|
|
50
50
|
date (3.5.1)
|
|
51
51
|
diff-lcs (1.6.2)
|
|
52
52
|
drb (2.2.3)
|
|
53
|
-
erb (6.0.
|
|
53
|
+
erb (6.0.4)
|
|
54
54
|
erubi (1.13.1)
|
|
55
55
|
faraday (2.14.1)
|
|
56
56
|
faraday-net_http (>= 2.0, < 3.5)
|
|
@@ -90,21 +90,21 @@ GEM
|
|
|
90
90
|
multipart-post (2.4.1)
|
|
91
91
|
net-http (0.9.1)
|
|
92
92
|
uri (>= 0.11.1)
|
|
93
|
-
nokogiri (1.19.
|
|
93
|
+
nokogiri (1.19.3-aarch64-linux-gnu)
|
|
94
94
|
racc (~> 1.4)
|
|
95
|
-
nokogiri (1.19.
|
|
95
|
+
nokogiri (1.19.3-aarch64-linux-musl)
|
|
96
96
|
racc (~> 1.4)
|
|
97
|
-
nokogiri (1.19.
|
|
97
|
+
nokogiri (1.19.3-arm-linux-gnu)
|
|
98
98
|
racc (~> 1.4)
|
|
99
|
-
nokogiri (1.19.
|
|
99
|
+
nokogiri (1.19.3-arm-linux-musl)
|
|
100
100
|
racc (~> 1.4)
|
|
101
|
-
nokogiri (1.19.
|
|
101
|
+
nokogiri (1.19.3-arm64-darwin)
|
|
102
102
|
racc (~> 1.4)
|
|
103
|
-
nokogiri (1.19.
|
|
103
|
+
nokogiri (1.19.3-x86_64-darwin)
|
|
104
104
|
racc (~> 1.4)
|
|
105
|
-
nokogiri (1.19.
|
|
105
|
+
nokogiri (1.19.3-x86_64-linux-gnu)
|
|
106
106
|
racc (~> 1.4)
|
|
107
|
-
nokogiri (1.19.
|
|
107
|
+
nokogiri (1.19.3-x86_64-linux-musl)
|
|
108
108
|
racc (~> 1.4)
|
|
109
109
|
parallel (1.27.0)
|
|
110
110
|
parser (3.3.10.2)
|
data/lib/rpdoc/version.rb
CHANGED