Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,13 @@

## Unreleased

## 0.2.4 — 2026-08-14

- Verify directory-signed dispatch tickets in the browser consumer before exposing route material.
- Fail closed on invalid or missing ticket evidence without silently downgrading to legacy discovery.
- Consume the canonical dispatch-ticket fixture used by the three server SDKs.
- Add the shared effective-capability-v1 parser, matcher and explicit provider variants.
- Add opt-in, chat-only runtime identity composition without changing disabled or non-chat requests.
- Advance the browser provider compatibility declaration to SDK contract `0.7.102`.

## 0.2.3 — 2026-08-02
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@iicp/web-node",
"version": "0.2.3",
"version": "0.2.4",
"description": "Browser-native IICP node (consume + serve): discovery-mesh client with mandatory E2E encryption (IICP-CX) + WebLLM provider. Zero-config, ESM.",
"type": "module",
"main": "dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Browser implementation and IICP SDK-compatibility versions are separate axes.
// Keep package.json synchronized with BROWSER_NODE_VERSION; the quality gate
// rejects drift. SDK compatibility describes the registration contract only.
export const BROWSER_NODE_VERSION = "0.2.3";
export const BROWSER_NODE_VERSION = "0.2.4";
export const BROWSER_NODE_SDK_COMPATIBILITY_VERSION = "0.7.102";

/** Backward-compatible registration value for directories that know only sdk_version. */
Expand Down
Loading