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
5 changes: 5 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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"
Expand Down
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
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.25",
"version": "9.0.0-beta.26",
"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.25"
"@adcp/sdk": "^9.0.0-beta.26"
},
"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.25';
export const LIBRARY_VERSION = '9.0.0-beta.26';

/**
* AdCP specification version this library is built for
Expand Down Expand Up @@ -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;

/**
Expand Down
Loading