circle-ir-ai 2.6.3 → 2.7.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -5,6 +5,30 @@ 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.7.0] - 2026-05-06
9
+
10
+ ### Changed
11
+
12
+ - **circle-ir dep upgraded `^3.19.5` → `^3.20.0`.** Brings native
13
+ Bash SAST coverage — DFG/CFG builders + pattern rules. Closes
14
+ the bulk of cogniumhq/circle-ir-ai#33 (`scan --no-llm` on `.sh`
15
+ files now produces findings instead of zero):
16
+
17
+ | CWE | Pattern | Status in 3.20.0 |
18
+ |---|---|---|
19
+ | CWE-798 | hardcoded credentials | ✅ detected |
20
+ | CWE-377 | predictable temp files (`/tmp/<fixed>`) | ✅ detected |
21
+ | CWE-732 | insecure file permissions (`chmod 777`) | ✅ detected |
22
+ | CWE-319 | cleartext transmission (`curl http://`) | ✅ detected |
23
+ | CWE-78 | command injection (`eval $user_input`) | partial — taint flow detection needs source coverage for `$1`/`$@`/`read` |
24
+ | CWE-22 | path traversal (`cat "$user_path"`) | partial — same |
25
+
26
+ Verified on a 7-CWE Bash fixture: 5 findings without LLM on
27
+ 3.20.0, where 3.19.5 produced 0.
28
+
29
+ No circle-ir-ai source changes required — purely a dep bump.
30
+ All 478 tests pass against 3.20.0.
31
+
8
32
  ## [2.6.3] - 2026-05-06
9
33
 
10
34
  ### Fixed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "circle-ir-ai",
3
- "version": "2.6.3",
3
+ "version": "2.7.0",
4
4
  "description": "LLM-enhanced SAST analysis built on circle-ir",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
@@ -92,7 +92,7 @@
92
92
  "dependencies": {
93
93
  "@ax-llm/ax": "^20.0.0",
94
94
  "@mastra/core": "^1.18.0",
95
- "circle-ir": "^3.19.5",
95
+ "circle-ir": "^3.20.0",
96
96
  "minimatch": "^10.2.5",
97
97
  "p-queue": "^9.1.0"
98
98
  },