From efacb72d50e3facccfcf5abe089990407fe1cf18 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 6 Jun 2026 16:16:40 +0000 Subject: [PATCH 1/2] chore: release package (beta) --- .changeset/pre.json | 5 +++++ CHANGELOG.md | 14 ++++++++++++++ package.json | 2 +- packages/client-shim/package.json | 2 +- src/lib/version.ts | 6 +++--- 5 files changed, 24 insertions(+), 5 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 91a8a21a5..b5e073df7 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -41,6 +41,7 @@ "cluster-7-server-decisioning", "codegen-flatten-allof-not-branches", "community-mirror-adagents-helper", + "community-mirror-create-upsert", "community-mirror-lifecycle-client", "compliance-reset-task-registry", "comply-controller-visibility", @@ -57,6 +58,7 @@ "external-compliance-schema-bundle", "field-value-or-absent-media-buy-status", "finalize-array-wildcards", + "fix-latest-compliance-version", "fix-server-handler-payload-aliases", "fix-storyboard-media-buy-window", "fix-unwrapper-injected-status-leak", @@ -85,6 +87,7 @@ "post-1902-cleanup", "postgres-task-registry-docs", "preferred-attestation-mode", + "preserve-storyboard-asap-start", "product-card-self-rendering", "product-property-policy", "product-schema-object-helpers", @@ -133,8 +136,10 @@ "update-media-buy-actions", "upstream-digest-attestation-hardening", "upstream-recorder-dropped-count", + "valid-actions-advisory-scan", "validate-input-response-schema", "webhook-parse-conformance", + "webhook-scope-creative-context", "wholesale-feed-sync-lifecycle", "wholesale-feed-webhook-normalizer", "zod-object-dx-hardening" diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c04dd3b5..4867de47e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 9.0.0-beta.26 + +### Minor Changes + +- 6e09e6a: Add RegistryClient.upsertCommunityMirrorAdagents for keyed community-mirror publishes, while keeping createCommunityMirrorAdagents as the generator-only helper. +- 35c276b: Add operation-scoped webhook URL template filters and per-call webhook suppression, and capture build_creative variant context from storyboard responses. + +### Patch Changes + +- e8d05ea: Repair local compliance bundles whose `latest` selector leaked into `ComplianceIndex.adcp_version` by deriving the + real AdCP version from the matching schema bundle before storyboard execution. +- 8681d6e: Preserve storyboard `create_media_buy` sample requests that set `start_time: "asap"` instead of rewriting them to a generated future timestamp. +- a415b20: Avoid false-positive `missing-valid-actions` advisories when a later `get_media_buys` observation in the same compliance run includes `valid_actions`. + ## 9.0.0-beta.25 ### Minor Changes diff --git a/package.json b/package.json index 60202b45f..57ce90599 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@adcp/sdk", - "version": "9.0.0-beta.25", + "version": "9.0.0-beta.26", "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 225b22c08..399cb8ab7 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.25" + "@adcp/sdk": "^9.0.0-beta.26" }, "keywords": [ "adcp", diff --git a/src/lib/version.ts b/src/lib/version.ts index 44c540e74..869b71091 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.25'; +export const LIBRARY_VERSION = '9.0.0-beta.26'; /** * AdCP specification version this library is built for @@ -91,10 +91,10 @@ export type AdcpVersion = (typeof COMPATIBLE_ADCP_VERSIONS)[number]; * Full version information */ export const VERSION_INFO = { - library: '9.0.0-beta.25', + library: '9.0.0-beta.26', adcp: '3.1.0-rc.9', compatibleVersions: COMPATIBLE_ADCP_VERSIONS, - generatedAt: '2026-06-05T18:42:32.578Z', + generatedAt: '2026-06-06T16:16:39.615Z', } as const; /** From ef2e055bd0b24b47f4718c0378262cdb58cef34e Mon Sep 17 00:00:00 2001 From: Brian O'Kelley Date: Sat, 6 Jun 2026 12:22:09 -0400 Subject: [PATCH 2/2] chore: trigger release pr checks