From b1faa5e95f47d06ae1883d5ec10693946c7e1b53 Mon Sep 17 00:00:00 2001 From: Rahul Krishna Date: Mon, 31 Aug 2026 09:24:29 -0400 Subject: [PATCH] chore(release): 1.1.0 ANALYZER_VERSION moves with package.json because it is the cache-invalidation key (utils/cache.ts:23), and this release changes the cached tree shape -- config_accesses became a required field on TSCallable. A warm 1.0.0 cache must not be reused against a 1.1.0 tree. Neo4j schema contract stays 2.1.0: it re-baselines once every analyzer's schema is stable, not per release. --- package.json | 2 +- src/utils/version.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 300dd43..0cd4884 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "codeanalyzer-typescript", - "version": "1.0.0", + "version": "1.1.0", "description": "CLDK TypeScript analyzer — emits the canonical schema v2 (additive CPG: symbol table → call graph → intraprocedural dataflow → interprocedural SDG) as analysis.json and Neo4j, via ts-morph.", "type": "module", "module": "src/index.ts", diff --git a/src/utils/version.ts b/src/utils/version.ts index 851c633..97a6d55 100644 --- a/src/utils/version.ts +++ b/src/utils/version.ts @@ -3,4 +3,4 @@ * the analyzer invalidates stale per-file Modules (whose source is unchanged but whose extracted * shape may differ across analyzer versions). */ -export const ANALYZER_VERSION = "1.0.0"; +export const ANALYZER_VERSION = "1.1.0";