circle-ir-ai 2.40.0 → 2.41.0
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.
- package/CHANGELOG.md +32 -0
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,38 @@ 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.41.0] - 2026-07-11
|
|
9
|
+
|
|
10
|
+
### Changed — bump `circle-ir` `3.166.0 → 3.168.0` (completes the source-misattribution fix, cognium-dev#250)
|
|
11
|
+
|
|
12
|
+
circle-ir 3.168.0 extends the #250 source-misattribution fix to the
|
|
13
|
+
**comment/license-line variant** — the last major FP class in the
|
|
14
|
+
tier-2 residual. Validated on openapi-generator (the archetype, 55% of
|
|
15
|
+
the residual), same 415 files scanned:
|
|
16
|
+
|
|
17
|
+
| | 3.166.0 | 3.168.0 |
|
|
18
|
+
|---|---:|---:|
|
|
19
|
+
| openapi-generator C+H | **317** | **0** |
|
|
20
|
+
| comment/import-source findings | 256 | 0 |
|
|
21
|
+
|
|
22
|
+
**No recall loss** — full benchmark suite re-verified cold
|
|
23
|
+
(`LLM_TREE_CACHE=0`): OWASP 100%, Juliet 100%, SecuriBench TPR 97.7%
|
|
24
|
+
(105/108), rust 92.3%, all suites stable. Unit suite 1368 pass.
|
|
25
|
+
|
|
26
|
+
Minor bump — large precision-driven finding-count drop on affected
|
|
27
|
+
repos (codegen tools + any file with a license header), not detection
|
|
28
|
+
loss.
|
|
29
|
+
|
|
30
|
+
## [2.40.1] - 2026-07-11
|
|
31
|
+
|
|
32
|
+
### Changed — bump `circle-ir` `3.165.0 → 3.166.0`
|
|
33
|
+
|
|
34
|
+
Incremental core engine bump on top of the 2.40.0 source-misattribution
|
|
35
|
+
release. Validated against the registry package with the tree-cache
|
|
36
|
+
disabled (per cognium-ai#215): OWASP 100%, Juliet 100% (243/0 FN),
|
|
37
|
+
SecuriBench TPR 97.7% (105/108); spoon C+H stays in the clean post-#250
|
|
38
|
+
range (24 on 3.164.0 → 4 on 3.166.0). Unit suite 1368 pass.
|
|
39
|
+
|
|
8
40
|
## [2.40.0] - 2026-07-10
|
|
9
41
|
|
|
10
42
|
### Changed — bump `circle-ir` `3.164.0 → 3.165.0` (major precision win: source-misattribution fix)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "circle-ir-ai",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.41.0",
|
|
4
4
|
"description": "LLM-enhanced SAST analysis built on circle-ir",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -42,6 +42,7 @@
|
|
|
42
42
|
"benchmark:securibench": "tsx benchmarks/runners/run-securibench.ts",
|
|
43
43
|
"benchmark:owasp": "tsx benchmarks/runners/run-owasp.ts",
|
|
44
44
|
"benchmark:cwe": "tsx benchmarks/runners/run-cwe-bench-java.ts --limit=120",
|
|
45
|
+
"benchmark:cwe:llm": "tsx benchmarks/runners/run-cwe-bench-java.ts --limit=120 --llm-discovery --llm-delay=1",
|
|
45
46
|
"benchmark:nodejs": "tsx benchmarks/runners/run-nodejs.ts --verbose",
|
|
46
47
|
"benchmark:nodegoat": "tsx benchmarks/runners/run-nodegoat.ts --verbose",
|
|
47
48
|
"benchmark:python": "tsx benchmarks/runners/run-benchmark-python.ts --verbose",
|
|
@@ -97,7 +98,7 @@
|
|
|
97
98
|
"@ax-llm/ax": "^20.0.0",
|
|
98
99
|
"@cognium/project-profile-detect": "^1.1.0",
|
|
99
100
|
"@mastra/core": "^1.18.0",
|
|
100
|
-
"circle-ir": "3.
|
|
101
|
+
"circle-ir": "3.168.0",
|
|
101
102
|
"minimatch": "^10.2.5",
|
|
102
103
|
"p-queue": "^9.1.0"
|
|
103
104
|
},
|