From 01e3e8cb8b51a567970ea374bd64bbf637f7e057 Mon Sep 17 00:00:00 2001 From: David Snelling Date: Thu, 16 Oct 2025 12:09:03 -0700 Subject: [PATCH] chore(release): 3.49.0 - Real-time Relationship Building Progress MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit New Features: - Real-time progress callbacks during relationship building phase - Two-phase progress tracking (extraction + relationships) - Eliminates 1-2 minute silent period for large imports - Works across all import paths and storage adapters API Enhancements: - Added 'phase' field to ImportProgress interface - Added 'current' field as alias for processed - New NeuralImportProgress interface - Refactored to use brain.relateMany() for batch operations Examples: - NEW: examples/import-with-progress.ts with progress bars and ETA - UPDATED: examples/complete-import-demo.ts shows both phases Performance: - Minimal overhead (<0.01% for typical imports) - Chunk-based emission (100 relationships per batch) - Fully backward compatible 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 9f251185..16ab8f0c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@soulcraft/brainy", - "version": "3.48.0", + "version": "3.49.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@soulcraft/brainy", - "version": "3.48.0", + "version": "3.49.0", "license": "MIT", "dependencies": { "@aws-sdk/client-s3": "^3.540.0", diff --git a/package.json b/package.json index 68bc10c7..24bc1f30 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@soulcraft/brainy", - "version": "3.48.0", + "version": "3.49.0", "description": "Universal Knowledge Protocol™ - World's first Triple Intelligence database unifying vector, graph, and document search in one API. 31 nouns × 40 verbs for infinite expressiveness.", "main": "dist/index.js", "module": "dist/index.js",