@irisrun/channel-core 0.2.0 → 0.3.0

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -27,7 +27,7 @@ protocol. This package is that protocol, factored into one driver:
27
27
  agree field-for-field.
28
28
 
29
29
  The proof that channels are interchangeable is a single shared **conformance suite**
30
- (`tests/lib/channel-port-conformance.ts`) that `channel-rest`, `channel-mcp`, and
30
+ (the importable `@irisrun/channel-conformance`) that `channel-rest`, `channel-mcp`, and
31
31
  `channel-slack` all pass — "channels behind one port" is a literal, executed guarantee.
32
32
 
33
33
  The continuation token is an instance-local ordering credential; the **durable**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@irisrun/channel-core",
3
- "version": "0.2.0",
3
+ "version": "0.3.0",
4
4
  "type": "module",
5
5
  "description": "Iris channel port — the narrow, replay-safe contract every channel implements: mint the sessionId, own and rotate a single-use continuation token (rotate only on a committed turn; keep it on a non-committed one), an atomic single-use in-flight claim, normalize-inbound / emit-outbound, and a loud refusal taxonomy. The shared driver behind channel-rest, channel-mcp, and channel-slack, with one conformance suite any channel must pass — so durable, resumable sessions are pluggable and replay-safe by construction. Depends only on @irisrun/core types.",
6
6
  "exports": {
@@ -11,7 +11,7 @@
11
11
  }
12
12
  },
13
13
  "dependencies": {
14
- "@irisrun/core": "^0.2.0"
14
+ "@irisrun/core": "^0.3.0"
15
15
  },
16
16
  "license": "MIT",
17
17
  "engines": {