circle-ir-ai 2.7.15 → 2.7.16
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 +25 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,31 @@ 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.16] - 2026-05-21
|
|
9
|
+
|
|
10
|
+
### Dependencies
|
|
11
|
+
|
|
12
|
+
- circle-ir upgraded to ^3.22.3 — completes upstream circle-ir#3
|
|
13
|
+
Items B (defensive-throw recalibration) and C (swallowed-exception
|
|
14
|
+
callback-forwarding). 3.22.1 shipped a partial fix; 3.22.3 covers
|
|
15
|
+
the remaining patterns (plain `throw new Error`, switch defaults,
|
|
16
|
+
`Array.isArray` guards, and the callback-forwarding regex bug).
|
|
17
|
+
|
|
18
|
+
### Real-world impact (verified on Express `/lib`)
|
|
19
|
+
|
|
20
|
+
| Finding type | 3.22.0 | 3.22.2 | 3.22.3 |
|
|
21
|
+
|---|---|---|---|
|
|
22
|
+
| unhandled-exception | 14 | 6 | **0** |
|
|
23
|
+
| swallowed-exception | 1 | 1 | **0** |
|
|
24
|
+
| xss | 3 | 1 | 1 |
|
|
25
|
+
| **Total** | **22** | **8** | **1** |
|
|
26
|
+
|
|
27
|
+
The remaining `app.render()` xss on `response.js:917` is a legitimate
|
|
28
|
+
sink (or at minimum a debatable one). Net 95% noise reduction on
|
|
29
|
+
Express `/lib` versus 3.22.0.
|
|
30
|
+
|
|
31
|
+
All 18 benchmarks unchanged from 3.22.2. No regressions.
|
|
32
|
+
|
|
8
33
|
## [2.7.15] - 2026-05-21
|
|
9
34
|
|
|
10
35
|
### Changed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "circle-ir-ai",
|
|
3
|
-
"version": "2.7.
|
|
3
|
+
"version": "2.7.16",
|
|
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.22.
|
|
97
|
+
"circle-ir": "^3.22.3",
|
|
98
98
|
"minimatch": "^10.2.5",
|
|
99
99
|
"p-queue": "^9.1.0"
|
|
100
100
|
},
|