kobako 0.11.2-x86_64-linux → 0.12.0-x86_64-linux

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1cbf315e79e4ac7f8de90374553441ad92e118cf4bd6f8488274b5034586265d
4
- data.tar.gz: 5a6812ef28f479cdbdd6a075bc644252a598f5897edd4344bf90629ada4fca12
3
+ metadata.gz: bf17f20242a6c2f52851c6777448e9921001aa4e71b96e8c946632281b11b74a
4
+ data.tar.gz: 6bb5eeed02b07d02a1e5477f95e05d121ffe4312839405f32da74adb7cccb42f
5
5
  SHA512:
6
- metadata.gz: 7a9f4396ffa3c4a19e31add9bc6d188b058df8a5f1701070d59a903d0db1cfe57dbf6b19a0e49366f88961182b7830a5f85a7dd14c1bed24890c46dcb22dfa16
7
- data.tar.gz: c660365459baf0609e08e21505919af61cb1044df86cc1f73dd12c5cef16a03c5c23b5dfceee46889e18f4a8b61d23109a675b9f8fc7a2fe72031e363e7214c9
6
+ metadata.gz: 06dfc59713edca336bf5ae4fbc938f7ce79f3683eb3ac5aa71387a95e44d8c3820765bcf246e7396d89bf1bedc4fbe87196336598590f74f3ddb464db2e06028
7
+ data.tar.gz: 3eee1269e3a063211105bb94876889cc2390da60b515f40759e0bdebacaa9641e3c528415c38df051a57afbfdc6d2661167d26cd5753aa112d02ec65172b00e6
@@ -1 +1 @@
1
- {".":"0.11.2","wasm/kobako-core":"0.5.2","wasm/kobako":"0.5.2","wasm/kobako-io":"0.5.2","wasm/kobako-regexp":"0.5.2","wasm/kobako-baker":"0.5.2"}
1
+ {".":"0.12.0","wasm/kobako-core":"0.6.0","wasm/kobako":"0.6.0","wasm/kobako-io":"0.6.0","wasm/kobako-json":"0.6.0","wasm/kobako-regexp":"0.6.0","wasm/kobako-baker":"0.6.0"}
data/CHANGELOG.md CHANGED
@@ -1,5 +1,28 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.12.0](https://github.com/elct9620/kobako/compare/v0.11.2...v0.12.0) (2026-06-26)
4
+
5
+
6
+ ### Features
7
+
8
+ * **bench:** inject the Guest Binary into probes via KOBAKO_BENCH_WASM ([3408058](https://github.com/elct9620/kobako/commit/3408058f5a4319725863dd3bd1b305cc4609bbf8))
9
+ * **kobako-json:** classify generate values by native mruby type ([f8e5de3](https://github.com/elct9620/kobako/commit/f8e5de3a2bdc0234290101734f2cceff88058cd6))
10
+ * **spec:** specify the guest JSON capability (B-52/B-53, docs/json.md) ([b666d6f](https://github.com/elct9620/kobako/commit/b666d6fecc230eef0b01ae34cdb9eab2bbc6b153))
11
+ * **wasm:** compose the json and full Guest Binary variants ([002b16d](https://github.com/elct9620/kobako/commit/002b16d88ea7c9dbf0493185bbac757b782bc28d))
12
+
13
+
14
+ ### Bug Fixes
15
+
16
+ * **bench:** correct results/baseline path depth after support dir move ([faf1d8a](https://github.com/elct9620/kobako/commit/faf1d8aaf185159edced2d421696c721da9ed15c))
17
+ * **spec:** classify Symbol as directly-encoded in JSON generate ([10a8671](https://github.com/elct9620/kobako/commit/10a867145ed8ccb0b0e2d8e61c0ae84ae0ef3399))
18
+ * **spec:** close the JSON Hash-key host-dispatch gap and refresh the anchor range ([aea1313](https://github.com/elct9620/kobako/commit/aea13133efc957c70f8ff3f77fd2164c634ebb86))
19
+ * **spec:** complete the JSON generate Hash-key partition and tighten wording ([b01a3f2](https://github.com/elct9620/kobako/commit/b01a3f26baf2e8364ff82a9d292b426444e0acd7))
20
+ * **spec:** keep B-52 from re-enumerating the JSON-carrying variants ([13a5723](https://github.com/elct9620/kobako/commit/13a57236e1b4b33c5e84caa8bb940a0b8560a6d0))
21
+ * **spec:** let pretty_generate own its layout instead of pinning CRuby ([bf78bf1](https://github.com/elct9620/kobako/commit/bf78bf1a8ab8e125f35eacf6e2151ec94f87d46b))
22
+ * **spec:** make the JSON depth bound consistent across parse and generate ([efdc535](https://github.com/elct9620/kobako/commit/efdc535f5e70f67efb8638abcd4b7b1881cedf35))
23
+ * **spec:** make variant pointers source-free and pin generate edge cases ([8aeeecd](https://github.com/elct9620/kobako/commit/8aeeecd674ba24f4caab3cc3ea4e905b182061b0))
24
+ * **spec:** note the full variant in regexp.md availability ([7e50f27](https://github.com/elct9620/kobako/commit/7e50f27a593ed8d8582f24961c8725fc252699b5))
25
+
3
26
  ## [0.11.2](https://github.com/elct9620/kobako/compare/v0.11.1...v0.11.2) (2026-06-24)
4
27
 
5
28
 
data/data/kobako.wasm CHANGED
Binary file
Binary file
Binary file
Binary file
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Kobako
4
- VERSION = "0.11.2"
4
+ VERSION = "0.12.0"
5
5
  end
@@ -74,6 +74,21 @@
74
74
  }
75
75
  ]
76
76
  },
77
+ "wasm/kobako-json": {
78
+ "component": "kobako-json",
79
+ "release-type": "rust",
80
+ "extra-files": [
81
+ {
82
+ "type": "toml",
83
+ "path": "/wasm/Cargo.lock",
84
+ "jsonpath": "$.package[?(@.name=='kobako-json')].version"
85
+ },
86
+ {
87
+ "type": "generic",
88
+ "path": "/wasm/kobako-json/README.md"
89
+ }
90
+ ]
91
+ },
77
92
  "wasm/kobako-baker": {
78
93
  "component": "kobako-baker",
79
94
  "release-type": "rust",
@@ -94,7 +109,7 @@
94
109
  {
95
110
  "type": "linked-versions",
96
111
  "groupName": "kobako guest crates",
97
- "components": ["kobako-core", "kobako-rs", "kobako-io", "kobako-regexp", "kobako-baker"]
112
+ "components": ["kobako-core", "kobako-rs", "kobako-io", "kobako-json", "kobako-regexp", "kobako-baker"]
98
113
  }
99
114
  ],
100
115
  "extra-files": [
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kobako
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.2
4
+ version: 0.12.0
5
5
  platform: x86_64-linux
6
6
  authors:
7
7
  - Aotokitsuruya
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2026-06-24 00:00:00.000000000 Z
11
+ date: 2026-06-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: msgpack