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
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

All notable changes to `@hasna/contracts` are documented here.

## [0.10.6] - 2026-08-11

- Adds the fail-closed `safe-read` collection helper, including complete
pagination across numeric cursors.
- Adds the metadata-only `verify-write` command for checking stored writes
without rendering capability-bearing content.

PATCH, not minor. This ships additive operational verification helpers without
changing existing contract shapes.

## [0.10.5] - 2026-08-10

- Generated SDK request builders serialize array-valued OpenAPI query
Expand Down
2 changes: 1 addition & 1 deletion hasna.contract.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"name": "contracts",
"class": "library",
"contractVersion": "v1",
"kitVersion": "0.10.5",
"kitVersion": "0.10.6",
"description": "Shared schemas, validators, and conformance kit for Hasna open-source agent infrastructure. Ships types and CLI checks only; no store.",
"bins": [
"contracts",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hasna/contracts",
"version": "0.10.5",
"version": "0.10.6",
"description": "Shared schemas and validators for Hasna open-source agent infrastructure contracts.",
"type": "module",
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion src/schemas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {
import { z } from "zod";

export const CONTRACTS_PACKAGE_NAME = "@hasna/contracts";
export const CONTRACTS_PACKAGE_VERSION = "0.10.5";
export const CONTRACTS_PACKAGE_VERSION = "0.10.6";

export const SCHEMA_IDS = {
actorRef: "hasna.actor_ref.v1",
Expand Down
2 changes: 1 addition & 1 deletion tests/published-package-security.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import { CONTRACTS_PACKAGE_VERSION } from "../src/schemas.js";
import { scanNoCloudTarget } from "../src/no-cloud.js";

const root = join(import.meta.dir, "..");
const expectedUnreleasedVersion = "0.10.5";
const expectedUnreleasedVersion = "0.10.6";
const forbiddenInternalDomains = [["hasna", "xyz"].join(".")];

function commandText(bytes: Uint8Array): string {
Expand Down
Loading