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 .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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",
Expand Down
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
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": "@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": [
".",
Expand Down
2 changes: 1 addition & 1 deletion packages/client-shim/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
"LICENSE"
],
"dependencies": {
"@adcp/sdk": "^9.0.0-beta.29"
"@adcp/sdk": "^9.0.0-beta.30"
},
"keywords": [
"adcp",
Expand Down
6 changes: 3 additions & 3 deletions src/lib/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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;

/**
Expand Down
Loading