circle-ir-ai 2.18.0 → 2.18.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 +33 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -5,6 +5,39 @@ 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.18.1] - 2026-06-23
9
+
10
+ ### Dependencies
11
+
12
+ - Bump `circle-ir` `3.93.0` → `3.95.0`.
13
+
14
+ ### What this pulls in
15
+
16
+ `circle-ir@3.94.0` shipped the `SastFinding.confidence` tri-state
17
+ field (`'high' | 'medium' | 'low'`) and the per-file
18
+ speculative-finding suppression infrastructure that the upcoming
19
+ `missing-sanitizer-gate` pass will use. Pre-3.94.0 passes leave the
20
+ field undefined and are treated as `'high'` (always emitted), so
21
+ scanner output is unchanged today.
22
+
23
+ `circle-ir@3.95.0` adds `AnalyzerOptions.enableEntryPointGate?:
24
+ boolean` (default `true`) — an opt-out toggle for the Java
25
+ entry-point classifier gate that suppresses
26
+ `interprocedural_param` taint sources on library-API methods not
27
+ reachable from a recognised HTTP / RPC / lifecycle entry point.
28
+ Java-only; no-op for other languages regardless of toggle state.
29
+ `circle-ir-ai` does not yet thread this flag through the mastra
30
+ workflow or scanner facade — callers that need the un-gated source
31
+ set can pass it directly via the `circle-ir` `analyze()` /
32
+ `InterproceduralPass` constructor.
33
+
34
+ ### Verification
35
+
36
+ - `npm run build` — clean.
37
+ - Tests unchanged (900 pass + 3 skipped).
38
+
39
+ No API shape change in `circle-ir-ai`.
40
+
8
41
  ## [2.18.0] - 2026-06-22
9
42
 
10
43
  ### Added — findings-emission instrumentation env wiring (cognium-dev#145 PR C)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "circle-ir-ai",
3
- "version": "2.18.0",
3
+ "version": "2.18.1",
4
4
  "description": "LLM-enhanced SAST analysis built on circle-ir",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
@@ -95,7 +95,7 @@
95
95
  "dependencies": {
96
96
  "@ax-llm/ax": "^20.0.0",
97
97
  "@mastra/core": "^1.18.0",
98
- "circle-ir": "3.90.0",
98
+ "circle-ir": "3.95.0",
99
99
  "minimatch": "^10.2.5",
100
100
  "p-queue": "^9.1.0"
101
101
  },