From 0ff47bf07aedddcf28dbaae31943a5b57e547508 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 10 Sep 2026 21:12:48 +0000 Subject: [PATCH] chore: version packages --- .changeset/cli-database-management.md | 8 -------- .changeset/config-http-api.md | 8 -------- .changeset/initial-release.md | 14 -------------- .changeset/secure-pre-release.md | 9 --------- packages/cli/CHANGELOG.md | 28 +++++++++++++++++++++++++++ packages/cli/package.json | 2 +- packages/core/CHANGELOG.md | 20 +++++++++++++++++++ packages/core/package.json | 2 +- packages/http/CHANGELOG.md | 19 ++++++++++++++++++ packages/http/package.json | 2 +- packages/postgres/CHANGELOG.md | 19 ++++++++++++++++++ packages/postgres/package.json | 2 +- packages/sql/CHANGELOG.md | 18 +++++++++++++++++ packages/sql/package.json | 2 +- packages/sqlite/CHANGELOG.md | 19 ++++++++++++++++++ packages/sqlite/package.json | 2 +- packages/testkit/CHANGELOG.md | 18 +++++++++++++++++ packages/testkit/package.json | 2 +- 18 files changed, 148 insertions(+), 46 deletions(-) delete mode 100644 .changeset/cli-database-management.md delete mode 100644 .changeset/config-http-api.md delete mode 100644 .changeset/initial-release.md delete mode 100644 .changeset/secure-pre-release.md create mode 100644 packages/cli/CHANGELOG.md create mode 100644 packages/core/CHANGELOG.md create mode 100644 packages/http/CHANGELOG.md create mode 100644 packages/postgres/CHANGELOG.md create mode 100644 packages/sql/CHANGELOG.md create mode 100644 packages/sqlite/CHANGELOG.md create mode 100644 packages/testkit/CHANGELOG.md diff --git a/.changeset/cli-database-management.md b/.changeset/cli-database-management.md deleted file mode 100644 index 4d9affa..0000000 --- a/.changeset/cli-database-management.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -"@triplex-build/triplex-cli": minor ---- - -Add `db create`, `list`, `get`, `update`, `clear`, and `delete` commands for managed SQLite and -PostgreSQL databases. Allow `--database-id` to select managed SQLite databases and document direct -execution with `npx @triplex-build/triplex-cli`. Pin the compatible Effect Node runtime prerelease so a -fresh npm install can execute the packaged binary. diff --git a/.changeset/config-http-api.md b/.changeset/config-http-api.md deleted file mode 100644 index c78abce..0000000 --- a/.changeset/config-http-api.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -"@triplex-build/triplex": minor -"@triplex-build/triplex-http": minor ---- - -Add a backend-neutral HTTP package that derives runtime schemas, OpenAPI, versioned REST CRUD, and -atomic handlers from persisted Triplex configuration. Add exact-cut entity pagination and -entity-state transaction preconditions to the public core service. diff --git a/.changeset/initial-release.md b/.changeset/initial-release.md deleted file mode 100644 index 4d837cc..0000000 --- a/.changeset/initial-release.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -"@triplex-build/triplex": minor -"@triplex-build/triplex-cli": minor -"@triplex-build/triplex-postgres": minor -"@triplex-build/triplex-sql": minor -"@triplex-build/triplex-sqlite": minor -"@triplex-build/triplex-testkit": minor ---- - -Publish the initial Triplex package family. - -Triplex provides an Effect-native bitemporal fact database, portable Datalog, a causal transaction -journal, content-addressed typed configuration, graph constraints, derivations with provenance, -SQLite and PostgreSQL storage, reusable backend conformance tests, and an agent-oriented CLI. diff --git a/.changeset/secure-pre-release.md b/.changeset/secure-pre-release.md deleted file mode 100644 index ec790c3..0000000 --- a/.changeset/secure-pre-release.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -"@triplex-build/triplex": patch -"@triplex-build/triplex-cli": patch -"@triplex-build/triplex-http": patch ---- - -Fix large in-memory KV range collection and all-`0xff` key increments, and make the CLI's pre-1.0 -status explicit in help output. Preserve typed HTTP responses when synchronous request validation -rejects malformed temporal parameters or cursors. diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md new file mode 100644 index 0000000..6be2a99 --- /dev/null +++ b/packages/cli/CHANGELOG.md @@ -0,0 +1,28 @@ +# @triplex-build/triplex-cli + +## 0.1.0 + +### Minor Changes + +- 57e1868: Add `db create`, `list`, `get`, `update`, `clear`, and `delete` commands for managed SQLite and + PostgreSQL databases. Allow `--database-id` to select managed SQLite databases and document direct + execution with `npx @triplex-build/triplex-cli`. Pin the compatible Effect Node runtime prerelease so a + fresh npm install can execute the packaged binary. +- fb53ec6: Publish the initial Triplex package family. + + Triplex provides an Effect-native bitemporal fact database, portable Datalog, a causal transaction + journal, content-addressed typed configuration, graph constraints, derivations with provenance, + SQLite and PostgreSQL storage, reusable backend conformance tests, and an agent-oriented CLI. + +### Patch Changes + +- 313542f: Fix large in-memory KV range collection and all-`0xff` key increments, and make the CLI's pre-1.0 + status explicit in help output. Preserve typed HTTP responses when synchronous request validation + rejects malformed temporal parameters or cursors. +- Updated dependencies [8bd86f8] +- Updated dependencies [fb53ec6] +- Updated dependencies [313542f] + - @triplex-build/triplex@0.1.0 + - @triplex-build/triplex-postgres@0.1.0 + - @triplex-build/triplex-sql@0.1.0 + - @triplex-build/triplex-sqlite@0.1.0 diff --git a/packages/cli/package.json b/packages/cli/package.json index 9405b3a..9358fa4 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@triplex-build/triplex-cli", - "version": "0.0.0", + "version": "0.1.0", "description": "Agent-friendly Effect CLI for exploring and operating Triplex databases.", "keywords": [ "agent", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md new file mode 100644 index 0000000..e74aa2a --- /dev/null +++ b/packages/core/CHANGELOG.md @@ -0,0 +1,20 @@ +# @triplex-build/triplex + +## 0.1.0 + +### Minor Changes + +- 8bd86f8: Add a backend-neutral HTTP package that derives runtime schemas, OpenAPI, versioned REST CRUD, and + atomic handlers from persisted Triplex configuration. Add exact-cut entity pagination and + entity-state transaction preconditions to the public core service. +- fb53ec6: Publish the initial Triplex package family. + + Triplex provides an Effect-native bitemporal fact database, portable Datalog, a causal transaction + journal, content-addressed typed configuration, graph constraints, derivations with provenance, + SQLite and PostgreSQL storage, reusable backend conformance tests, and an agent-oriented CLI. + +### Patch Changes + +- 313542f: Fix large in-memory KV range collection and all-`0xff` key increments, and make the CLI's pre-1.0 + status explicit in help output. Preserve typed HTTP responses when synchronous request validation + rejects malformed temporal parameters or cursors. diff --git a/packages/core/package.json b/packages/core/package.json index 86b5d93..337d051 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@triplex-build/triplex", - "version": "0.0.0", + "version": "0.1.0", "description": "An Effect-native fact database with Datalog and typed, content-addressed configuration.", "keywords": [ "configuration", diff --git a/packages/http/CHANGELOG.md b/packages/http/CHANGELOG.md new file mode 100644 index 0000000..4d9fe06 --- /dev/null +++ b/packages/http/CHANGELOG.md @@ -0,0 +1,19 @@ +# @triplex-build/triplex-http + +## 0.1.0 + +### Minor Changes + +- 8bd86f8: Add a backend-neutral HTTP package that derives runtime schemas, OpenAPI, versioned REST CRUD, and + atomic handlers from persisted Triplex configuration. Add exact-cut entity pagination and + entity-state transaction preconditions to the public core service. + +### Patch Changes + +- 313542f: Fix large in-memory KV range collection and all-`0xff` key increments, and make the CLI's pre-1.0 + status explicit in help output. Preserve typed HTTP responses when synchronous request validation + rejects malformed temporal parameters or cursors. +- Updated dependencies [8bd86f8] +- Updated dependencies [fb53ec6] +- Updated dependencies [313542f] + - @triplex-build/triplex@0.1.0 diff --git a/packages/http/package.json b/packages/http/package.json index 8e8a8d9..988d3d3 100644 --- a/packages/http/package.json +++ b/packages/http/package.json @@ -1,6 +1,6 @@ { "name": "@triplex-build/triplex-http", - "version": "0.0.0", + "version": "0.1.0", "description": "Configuration-derived HTTP APIs for Triplex", "keywords": [ "effect", diff --git a/packages/postgres/CHANGELOG.md b/packages/postgres/CHANGELOG.md new file mode 100644 index 0000000..cf25e05 --- /dev/null +++ b/packages/postgres/CHANGELOG.md @@ -0,0 +1,19 @@ +# @triplex-build/triplex-postgres + +## 0.1.0 + +### Minor Changes + +- fb53ec6: Publish the initial Triplex package family. + + Triplex provides an Effect-native bitemporal fact database, portable Datalog, a causal transaction + journal, content-addressed typed configuration, graph constraints, derivations with provenance, + SQLite and PostgreSQL storage, reusable backend conformance tests, and an agent-oriented CLI. + +### Patch Changes + +- Updated dependencies [8bd86f8] +- Updated dependencies [fb53ec6] +- Updated dependencies [313542f] + - @triplex-build/triplex@0.1.0 + - @triplex-build/triplex-sql@0.1.0 diff --git a/packages/postgres/package.json b/packages/postgres/package.json index aa3cf3c..dfc680c 100644 --- a/packages/postgres/package.json +++ b/packages/postgres/package.json @@ -1,6 +1,6 @@ { "name": "@triplex-build/triplex-postgres", - "version": "0.0.0", + "version": "0.1.0", "description": "PostgreSQL backend for Triplex", "keywords": [ "database", diff --git a/packages/sql/CHANGELOG.md b/packages/sql/CHANGELOG.md new file mode 100644 index 0000000..69faa05 --- /dev/null +++ b/packages/sql/CHANGELOG.md @@ -0,0 +1,18 @@ +# @triplex-build/triplex-sql + +## 0.1.0 + +### Minor Changes + +- fb53ec6: Publish the initial Triplex package family. + + Triplex provides an Effect-native bitemporal fact database, portable Datalog, a causal transaction + journal, content-addressed typed configuration, graph constraints, derivations with provenance, + SQLite and PostgreSQL storage, reusable backend conformance tests, and an agent-oriented CLI. + +### Patch Changes + +- Updated dependencies [8bd86f8] +- Updated dependencies [fb53ec6] +- Updated dependencies [313542f] + - @triplex-build/triplex@0.1.0 diff --git a/packages/sql/package.json b/packages/sql/package.json index dbf7484..c055a55 100644 --- a/packages/sql/package.json +++ b/packages/sql/package.json @@ -1,6 +1,6 @@ { "name": "@triplex-build/triplex-sql", - "version": "0.0.0", + "version": "0.1.0", "description": "Shared SQL layers and query execution for Triplex", "keywords": [ "database", diff --git a/packages/sqlite/CHANGELOG.md b/packages/sqlite/CHANGELOG.md new file mode 100644 index 0000000..fe404ef --- /dev/null +++ b/packages/sqlite/CHANGELOG.md @@ -0,0 +1,19 @@ +# @triplex-build/triplex-sqlite + +## 0.1.0 + +### Minor Changes + +- fb53ec6: Publish the initial Triplex package family. + + Triplex provides an Effect-native bitemporal fact database, portable Datalog, a causal transaction + journal, content-addressed typed configuration, graph constraints, derivations with provenance, + SQLite and PostgreSQL storage, reusable backend conformance tests, and an agent-oriented CLI. + +### Patch Changes + +- Updated dependencies [8bd86f8] +- Updated dependencies [fb53ec6] +- Updated dependencies [313542f] + - @triplex-build/triplex@0.1.0 + - @triplex-build/triplex-sql@0.1.0 diff --git a/packages/sqlite/package.json b/packages/sqlite/package.json index 3155da8..964614b 100644 --- a/packages/sqlite/package.json +++ b/packages/sqlite/package.json @@ -1,6 +1,6 @@ { "name": "@triplex-build/triplex-sqlite", - "version": "0.0.0", + "version": "0.1.0", "description": "SQLite backend for Triplex", "keywords": [ "database", diff --git a/packages/testkit/CHANGELOG.md b/packages/testkit/CHANGELOG.md new file mode 100644 index 0000000..8122478 --- /dev/null +++ b/packages/testkit/CHANGELOG.md @@ -0,0 +1,18 @@ +# @triplex-build/triplex-testkit + +## 0.1.0 + +### Minor Changes + +- fb53ec6: Publish the initial Triplex package family. + + Triplex provides an Effect-native bitemporal fact database, portable Datalog, a causal transaction + journal, content-addressed typed configuration, graph constraints, derivations with provenance, + SQLite and PostgreSQL storage, reusable backend conformance tests, and an agent-oriented CLI. + +### Patch Changes + +- Updated dependencies [8bd86f8] +- Updated dependencies [fb53ec6] +- Updated dependencies [313542f] + - @triplex-build/triplex@0.1.0 diff --git a/packages/testkit/package.json b/packages/testkit/package.json index d2b0a48..64a6ea7 100644 --- a/packages/testkit/package.json +++ b/packages/testkit/package.json @@ -1,6 +1,6 @@ { "name": "@triplex-build/triplex-testkit", - "version": "0.0.0", + "version": "0.1.0", "description": "Backend test helpers for Triplex", "keywords": [ "effect",