ox 2.14.24 → 2.14.25
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 +10 -0
- data/ext/ox/extconf.rb +10 -0
- data/ext/ox/parse.c +1 -1
- data/lib/ox/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: 1fdd6c47d31f46414501f3719dc4b3b0c938517cbd0a03f982110657b3b7261b
|
|
4
|
+
data.tar.gz: 9d65bf85bc88e0421049230251ed87a2dfa078c0e2be5ab61b5da63f148d52e4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a82cba42c5957d123ea2022f8cce3f65923c31f96b1ff67c176a75f538fef35e3d58585ba232fc972a7a41e94386a72cdec9fd16f341cbd080ea1d1c1de04fc1
|
|
7
|
+
data.tar.gz: 255570365253191fbe23824dbdc9262162dcea2fd5b297bc182ea2fd4eff25ecc4bc8484cadf56c3c4c5cee4fac2d0589140ee2d2d5e7f395f6e2edaf487cfe3
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
All changes to the Ox gem are documented here. Releases follow semantic versioning.
|
|
4
4
|
|
|
5
|
+
## [2.14.25] - 2026-04-23
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
|
|
9
|
+
- Contribution by @albanpeignier
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
|
|
13
|
+
- Parser buffer overflow fix by @albanpeignier
|
|
14
|
+
|
|
5
15
|
## [2.14.24] - 2026-04-20
|
|
6
16
|
|
|
7
17
|
### Fixed
|
data/ext/ox/extconf.rb
CHANGED
|
@@ -32,6 +32,16 @@ CONFIG['warnflags'].slice!(/ -Wsuggest-attribute=format/)
|
|
|
32
32
|
CONFIG['warnflags'].slice!(/ -Wdeclaration-after-statement/)
|
|
33
33
|
CONFIG['warnflags'].slice!(/ -Wmissing-noreturn/)
|
|
34
34
|
|
|
35
|
+
if ENV['OX_ASAN'] || ENV['OX_DEBUG']
|
|
36
|
+
CONFIG["optflags"] = "-O0"
|
|
37
|
+
CONFIG["debugflags"] = "-ggdb3"
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
if ENV['OX_ASAN']
|
|
41
|
+
$LDFLAGS << " -fsanitize=address"
|
|
42
|
+
$CFLAGS << " -fsanitize=address"
|
|
43
|
+
end
|
|
44
|
+
|
|
35
45
|
have_func('rb_ext_ractor_safe', 'ruby.h')
|
|
36
46
|
have_func('pthread_mutex_init')
|
|
37
47
|
have_func('rb_enc_interned_str')
|
data/ext/ox/parse.c
CHANGED
data/lib/ox/version.rb
CHANGED