kobako 0.11.0-aarch64-linux → 0.11.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: 8a44a6f91fb5e57a8cc4cfca97e501fab889eef17961c8088b736625e0a06983
4
- data.tar.gz: 5ce894137c6df04ddf48b4bbd821bf76764a06663d7552624539e6a6ffa88242
3
+ metadata.gz: ea2898e0ad1df3bcda9f6b71f7c811890f248c8bf8203c8114a271aa97dd234b
4
+ data.tar.gz: 59faa2b92a0f751b7fe13c339c1bf47502d1560577a0d74ea77cfb72d68eb0aa
5
5
  SHA512:
6
- metadata.gz: 8d28583de8802ed0dcab2cb1138d671674cf9ca11823a766ec9a46a075c73aa24d40da121273da0c506fddebea1a6fa1cd75e1041aff4a2929391b7b97d5e064
7
- data.tar.gz: c6aea42ae6d840cee738ee3306e2963d4ad4e60f6e640835e9f38ef98a323a267f04986d27afb08ee6bb21665a245bee97e05eaba13596220dbbd914f2325b56
6
+ metadata.gz: f125e8a66ce7b03dc9608f30cc10b6ea3dd6d41115104c39852725c09e2fd0f0f3df2c07c8b4801f4f57f27e80485548d591281f972f30151a9ac8d7001b5856
7
+ data.tar.gz: 35ae1f7b98347be2a7b7f9e28173d8ffad8ea0129784c507530c11227a29585805a774b541be6e5e59d501304ee6325a3cf9206b48318e643eb3e0edc800f483
@@ -1 +1 @@
1
- {".":"0.11.0","wasm/kobako-core":"0.5.0","wasm/kobako":"0.5.0","wasm/kobako-io":"0.5.0","wasm/kobako-regexp":"0.5.0","wasm/kobako-baker":"0.5.0"}
1
+ {".":"0.11.1","wasm/kobako-core":"0.5.1","wasm/kobako":"0.5.1","wasm/kobako-io":"0.5.1","wasm/kobako-regexp":"0.5.1","wasm/kobako-baker":"0.5.1"}
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.11.1](https://github.com/elct9620/kobako/compare/v0.11.0...v0.11.1) (2026-06-14)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **guest:** adopt beni 0.7.0 protected dispatch (B-51) ([c61655b](https://github.com/elct9620/kobako/commit/c61655bcead336d32a4b6ff7ff1b34c21cdfccd9))
9
+
3
10
  ## [0.11.0](https://github.com/elct9620/kobako/compare/v0.10.0...v0.11.0) (2026-06-13)
4
11
 
5
12
 
data/README.md CHANGED
@@ -329,7 +329,7 @@ forwards to another Service but never reads — while a named subset becomes an
329
329
 
330
330
  Guest code can name any `<Namespace>::<Member>` path, but a forged name only resolves to
331
331
  something you bound — the real authorization gate is this host-side allowlist. Give each
332
- trust context its own Sandbox, and see [`docs/security.md`](docs/security.md) for the rest
332
+ trust context its own Sandbox, and see [`docs/security-model.md`](docs/security-model.md) for the rest
333
333
  as security-design concerns: validating untrusted input, default-deny external effects,
334
334
  and controlling the return surface.
335
335
 
data/SECURITY.md ADDED
@@ -0,0 +1,35 @@
1
+ # Security Policy
2
+
3
+ kobako runs untrusted guest code inside an in-process Wasm sandbox, so a break in
4
+ its isolation boundary is treated as a security issue. This file is about **reporting
5
+ such an issue**; for how the boundary is meant to work and where your
6
+ responsibilities as a host begin, see [`docs/security-model.md`](docs/security-model.md).
7
+
8
+ ## Supported versions
9
+
10
+ kobako is pre-1.0. Security fixes land on the latest released `0.x` version only;
11
+ upgrade to it before reporting.
12
+
13
+ ## Reporting a vulnerability
14
+
15
+ Report privately through GitHub's **[Report a vulnerability](https://github.com/elct9620/kobako/security/advisories/new)**
16
+ flow — please do not open a public issue or pull request for a suspected vulnerability.
17
+
18
+ Include the affected version, a minimal guest script or host setup that reproduces the
19
+ issue, and what boundary you expected to hold. You can expect an initial acknowledgement
20
+ within a few days; once a fix or mitigation is agreed, disclosure is coordinated through
21
+ a GitHub Security Advisory. Reporters are credited in the published advisory unless you
22
+ ask to stay anonymous.
23
+
24
+ ## Scope
25
+
26
+ In scope is anything that lets guest code cross the isolation boundary it should not:
27
+ reaching host memory, the filesystem, the network, or `ENV`; obtaining ambient time or
28
+ entropy the host froze; reaching a `Namespace::Member` you never bound; or a
29
+ memory-safety fault in the host codec or wasmtime driver.
30
+
31
+ Out of scope is what a bound Service is *designed* to expose: if guest code reaches a
32
+ method because you bound an object carrying it, that is a host-side authorization
33
+ choice, not a sandbox escape — narrow the bound surface as described in the security
34
+ model. Resource exhaustion that stays within the limits you configured is likewise
35
+ expected behaviour, not a vulnerability.
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.0"
4
+ VERSION = "0.11.1"
5
5
  end
@@ -2,6 +2,7 @@
2
2
  "$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
3
3
  "release-type": "ruby",
4
4
  "last-release-sha": "5694da60b08931ea260e13025689b8d8c47d767a",
5
+ "group-pull-request-title-pattern": "chore${scope}: release${component} ${version}",
5
6
  "packages": {
6
7
  ".": {
7
8
  "component": "kobako",
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.0
4
+ version: 0.11.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-06-13 00:00:00.000000000 Z
11
+ date: 2026-06-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: msgpack
@@ -37,6 +37,7 @@ files:
37
37
  - CHANGELOG.md
38
38
  - LICENSE
39
39
  - README.md
40
+ - SECURITY.md
40
41
  - data/kobako.wasm
41
42
  - lib/kobako.rb
42
43
  - lib/kobako/3.3/kobako.so