Skip to content
Open
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
15 changes: 0 additions & 15 deletions .changeset/batch-operations-surface.md

This file was deleted.

8 changes: 8 additions & 0 deletions apps/firebase/functions/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @joshua2048/threads-firebase-functions

## 1.0.3

### Patch Changes

- Updated dependencies [67b37e4]
- @redjay/threads-storage@3.1.0
- @redjay/threads-firebase-storage@1.2.0

## 1.0.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/firebase/functions/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@joshua2048/threads-firebase-functions",
"version": "1.0.2",
"version": "1.0.3",
"description": "Firebase Cloud Functions for Threads platform",
"main": "dist/index.js",
"scripts": {
Expand Down
18 changes: 18 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# @redjay/threads-cli

## 1.4.0

### Minor Changes

- 67b37e4: Surface batch operations through AsyncStorageService facade

- Add `IBatchOperations` interface for atomic multi-document writes
- Add `batchDeleteGroup()` and `batchArchiveThread()` to AsyncStorageService with duck-type capability detection
- Wire MCP `delete_group` and `archive_thread` tools to batch-first pattern with loop fallback
- Wire CLI archive cascade and group delete commands to batch-first pattern
- FirestoreStore formally implements `IBatchOperations` (methods already existed)
- JSON backend unaffected — batch returns null, existing loop executes

### Patch Changes

- Updated dependencies [67b37e4]
- @redjay/threads-storage@3.1.0

## 1.3.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@redjay/threads-cli",
"version": "1.3.1",
"version": "1.4.0",
"description": "Conversational thread tracker for managing streams of activity through self-reported progress",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
18 changes: 18 additions & 0 deletions packages/firebase-storage/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# @redjay/threads-firebase-storage

## 1.2.0

### Minor Changes

- 67b37e4: Surface batch operations through AsyncStorageService facade

- Add `IBatchOperations` interface for atomic multi-document writes
- Add `batchDeleteGroup()` and `batchArchiveThread()` to AsyncStorageService with duck-type capability detection
- Wire MCP `delete_group` and `archive_thread` tools to batch-first pattern with loop fallback
- Wire CLI archive cascade and group delete commands to batch-first pattern
- FirestoreStore formally implements `IBatchOperations` (methods already existed)
- JSON backend unaffected — batch returns null, existing loop executes

### Patch Changes

- Updated dependencies [67b37e4]
- @redjay/threads-storage@3.1.0

## 1.1.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/firebase-storage/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@redjay/threads-firebase-storage",
"version": "1.1.1",
"version": "1.2.0",
"description": "Firebase Firestore storage adapter for Threads platform",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
7 changes: 7 additions & 0 deletions packages/json-storage/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @redjay/threads-json-storage

## 1.1.2

### Patch Changes

- Updated dependencies [67b37e4]
- @redjay/threads-storage@3.1.0

## 1.1.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/json-storage/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@redjay/threads-json-storage",
"version": "1.1.1",
"version": "1.1.2",
"description": "JSON file storage adapter for Threads platform",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
18 changes: 18 additions & 0 deletions packages/mcp-server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# @redjay/threads-mcp

## 1.2.0

### Minor Changes

- 67b37e4: Surface batch operations through AsyncStorageService facade

- Add `IBatchOperations` interface for atomic multi-document writes
- Add `batchDeleteGroup()` and `batchArchiveThread()` to AsyncStorageService with duck-type capability detection
- Wire MCP `delete_group` and `archive_thread` tools to batch-first pattern with loop fallback
- Wire CLI archive cascade and group delete commands to batch-first pattern
- FirestoreStore formally implements `IBatchOperations` (methods already existed)
- JSON backend unaffected — batch returns null, existing loop executes

### Patch Changes

- Updated dependencies [67b37e4]
- @redjay/threads-storage@3.1.0

## 1.1.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/mcp-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@redjay/threads-mcp",
"version": "1.1.1",
"version": "1.2.0",
"description": "MCP server for Threads platform",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
13 changes: 13 additions & 0 deletions packages/storage/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @redjay/threads-storage

## 3.1.0

### Minor Changes

- 67b37e4: Surface batch operations through AsyncStorageService facade

- Add `IBatchOperations` interface for atomic multi-document writes
- Add `batchDeleteGroup()` and `batchArchiveThread()` to AsyncStorageService with duck-type capability detection
- Wire MCP `delete_group` and `archive_thread` tools to batch-first pattern with loop fallback
- Wire CLI archive cascade and group delete commands to batch-first pattern
- FirestoreStore formally implements `IBatchOperations` (methods already existed)
- JSON backend unaffected — batch returns null, existing loop executes

## 3.0.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/storage/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@redjay/threads-storage",
"version": "3.0.1",
"version": "3.1.0",
"description": "Storage adapters for Threads platform",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
10 changes: 10 additions & 0 deletions packages/threads/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @redjay/threads

## 1.3.3

### Patch Changes

- Updated dependencies [67b37e4]
- @redjay/threads-storage@3.1.0
- @redjay/threads-cli@1.4.0
- @redjay/threads-mcp@1.2.0
- @redjay/threads-json-storage@1.1.2

## 1.3.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/threads/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@redjay/threads",
"version": "1.3.2",
"version": "1.3.3",
"description": "Entry point composition package for Threads CLI - wires together CLI + storage based on config",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down