circle-ir-ai 2.37.9 → 2.37.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +25 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -5,11 +5,36 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [2.37.10] - 2026-07-06
9
+
10
+ ### Rolled back — repin `circle-ir` `3.156.0 → 3.155.0`
11
+
12
+ Zero-code rollback. Restores the last known-good engine after the Tier-2
13
+ sweep on 3.156.0 surfaced a sharp LLM-verifier regression (see
14
+ [cogniumhq/cognium-ai#202](https://github.com/cogniumhq/cognium-ai/issues/202)):
15
+
16
+ - Verifier calls +83.7% on same 12-repo panel with only +0.12% findings.
17
+ - USD cost +89.6% (\$2.47 → \$4.68).
18
+ - Root cause candidate: `verifyTaintPathsBatch` signature removed in
19
+ 3.156.0; work folded into heavier `verifyBatch` (0-token → full-token).
20
+ - Two amplifier repos (`openapi-generator` +385%, `hutool` +137%) drove
21
+ ~102% of the aggregate call increase.
22
+
23
+ Holding `circle-ir` at `3.155.0` until a fix ships upstream.
24
+
25
+ ### Tests
26
+
27
+ - 90 files, 1350 passed / 3 skipped (unchanged).
28
+ - Typecheck + build clean.
29
+
8
30
  ## [2.37.9] - 2026-07-06
9
31
 
10
32
  Bump `circle-ir` `3.155.0` → `3.156.0`. Zero-code refresh — pulls in
11
33
  upstream engine improvements published in `circle-ir@3.156.0`.
12
34
 
35
+ **Superseded by 2.37.10** — 3.156.0 caused a Tier-2 sweep regression
36
+ (cognium-ai#202); do not use 2.37.9.
37
+
13
38
  ### What changed
14
39
 
15
40
  - **`package.json`**:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "circle-ir-ai",
3
- "version": "2.37.9",
3
+ "version": "2.37.10",
4
4
  "description": "LLM-enhanced SAST analysis built on circle-ir",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
@@ -97,7 +97,7 @@
97
97
  "@ax-llm/ax": "^20.0.0",
98
98
  "@cognium/project-profile-detect": "^1.1.0",
99
99
  "@mastra/core": "^1.18.0",
100
- "circle-ir": "3.156.0",
100
+ "circle-ir": "3.155.0",
101
101
  "minimatch": "^10.2.5",
102
102
  "p-queue": "^9.1.0"
103
103
  },