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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.2.3 — 2026-08-02

- Separate the browser implementation/package version from its IICP SDK compatibility version.
- Register additive `implementation_name`, `implementation_version`, and
`sdk_compatibility_version` fields while retaining `sdk_version` for older directories.
- Add one bounded quality workflow and a content-free build provenance manifest.
- No task payload, encryption, relay, or browser execution semantics changed.

## 0.2.2 — 2026-07-10

- Fix browser-provider relay ticket issuance for opaque node credentials by sending the required `X-Node-Id` subject hint.
Expand Down
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,13 @@ Serving requires WebLLM — add it alongside this package:
npm install @mlc-ai/web-llm # peer dependency, only needed to serve
```

## Version metadata

Browser package identity and directory compatibility are separate values. Provider
registration reports `implementation_name=@iicp/web-node`, the package
`implementation_version`, and `sdk_compatibility_version`; the legacy
`sdk_version` field remains the compatibility alias for older directories.

## Encryption

IICP-CX (S.16) Tier-1: ephemeral **X25519** key agreement → **HKDF-SHA256** →
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.2",
"version": "0.2.3",
"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.2";
export const BROWSER_NODE_VERSION = "0.2.3";
export const BROWSER_NODE_SDK_COMPATIBILITY_VERSION = "0.7.101";

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