circle-ir-ai 2.10.0 → 2.10.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 +44 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -5,6 +5,50 @@ 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.10.1] - 2026-06-16
9
+
10
+ ### Changed — circle-ir 3.56.0 → 3.57.0
11
+
12
+ Drop-in engine bump for upstream Sprint 8. The engine-only changes
13
+ surface as additional / refined `findings[].type` values through the
14
+ same `analyze()` / mastra workflow output — no API breaks, no flag
15
+ additions on this layer.
16
+
17
+ **Sprint 8 — Java taint propagation + cross-language precision**
18
+ (cognium-dev #50, #51, #62, #73, #84, #90, #91)
19
+
20
+ - **#84 — Java for-each element-taint.** `for (String x : taintedList)`
21
+ now propagates collection taint to the loop variable, so downstream
22
+ uses at sinks (`stmt.executeQuery("..." + x + "...")`) fire as
23
+ expected.
24
+ - **#62 (partial) — Map.put + StringBuilder propagation.**
25
+ `m.put(k, tainted)` seeds `m` into `tainted` so `m.get(k)` at a
26
+ sink fires SQLi. `StringBuilder.append(tainted)` and
27
+ `StringBuffer.insert(off, tainted)` seed the builder into `tainted`
28
+ so `sb.toString()` at a sink fires.
29
+ - **#51 — Go `filepath` / `path` path-traversal sanitizers.**
30
+ `filepath.Base`, `filepath.Clean`, `path.Clean`, and
31
+ `filepath.EvalSymlinks` are now recognized as `path_traversal`
32
+ sanitizers in `DEFAULT_SANITIZERS`, mirroring the Java
33
+ `getCanonicalPath` / `Path.toRealPath` treatment.
34
+ - **#50 — `SecurityHeadersPass` global-middleware suppression.**
35
+ The file-level `missing-x-frame-options` and
36
+ `missing-csp-frame-ancestors` rules now check for a global header
37
+ middleware (Express `helmet()`, Spring `SecurityFilterChain`,
38
+ Flask `Talisman` / `@app.after_request`) before firing. Eliminates
39
+ per-handler false positives in projects with global header
40
+ installation.
41
+ - **#73 (part 1) — Bash function-local `$1`/`$2`.**
42
+ `findBashTaintSources` now tracks brace depth so `$1`–`$9` /
43
+ `$@` / `$*` inside function bodies are no longer conflated with
44
+ script-CLI positional sources. Regex-allowlist guard
45
+ (`[[ $x =~ ^… ]]`) is deferred to Sprint 9.
46
+ - **#90, #91, #49** — codified as regression fixtures from earlier
47
+ sprints (Fastjson typed-overload `parseObject`, `*Template.render`
48
+ receiver suppression, path canonicalization + XXE).
49
+
50
+ Full upstream notes: `circle-ir` 3.57.0 release notes.
51
+
8
52
  ## [2.10.0] - 2026-06-16
9
53
 
10
54
  ### Changed — circle-ir 3.52.0 → 3.56.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "circle-ir-ai",
3
- "version": "2.10.0",
3
+ "version": "2.10.1",
4
4
  "description": "LLM-enhanced SAST analysis built on circle-ir",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
@@ -94,7 +94,7 @@
94
94
  "dependencies": {
95
95
  "@ax-llm/ax": "^20.0.0",
96
96
  "@mastra/core": "^1.18.0",
97
- "circle-ir": "3.56.0",
97
+ "circle-ir": "3.57.0",
98
98
  "minimatch": "^10.2.5",
99
99
  "p-queue": "^9.1.0"
100
100
  },