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
6 changes: 3 additions & 3 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"packages/api": "8.1.2",
"packages/client": "7.0.3",
"packages/api": "8.2.0",
"packages/client": "7.1.0",
"packages/date-range": "6.0.3",
"packages/explode": "4.0.3",
"packages/fs": "7.1.1",
"packages/json-schema": "5.2.1",
"packages/server": "8.1.3"
"packages/server": "8.2.0"
}
13 changes: 13 additions & 0 deletions packages/api/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## [8.2.0](https://github.com/johngeorgewright/targetd/compare/@targetd/api-v8.1.2...@targetd/api-v8.2.0) (2026-04-10)


### Features

* introduce data interfaces ([4dfe412](https://github.com/johngeorgewright/targetd/commit/4dfe412d206b1f5d0b09ea69286dbe6b93712fe2))
* introduce data interfaces ([885b546](https://github.com/johngeorgewright/targetd/commit/885b54638afbbcf46159dfaee6cdf069061ad7f0))


### Bug Fixes

* export Merge type from util.ts ([a9fdfb3](https://github.com/johngeorgewright/targetd/commit/a9fdfb385714a39095b64f61e963e22b03883a3e))

## [8.1.2](https://github.com/johngeorgewright/targetd/compare/@targetd/api-v8.1.1...@targetd/api-v8.1.2) (2026-04-10)


Expand Down
2 changes: 1 addition & 1 deletion packages/api/deno.json
Original file line number Diff line number Diff line change
@@ -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": "8.1.2",
"version": "8.2.0",
"exports": "./src/index.ts",
"fmt": {
"semiColons": false,
Expand Down
9 changes: 9 additions & 0 deletions packages/client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## [7.1.0](https://github.com/johngeorgewright/targetd/compare/@targetd/client-v7.0.3...@targetd/client-v7.1.0) (2026-04-10)


### Features

* enhance error handling and add tests for matching payloads ([e64b177](https://github.com/johngeorgewright/targetd/commit/e64b177937abf21ded60b328755635c7aed93125))
* introduce data interfaces ([4dfe412](https://github.com/johngeorgewright/targetd/commit/4dfe412d206b1f5d0b09ea69286dbe6b93712fe2))
* introduce data interfaces ([885b546](https://github.com/johngeorgewright/targetd/commit/885b54638afbbcf46159dfaee6cdf069061ad7f0))

## [7.0.3](https://github.com/johngeorgewright/targetd/compare/@targetd/client-v7.0.2...@targetd/client-v7.0.3) (2026-04-10)


Expand Down
2 changes: 1 addition & 1 deletion packages/client/deno.json
Original file line number Diff line number Diff line change
@@ -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": "7.0.3",
"version": "7.1.0",
"exports": "./src/index.ts",
"imports": {
"@targetd/api": "jsr:@targetd/api@^8.0.3",
Expand Down
9 changes: 9 additions & 0 deletions packages/server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## [8.2.0](https://github.com/johngeorgewright/targetd/compare/@targetd/server-v8.1.3...@targetd/server-v8.2.0) (2026-04-10)


### Features

* enhance error handling and add tests for matching payloads ([e64b177](https://github.com/johngeorgewright/targetd/commit/e64b177937abf21ded60b328755635c7aed93125))
* introduce data interfaces ([4dfe412](https://github.com/johngeorgewright/targetd/commit/4dfe412d206b1f5d0b09ea69286dbe6b93712fe2))
* introduce data interfaces ([885b546](https://github.com/johngeorgewright/targetd/commit/885b54638afbbcf46159dfaee6cdf069061ad7f0))

## [8.1.3](https://github.com/johngeorgewright/targetd/compare/@targetd/server-v8.1.2...@targetd/server-v8.1.3) (2026-04-10)


Expand Down
2 changes: 1 addition & 1 deletion packages/server/deno.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@targetd/server",
"description": "Express-based HTTP server for exposing @targetd/api Data instances via REST endpoints with built-in CORS and error handling.",
"version": "8.1.3",
"version": "8.2.0",
"exports": "./src/index.ts",
"imports": {
"@johngw/error": "npm:@johngw/error@^2.2.2",
Expand Down
Loading