From 6449bb1afe6bcbda82d0bfbbd99ba3751aaa6c85 Mon Sep 17 00:00:00 2001 From: David Snelling Date: Tue, 2 Dec 2025 13:23:25 -0800 Subject: [PATCH] chore(release): 6.2.6 - fix cloud storage read-after-write consistency MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix add() → relate() race condition in cloud storage (GCS, S3, R2, Azure) Problem: - In high-volume mode, writes go to buffer instead of direct storage - Cache was NOT populated when buffering - add() returns but relate() fails with "Source entity not found" Solution: - Populate cache BEFORE adding to write buffer - Ensures immediate read-after-write consistency - Buffer still flushes asynchronously for performance 🤖 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 7381b54b..146ccce3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@soulcraft/brainy", - "version": "6.2.5", + "version": "6.2.6", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@soulcraft/brainy", - "version": "6.2.5", + "version": "6.2.6", "license": "MIT", "dependencies": { "@aws-sdk/client-s3": "^3.540.0", diff --git a/package.json b/package.json index 16fb08a6..c63b99d4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@soulcraft/brainy", - "version": "6.2.5", + "version": "6.2.6", "description": "Universal Knowledge Protocol™ - World's first Triple Intelligence database unifying vector, graph, and document search in one API. Stage 3 CANONICAL: 42 nouns × 127 verbs covering 96-97% of all human knowledge.", "main": "dist/index.js", "module": "dist/index.js",