require-profiler 0.1.0 → 0.1.1
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 +11 -0
- data/lib/require_profiler/printer/json.rb +1 -0
- data/lib/require_profiler/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: 4387c62f9714573c234aafbbf2254c009341a3e553677458f3ab633d898ec0a7
|
|
4
|
+
data.tar.gz: 7ada2f5d9e5020c0b5a6199165df40346cf5514fc68a245451539895da04b6fc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 978f991474241a6b408fa2f9bf8ca4370c55900ed763b34cac82a950c1b5a8ae4e740c1dc9f62a6498cc8295ebea05caf9b1c10a1ea9ee1c69c24a22a4ad0166
|
|
7
|
+
data.tar.gz: 75185c6c5569be0bc835c64fabfea8846b50e05e5194a8124eb6d329c5ff56516fd2761cd49563ee92ed610853fb5a494e60ffd4d3d5998fbbab1adccce6f64f
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
## master
|
|
4
4
|
|
|
5
|
+
## 0.1.1 (2026-04-29)
|
|
6
|
+
|
|
7
|
+
- Fix JSON printer leaving trailing call-stack bytes in output. ([@ardecvz][])
|
|
8
|
+
|
|
9
|
+
We overwrite the buffered call-stack text with a (shorter) Speedscope JSON document but never truncate it, breaking JSON validity.
|
|
10
|
+
|
|
11
|
+
Truncate the file properly.
|
|
12
|
+
|
|
5
13
|
## 0.1.0 (2026-04-22)
|
|
6
14
|
|
|
7
15
|
- Initial
|
|
16
|
+
|
|
17
|
+
[@palkan]: https://github.com/palkan
|
|
18
|
+
[@ardecvz]: https://github.com/ardecvz
|