From 2c48bac523dcdfd794f70a6e6c76cad8fb8604ef Mon Sep 17 00:00:00 2001 From: David Snelling Date: Sun, 2 Nov 2025 11:45:54 -0800 Subject: [PATCH] chore(release): 5.1.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ✨ v5.1.0 - VFS Auto-Initialization + Critical Bug Fixes BREAKING CHANGES: - VFS is now a property (brain.vfs) not method (brain.vfs()) - VFS auto-initializes during brain.init() - no separate vfs.init() needed - Stricter UUID validation (32 hex chars required) KEY FEATURES: - 🎯 VFS auto-initialization - zero setup friction - πŸ› Fixed CacheAugmentation race condition (CRITICAL) - πŸ”’ Fixed BlobStorage integrity verification bug (SECURITY) - βœ… COW/BlobStorage fully tested and working (30/30 tests) - βœ… VFS fully working (all tests passing) - βœ… 97% overall test pass rate (1020/1051) Test Results: - Before: 906/1051 passing (86%) - After: 1020/1051 passing (97%) - VFS: 100% passing βœ“ - COW/BlobStorage: 100% passing βœ“ - Batch Operations: 96% passing βœ“ --- 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 307543d6..4e3729b4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@soulcraft/brainy", - "version": "5.0.0", + "version": "5.1.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@soulcraft/brainy", - "version": "5.0.0", + "version": "5.1.0", "license": "MIT", "dependencies": { "@aws-sdk/client-s3": "^3.540.0", diff --git a/package.json b/package.json index bffb42a7..5a4e7384 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@soulcraft/brainy", - "version": "5.0.0", + "version": "5.1.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",