- Kernel: strict capability contract merge, junit selftest, startup class, cold boot budget warning, boot txn schema v1, rc/kernel.ext resolution traces, richer bareOsPublishBootReady (steps/bootSteps, FSM sketch) - Booter: warm reboot extra cycles, boot provenance on boot.json, step mirroring, corestore/swarm suspend-resume hooks, swarm connection manager sketch, event bus + optional NDJSON, security_posture proc schema v2, key handle TTL/scopes - VFS: snapshot path class + BARE_OS_VFS_SNAPSHOTS checkout views, policy metrics, batch put + diff helpers, watch consistency hint, quotas vfsQuota fields - Protocol: BARE_OS_PROTOMUX_CORK_HINT_VERSION via channel exports - Initd: BARE_INITD_UNIT_STATES; shell: tokenizer module split - Extensions: capability conflict detector in kernel-extension-resolver - Docs/scripts: reference index map, observability event bus, dry-run vs rollback table, benchmark trend + integration-lab smoke, scripts README - Tests: /proc listing + pseudo path caps for snapshots and security_posture
9 lines
414 B
JavaScript
9 lines
414 B
JavaScript
/**
|
|
* Versioned Protomux channel schema marker for strict handshakes (increment when payloads change).
|
|
* High-churn RPC paths may apply **cork/uncork** batching per stack capabilities; document bumps here.
|
|
*/
|
|
export const BARE_OS_PROTOMUX_CHANNEL_SCHEMA_VERSION = 1
|
|
|
|
/** Bumped when cork batching contracts or channel pairing rules change (operator docs). */
|
|
export const BARE_OS_PROTOMUX_CORK_HINT_VERSION = 1
|