From ad05fb5a73248259b3fb8b339375435ac24ba6f8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 6 Feb 2026 07:58:22 +0000 Subject: [PATCH] chore(release): version packages --- .changeset/initial-publish.md | 20 -------------------- apps/firebase/functions/CHANGELOG.md | 10 ++++++++++ apps/firebase/functions/package.json | 2 +- packages/cli/CHANGELOG.md | 22 ++++++++++++++++++++++ packages/cli/package.json | 2 +- packages/core/CHANGELOG.md | 16 ++++++++++++++++ packages/core/package.json | 2 +- packages/firebase-storage/CHANGELOG.md | 22 ++++++++++++++++++++++ packages/firebase-storage/package.json | 2 +- packages/json-storage/CHANGELOG.md | 22 ++++++++++++++++++++++ packages/json-storage/package.json | 2 +- packages/mcp-server/CHANGELOG.md | 22 ++++++++++++++++++++++ packages/mcp-server/package.json | 2 +- packages/storage/CHANGELOG.md | 21 +++++++++++++++++++++ packages/storage/package.json | 2 +- packages/threads/CHANGELOG.md | 25 +++++++++++++++++++++++++ packages/threads/package.json | 2 +- 17 files changed, 168 insertions(+), 28 deletions(-) delete mode 100644 .changeset/initial-publish.md create mode 100644 apps/firebase/functions/CHANGELOG.md create mode 100644 packages/cli/CHANGELOG.md create mode 100644 packages/core/CHANGELOG.md create mode 100644 packages/firebase-storage/CHANGELOG.md create mode 100644 packages/json-storage/CHANGELOG.md create mode 100644 packages/mcp-server/CHANGELOG.md create mode 100644 packages/storage/CHANGELOG.md create mode 100644 packages/threads/CHANGELOG.md diff --git a/.changeset/initial-publish.md b/.changeset/initial-publish.md deleted file mode 100644 index 235385f..0000000 --- a/.changeset/initial-publish.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -"@redjay/threads": minor -"@redjay/threads-cli": minor -"@redjay/threads-core": minor -"@redjay/threads-storage": major -"@redjay/threads-json-storage": minor -"@redjay/threads-firebase-storage": minor -"@redjay/threads-mcp": minor ---- - -Initial public release of the Threads platform. - -- Async storage pipeline with IAsyncThreadStore interface and SyncToAsyncAdapter -- Firebase Firestore backend with multi-tenant isolation -- JSON file storage backend for local development -- CLI with 25+ commands: list, new, show, set, progress, search, batch, agenda, timeline, and more -- Reminder and recurrence support -- Configurable temperature thresholds -- MCP server for AI assistant integration -- 882 tests passing diff --git a/apps/firebase/functions/CHANGELOG.md b/apps/firebase/functions/CHANGELOG.md new file mode 100644 index 0000000..0d880d8 --- /dev/null +++ b/apps/firebase/functions/CHANGELOG.md @@ -0,0 +1,10 @@ +# @joshua2048/threads-firebase-functions + +## 1.0.1 + +### Patch Changes + +- Updated dependencies [b43ff5f] + - @redjay/threads-core@1.1.0 + - @redjay/threads-storage@3.0.0 + - @redjay/threads-firebase-storage@1.1.0 diff --git a/apps/firebase/functions/package.json b/apps/firebase/functions/package.json index 31ea581..d42e0bd 100644 --- a/apps/firebase/functions/package.json +++ b/apps/firebase/functions/package.json @@ -1,6 +1,6 @@ { "name": "@joshua2048/threads-firebase-functions", - "version": "1.0.0", + "version": "1.0.1", "description": "Firebase Cloud Functions for Threads platform", "main": "dist/index.js", "scripts": { diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md new file mode 100644 index 0000000..bc01559 --- /dev/null +++ b/packages/cli/CHANGELOG.md @@ -0,0 +1,22 @@ +# @redjay/threads-cli + +## 1.3.0 + +### Minor Changes + +- b43ff5f: Initial public release of the Threads platform. + + - Async storage pipeline with IAsyncThreadStore interface and SyncToAsyncAdapter + - Firebase Firestore backend with multi-tenant isolation + - JSON file storage backend for local development + - CLI with 25+ commands: list, new, show, set, progress, search, batch, agenda, timeline, and more + - Reminder and recurrence support + - Configurable temperature thresholds + - MCP server for AI assistant integration + - 882 tests passing + +### Patch Changes + +- Updated dependencies [b43ff5f] + - @redjay/threads-core@1.1.0 + - @redjay/threads-storage@3.0.0 diff --git a/packages/cli/package.json b/packages/cli/package.json index 0a077c9..e3f06f9 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@redjay/threads-cli", - "version": "1.2.0", + "version": "1.3.0", "description": "Conversational thread tracker for managing streams of activity through self-reported progress", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md new file mode 100644 index 0000000..ec2b4c3 --- /dev/null +++ b/packages/core/CHANGELOG.md @@ -0,0 +1,16 @@ +# @redjay/threads-core + +## 1.1.0 + +### Minor Changes + +- b43ff5f: Initial public release of the Threads platform. + + - Async storage pipeline with IAsyncThreadStore interface and SyncToAsyncAdapter + - Firebase Firestore backend with multi-tenant isolation + - JSON file storage backend for local development + - CLI with 25+ commands: list, new, show, set, progress, search, batch, agenda, timeline, and more + - Reminder and recurrence support + - Configurable temperature thresholds + - MCP server for AI assistant integration + - 882 tests passing diff --git a/packages/core/package.json b/packages/core/package.json index d78c7dd..7711a76 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@redjay/threads-core", - "version": "1.0.0", + "version": "1.1.0", "description": "Core types and models for Threads platform", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/firebase-storage/CHANGELOG.md b/packages/firebase-storage/CHANGELOG.md new file mode 100644 index 0000000..8115dae --- /dev/null +++ b/packages/firebase-storage/CHANGELOG.md @@ -0,0 +1,22 @@ +# @redjay/threads-firebase-storage + +## 1.1.0 + +### Minor Changes + +- b43ff5f: Initial public release of the Threads platform. + + - Async storage pipeline with IAsyncThreadStore interface and SyncToAsyncAdapter + - Firebase Firestore backend with multi-tenant isolation + - JSON file storage backend for local development + - CLI with 25+ commands: list, new, show, set, progress, search, batch, agenda, timeline, and more + - Reminder and recurrence support + - Configurable temperature thresholds + - MCP server for AI assistant integration + - 882 tests passing + +### Patch Changes + +- Updated dependencies [b43ff5f] + - @redjay/threads-core@1.1.0 + - @redjay/threads-storage@3.0.0 diff --git a/packages/firebase-storage/package.json b/packages/firebase-storage/package.json index ae91146..cb1fde6 100644 --- a/packages/firebase-storage/package.json +++ b/packages/firebase-storage/package.json @@ -1,6 +1,6 @@ { "name": "@redjay/threads-firebase-storage", - "version": "1.0.0", + "version": "1.1.0", "description": "Firebase Firestore storage adapter for Threads platform", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/json-storage/CHANGELOG.md b/packages/json-storage/CHANGELOG.md new file mode 100644 index 0000000..6c28d1e --- /dev/null +++ b/packages/json-storage/CHANGELOG.md @@ -0,0 +1,22 @@ +# @redjay/threads-json-storage + +## 1.1.0 + +### Minor Changes + +- b43ff5f: Initial public release of the Threads platform. + + - Async storage pipeline with IAsyncThreadStore interface and SyncToAsyncAdapter + - Firebase Firestore backend with multi-tenant isolation + - JSON file storage backend for local development + - CLI with 25+ commands: list, new, show, set, progress, search, batch, agenda, timeline, and more + - Reminder and recurrence support + - Configurable temperature thresholds + - MCP server for AI assistant integration + - 882 tests passing + +### Patch Changes + +- Updated dependencies [b43ff5f] + - @redjay/threads-core@1.1.0 + - @redjay/threads-storage@3.0.0 diff --git a/packages/json-storage/package.json b/packages/json-storage/package.json index f835d73..a3347d8 100644 --- a/packages/json-storage/package.json +++ b/packages/json-storage/package.json @@ -1,6 +1,6 @@ { "name": "@redjay/threads-json-storage", - "version": "1.0.0", + "version": "1.1.0", "description": "JSON file storage adapter for Threads platform", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/mcp-server/CHANGELOG.md b/packages/mcp-server/CHANGELOG.md new file mode 100644 index 0000000..1b1e315 --- /dev/null +++ b/packages/mcp-server/CHANGELOG.md @@ -0,0 +1,22 @@ +# @redjay/threads-mcp + +## 1.1.0 + +### Minor Changes + +- b43ff5f: Initial public release of the Threads platform. + + - Async storage pipeline with IAsyncThreadStore interface and SyncToAsyncAdapter + - Firebase Firestore backend with multi-tenant isolation + - JSON file storage backend for local development + - CLI with 25+ commands: list, new, show, set, progress, search, batch, agenda, timeline, and more + - Reminder and recurrence support + - Configurable temperature thresholds + - MCP server for AI assistant integration + - 882 tests passing + +### Patch Changes + +- Updated dependencies [b43ff5f] + - @redjay/threads-core@1.1.0 + - @redjay/threads-storage@3.0.0 diff --git a/packages/mcp-server/package.json b/packages/mcp-server/package.json index 5443de4..df55e26 100644 --- a/packages/mcp-server/package.json +++ b/packages/mcp-server/package.json @@ -1,6 +1,6 @@ { "name": "@redjay/threads-mcp", - "version": "1.0.0", + "version": "1.1.0", "description": "MCP server for Threads platform", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/storage/CHANGELOG.md b/packages/storage/CHANGELOG.md new file mode 100644 index 0000000..3686fc2 --- /dev/null +++ b/packages/storage/CHANGELOG.md @@ -0,0 +1,21 @@ +# @redjay/threads-storage + +## 3.0.0 + +### Major Changes + +- b43ff5f: Initial public release of the Threads platform. + + - Async storage pipeline with IAsyncThreadStore interface and SyncToAsyncAdapter + - Firebase Firestore backend with multi-tenant isolation + - JSON file storage backend for local development + - CLI with 25+ commands: list, new, show, set, progress, search, batch, agenda, timeline, and more + - Reminder and recurrence support + - Configurable temperature thresholds + - MCP server for AI assistant integration + - 882 tests passing + +### Patch Changes + +- Updated dependencies [b43ff5f] + - @redjay/threads-core@1.1.0 diff --git a/packages/storage/package.json b/packages/storage/package.json index b192798..0665ff1 100644 --- a/packages/storage/package.json +++ b/packages/storage/package.json @@ -1,6 +1,6 @@ { "name": "@redjay/threads-storage", - "version": "2.0.0", + "version": "3.0.0", "description": "Storage adapters for Threads platform", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/threads/CHANGELOG.md b/packages/threads/CHANGELOG.md new file mode 100644 index 0000000..d84a4f6 --- /dev/null +++ b/packages/threads/CHANGELOG.md @@ -0,0 +1,25 @@ +# @redjay/threads + +## 1.3.0 + +### Minor Changes + +- b43ff5f: Initial public release of the Threads platform. + + - Async storage pipeline with IAsyncThreadStore interface and SyncToAsyncAdapter + - Firebase Firestore backend with multi-tenant isolation + - JSON file storage backend for local development + - CLI with 25+ commands: list, new, show, set, progress, search, batch, agenda, timeline, and more + - Reminder and recurrence support + - Configurable temperature thresholds + - MCP server for AI assistant integration + - 882 tests passing + +### Patch Changes + +- Updated dependencies [b43ff5f] + - @redjay/threads-cli@1.3.0 + - @redjay/threads-core@1.1.0 + - @redjay/threads-storage@3.0.0 + - @redjay/threads-json-storage@1.1.0 + - @redjay/threads-mcp@1.1.0 diff --git a/packages/threads/package.json b/packages/threads/package.json index eea491c..e1c3aa6 100644 --- a/packages/threads/package.json +++ b/packages/threads/package.json @@ -1,6 +1,6 @@ { "name": "@redjay/threads", - "version": "1.2.0", + "version": "1.3.0", "description": "Entry point composition package for Threads CLI - wires together CLI + storage based on config", "main": "dist/index.js", "types": "dist/index.d.ts",