diff --git a/.changeset/pre.json b/.changeset/pre.json index 2594837a2..6f95fe338 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -34,6 +34,7 @@ "billing-agent-gates", "block-agent-pr-title-prefixes", "brand-asset-mapping-helpers", + "brand-logo-registry-client", "brand-rights-input-schemas", "byok-provider-auth-docs", "canonical-format-cache-scope-helpers", @@ -67,6 +68,7 @@ "external-compliance-schema-bundle", "field-value-or-absent-media-buy-status", "finalize-array-wildcards", + "fix-audit-advisories", "fix-comply-timeout-budget", "fix-content-standards-specialism", "fix-latest-compliance-version", @@ -120,6 +122,7 @@ "remove-schema-root-exports", "request-signing-conformance-cache", "resolve-3-1-blocked-issues", + "resolve-task-state-helper", "response-enhancer-config", "restore-response-signing", "schema-loader-strip-nested-ids", @@ -149,6 +152,7 @@ "taskresult-adcp-version", "terminal-account-pagination", "test-agents-envelope-status", + "thread-step-contributions", "tidy-buyer-agent-seeds", "tighten-beta11-cache-scope", "triage-agent-routing-briefs", diff --git a/CHANGELOG.md b/CHANGELOG.md index 830f130ee..6534d1130 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## 9.0.0-beta.30 + +### Minor Changes + +- b73b728: Add RegistryClient helpers for AAO brand logo assets, including listing approved or pending logos by domain and uploading community logo assets for review. +- a22d284: Expose `resolveTaskState()` to reconcile `TaskResult.status` with task-envelope status values in response payloads. + +### Patch Changes + +- 16ee37f: fix(deps): resolve npm audit advisories via non-breaking lockfile bumps + + `npm audit fix` (non-breaking): `ws` 8.20.1 → 8.21.0 (GHSA-96hv-2xvq-fx4p, high — memory-exhaustion DoS; the only runtime dep affected), `tar` 7.5.15 → 7.5.16 (GHSA-vmf3-w455-68vh, moderate — build-time devDependency) and `markdown-it` 14.1.1 → 14.2.0 (GHSA-6v5v-wf23-fmfq, moderate — dev-only, via typedoc). Lockfile-only; no `package.json` range changes. Incidentally re-resolves a few unrelated dev-only transitives to satisfy the tree (`js-yaml` 4.1.1 → 4.2.0, `hono` 4.12.23 → 4.12.25) — distinct from the `@changesets/*` → `js-yaml` advisory chain, which requires a breaking major bump and is left for a separate maintainer decision. + +- 076e5ea: Thread storyboard contribution flags through `runStoryboardStep()` and the `adcp storyboard step` CLI so step-by-step runners preserve branch-set state for synthetic `assert_contribution` checks. + ## 9.0.0-beta.29 ### Minor Changes diff --git a/package.json b/package.json index 2089874bb..a66982937 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@adcp/sdk", - "version": "9.0.0-beta.29", + "version": "9.0.0-beta.30", "description": "AdCP SDK — client, server, and compliance harnesses for the AdContext Protocol (MCP + A2A)", "workspaces": [ ".", diff --git a/packages/client-shim/package.json b/packages/client-shim/package.json index db60b5df6..228ab9085 100644 --- a/packages/client-shim/package.json +++ b/packages/client-shim/package.json @@ -106,7 +106,7 @@ "LICENSE" ], "dependencies": { - "@adcp/sdk": "^9.0.0-beta.29" + "@adcp/sdk": "^9.0.0-beta.30" }, "keywords": [ "adcp", diff --git a/src/lib/version.ts b/src/lib/version.ts index c10f6db4f..04c9238fd 100644 --- a/src/lib/version.ts +++ b/src/lib/version.ts @@ -4,7 +4,7 @@ /** * AdCP SDK library version */ -export const LIBRARY_VERSION = '9.0.0-beta.29'; +export const LIBRARY_VERSION = '9.0.0-beta.30'; /** * AdCP specification version this library is built for @@ -97,10 +97,10 @@ export type AdcpVersion = (typeof COMPATIBLE_ADCP_VERSIONS)[number]; * Full version information */ export const VERSION_INFO = { - library: '9.0.0-beta.29', + library: '9.0.0-beta.30', adcp: '3.1.0-rc.14', compatibleVersions: COMPATIBLE_ADCP_VERSIONS, - generatedAt: '2026-06-13T10:49:48.720Z', + generatedAt: '2026-06-16T20:01:12.379Z', } as const; /**