circle-ir-ai 2.39.0 → 2.40.1

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 +36 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -5,6 +5,42 @@ 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.40.1] - 2026-07-11
9
+
10
+ ### Changed — bump `circle-ir` `3.165.0 → 3.166.0`
11
+
12
+ Incremental core engine bump on top of the 2.40.0 source-misattribution
13
+ release. Validated against the registry package with the tree-cache
14
+ disabled (per cognium-ai#215): OWASP 100%, Juliet 100% (243/0 FN),
15
+ SecuriBench TPR 97.7% (105/108); spoon C+H stays in the clean post-#250
16
+ range (24 on 3.164.0 → 4 on 3.166.0). Unit suite 1368 pass.
17
+
18
+ ## [2.40.0] - 2026-07-10
19
+
20
+ ### Changed — bump `circle-ir` `3.164.0 → 3.165.0` (major precision win: source-misattribution fix)
21
+
22
+ circle-ir 3.165.0 fixes **cognium-dev#250** — taint findings whose
23
+ `source.line` resolved to a non-executable line (import / package /
24
+ comment / constant declaration) were being emitted with fabricated
25
+ source→sink flows. That accounted for **61% of the tier-2 Critical/High
26
+ residual**. Effect on real repos (verified, gpt-4o-mini verify):
27
+
28
+ | repo | C+H 3.164.0 | C+H 3.165.0 |
29
+ |---|---:|---:|
30
+ | INRIA/spoon | 24 | **2** |
31
+ | manifold-systems/manifold | 65 | **2** |
32
+
33
+ **No recall loss** — full benchmark suite re-verified against the
34
+ registry package: OWASP 100%, Juliet 100% (243/0 FN), **SecuriBench TPR
35
+ 97.7% (105/108, +1)**. As a bonus it also fixes **cognium-dev#249**:
36
+ rust-synthetic 84.6% → **92.3%** (FPR 15.4% → 7.7%). All other suites
37
+ stable.
38
+
39
+ This is a minor bump (not patch) because LLM-verified finding counts
40
+ drop dramatically on affected repos — a precision improvement, not
41
+ detection loss. Sweep baseline diffs across this version must attribute
42
+ the drop to the source-misattribution fix.
43
+
8
44
  ## [2.39.0] - 2026-07-10
9
45
 
10
46
  ### Changed — bump `circle-ir` `3.162.0 → 3.164.0`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "circle-ir-ai",
3
- "version": "2.39.0",
3
+ "version": "2.40.1",
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.164.0",
100
+ "circle-ir": "3.166.0",
101
101
  "minimatch": "^10.2.5",
102
102
  "p-queue": "^9.1.0"
103
103
  },