kobako 0.21.0-aarch64-linux → 0.21.1-aarch64-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: 6fccad6b5e49a6e972da286a0bd3abb77421b474ada194cb05ab4e06ee2502ef
4
- data.tar.gz: 200037947ca8fe34af245ec8ab69fc27a54e48a1ec9c273c103388a959269f04
3
+ metadata.gz: 43f465417ab6549eb551ce4d45acc511245e5c69c8ed0da630352a7db1a97457
4
+ data.tar.gz: e27fbee4cee43ddac783ba6240832c3f0131fc2a62c5ef4f5ef7399c0dfdaa1a
5
5
  SHA512:
6
- metadata.gz: 89944ec2f2eac2da27cd40c9ce1c52b6fb9cb3bfb8ec6423561d921c023a9037e200aa77353df0e64fb1a473ed9657ee313114863d980699d65b1d9ffe14cccc
7
- data.tar.gz: f0fe8255daa657ed266a9dfffe21fe6787b569b7e9c80a91f0a507f3469fea51c2aa20fd03c54c07785269991ea17c84f96622242973606f68e2caa83499db26
6
+ metadata.gz: fb388ad5d74a6c3f7a9fc4816e004200e427ec819ae24495612ac2376f8cdf6e6fa2bc28f5a5c53c3312daef3abd7895c33f4e87f9f04da8668ef0ccf1ca5fad
7
+ data.tar.gz: 3d598ff006a0db04c6b78a572a46a7afa2cbe051e9853f9cf71ec8c71d339aaf78b24590dccbadd8af298bd137e118817293d87cd43e605fb86ce7063727c6cd
@@ -1 +1 @@
1
- {".":"0.21.0","wasm/kobako-core":"0.13.0","wasm/kobako-mruby":"0.13.0","wasm/kobako-io":"0.13.0","wasm/kobako-json":"0.13.0","wasm/kobako-regexp":"0.13.0","wasm/kobako-baker":"0.13.0","crates/kobako-transport":"0.13.0","crates/kobako-codec":"0.13.0","crates/kobako-runtime":"0.13.0","crates/kobako-wasmtime":"0.13.0","crates/kobako":"0.13.0"}
1
+ {".":"0.21.1","wasm/kobako-core":"0.13.1","wasm/kobako-mruby":"0.13.1","wasm/kobako-io":"0.13.1","wasm/kobako-json":"0.13.1","wasm/kobako-regexp":"0.13.1","wasm/kobako-baker":"0.13.1","crates/kobako-transport":"0.13.1","crates/kobako-codec":"0.13.1","crates/kobako-runtime":"0.13.1","crates/kobako-wasmtime":"0.13.1","crates/kobako":"0.13.1"}
data/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.21.1](https://github.com/elct9620/kobako/compare/v0.21.0...v0.21.1) (2026-07-30)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **bench:** let a re-run stamp its own capture, not the round before it ([3a9793e](https://github.com/elct9620/kobako/commit/3a9793e16c21162ae89c61c4e709cd602fc7ab9f))
9
+ * **bench:** move the anchor onto the round the envelope's new tier produced ([ddcfcc1](https://github.com/elct9620/kobako/commit/ddcfcc162b786868807afdf80a284db5b40dc3cd))
10
+
11
+
12
+ ### Performance Improvements
13
+
14
+ * **host:** ask an artifact its ABI version once, not once per Sandbox ([693b94f](https://github.com/elct9620/kobako/commit/693b94f878e56815fe3faeae94e5c4d0cd9c8bb6))
15
+ * **mruby:** record the boot constant set once, not on every #run ([a7f6bb9](https://github.com/elct9620/kobako/commit/a7f6bb91d20e29aa5cd91c5568274c367a04c8f7))
16
+ * **mruby:** resolve a bind path's namespace once per namespace ([55cd1f3](https://github.com/elct9620/kobako/commit/55cd1f30313b70993aae8c973361ef636ce5d454))
17
+
3
18
  ## [0.21.0](https://github.com/elct9620/kobako/compare/v0.20.0...v0.21.0) (2026-07-29)
4
19
 
5
20
 
data/README.md CHANGED
@@ -77,7 +77,7 @@ The host embeds the sandbox and owns the SPEC wire codec. Choose by your host la
77
77
  | Rust SDK | `kobako` (crates.io) | `kobako = "0.12"` | A Rust host — the same behavior contract behind an idiomatic Rust API |
78
78
  | Low-level crates | `kobako-wasmtime` + `kobako-runtime` + `kobako-transport` + `kobako-codec` | Cargo deps | A custom host, or driving the wire directly in another language |
79
79
 
80
- The Rust crates are documented on [crates.io](https://crates.io/crates/kobako); the Ruby gem is this README. Two runnable Rust hosts show the choice: [`plugin-rs`](examples/plugin-rs) builds on the SDK, and [`wire-rs`](examples/wire-rs) assembles a host by hand on the low-level crates.
80
+ The Rust crates are documented on [crates.io](https://crates.io/crates/kobako); the Ruby gem is this README. Three runnable Rust hosts show the choice: [`plugin-rs`](examples/plugin-rs) builds on the SDK, [`wire-rs`](examples/wire-rs) assembles a host by hand on the low-level crates, and [`fixed-schema-rs`](examples/fixed-schema-rs) replaces what both of those keep — the payload schema — with a guest and a host that agree on protobuf.
81
81
 
82
82
  ### Pre-built Guest Binaries
83
83
 
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.13.1](https://github.com/elct9620/kobako/compare/kobako-runtime-v0.13.0...kobako-runtime-v0.13.1) (2026-07-30)
4
+
5
+
6
+ ### Miscellaneous Chores
7
+
8
+ * **kobako-runtime:** Synchronize kobako crates versions
9
+
3
10
  ## [0.13.0](https://github.com/elct9620/kobako/compare/kobako-runtime-v0.12.0...kobako-runtime-v0.13.0) (2026-07-29)
4
11
 
5
12
 
@@ -26,7 +26,7 @@ map the neutral types onto their own language surface.
26
26
 
27
27
  ```toml
28
28
  [dependencies]
29
- kobako-runtime = "0.13.0" # x-release-please-version
29
+ kobako-runtime = "0.13.1" # x-release-please-version
30
30
  ```
31
31
 
32
32
  ## License
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.13.1](https://github.com/elct9620/kobako/compare/kobako-transport-v0.13.0...kobako-transport-v0.13.1) (2026-07-30)
4
+
5
+
6
+ ### Miscellaneous Chores
7
+
8
+ * **kobako-transport:** Synchronize kobako crates versions
9
+
3
10
  ## [0.13.0](https://github.com/elct9620/kobako/compare/kobako-transport-v0.12.0...kobako-transport-v0.13.0) (2026-07-29)
4
11
 
5
12
 
@@ -35,7 +35,7 @@ the golden vectors in this crate are derived from that document.
35
35
 
36
36
  ```toml
37
37
  [dependencies]
38
- kobako-transport = "0.13.0" # x-release-please-version
38
+ kobako-transport = "0.13.1" # x-release-please-version
39
39
  ```
40
40
 
41
41
  ## License
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.13.1](https://github.com/elct9620/kobako/compare/kobako-wasmtime-v0.13.0...kobako-wasmtime-v0.13.1) (2026-07-30)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **host:** keep nothing in the ABI probe's capture pipes ([a3d6c1c](https://github.com/elct9620/kobako/commit/a3d6c1c8edb9964a7d8ab162b2e379b39dbbddb9))
9
+
10
+
11
+ ### Performance Improvements
12
+
13
+ * **host:** ask an artifact its ABI version once, not once per Sandbox ([693b94f](https://github.com/elct9620/kobako/commit/693b94f878e56815fe3faeae94e5c4d0cd9c8bb6))
14
+
3
15
  ## [0.13.0](https://github.com/elct9620/kobako/compare/kobako-wasmtime-v0.12.0...kobako-wasmtime-v0.13.0) (2026-07-29)
4
16
 
5
17
 
@@ -24,7 +24,7 @@ SDK consumes the same surface.
24
24
 
25
25
  ```toml
26
26
  [dependencies]
27
- kobako-wasmtime = "0.13.0" # x-release-please-version
27
+ kobako-wasmtime = "0.13.1" # x-release-please-version
28
28
  ```
29
29
 
30
30
  ## License
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.21.0"
4
+ VERSION = "0.21.1"
5
5
  end
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.21.0
4
+ version: 0.21.1
5
5
  platform: aarch64-linux
6
6
  authors:
7
7
  - Aotokitsuruya
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2026-07-29 00:00:00.000000000 Z
11
+ date: 2026-07-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: msgpack