diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 40b56cb3..e137079b 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,6 +1,6 @@ { - "packages/api": "10.0.1", - "packages/client": "9.0.1", + "packages/api": "10.0.2", + "packages/client": "9.1.0", "packages/date-range": "8.0.1", "packages/explode": "6.0.1", "packages/fs": "9.0.1", diff --git a/packages/api/CHANGELOG.md b/packages/api/CHANGELOG.md index 3f9952c5..218ac713 100644 --- a/packages/api/CHANGELOG.md +++ b/packages/api/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [10.0.2](https://github.com/jg-wright/targetd/compare/@targetd/api-v10.0.1...@targetd/api-v10.0.2) (2026-06-01) + + +### Bug Fixes + +* **api:** preserve optional payload properties through variable resolver ([e595f71](https://github.com/jg-wright/targetd/commit/e595f71ffd1f6372ae6284b9b17fe54243527c57)) + ## [10.0.1](https://github.com/jg-wright/targetd/compare/@targetd/api-v10.0.0...@targetd/api-v10.0.1) (2026-05-18) diff --git a/packages/api/deno.json b/packages/api/deno.json index 4d824680..cf7d038e 100644 --- a/packages/api/deno.json +++ b/packages/api/deno.json @@ -1,7 +1,7 @@ { "name": "@targetd/api", "description": "Type-safe targeting and feature flag system with dynamic content delivery based on query conditions. Perfect for A/B testing, feature flags, and content personalization.", - "version": "10.0.1", + "version": "10.0.2", "exports": "./src/index.ts", "fmt": { "semiColons": false, diff --git a/packages/client/CHANGELOG.md b/packages/client/CHANGELOG.md index 83be1114..a22ba079 100644 --- a/packages/client/CHANGELOG.md +++ b/packages/client/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [9.1.0](https://github.com/jg-wright/targetd/compare/@targetd/client-v9.0.1...@targetd/client-v9.1.0) (2026-06-01) + + +### Features + +* **client:** expose a static factory that only requires a schema ([675b426](https://github.com/jg-wright/targetd/commit/675b426a26e6f4be6e092292ecf3f1036b2e22d9)) + ## [9.0.1](https://github.com/jg-wright/targetd/compare/@targetd/client-v9.0.0...@targetd/client-v9.0.1) (2026-05-18) diff --git a/packages/client/deno.json b/packages/client/deno.json index 1ba37708..8e7488e4 100644 --- a/packages/client/deno.json +++ b/packages/client/deno.json @@ -1,7 +1,7 @@ { "name": "@targetd/client", "description": "Type-safe HTTP client for querying @targetd/server instances. Mirrors the Data API with full TypeScript inference.", - "version": "9.0.1", + "version": "9.1.0", "exports": "./src/index.ts", "imports": { "@targetd/api": "jsr:@targetd/api@^10.0.0",