ferret-scan 1.0.7 → 1.0.8
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 +41 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -48,4 +48,44 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
48
48
|
- Compliance framework integration (SOC2, ISO27001)
|
|
49
49
|
- Community rule marketplace
|
|
50
50
|
- Advanced threat hunting capabilities
|
|
51
|
-
- SIEM/SOAR integrations
|
|
51
|
+
- SIEM/SOAR integrations
|
|
52
|
+
|
|
53
|
+
## [1.0.7] - 2026-02-01
|
|
54
|
+
|
|
55
|
+
### Fixed
|
|
56
|
+
- Async file discovery for spinner animation during discovery phase
|
|
57
|
+
- Both "Discovering files..." and "Scanning..." spinners now animate smoothly
|
|
58
|
+
|
|
59
|
+
## [1.0.6] - 2026-02-01
|
|
60
|
+
|
|
61
|
+
### Fixed
|
|
62
|
+
- Async file reading (`fs.promises.readFile`) for spinner animation during scan phase
|
|
63
|
+
- Spinner now animates during file scanning on large codebases
|
|
64
|
+
|
|
65
|
+
## [1.0.5] - 2026-02-01
|
|
66
|
+
|
|
67
|
+
### Fixed
|
|
68
|
+
- Time-based yielding (every 100ms) for more reliable spinner updates
|
|
69
|
+
|
|
70
|
+
## [1.0.4] - 2026-02-01
|
|
71
|
+
|
|
72
|
+
### Fixed
|
|
73
|
+
- Yield on every file for spinner animation (intermediate fix)
|
|
74
|
+
|
|
75
|
+
## [1.0.3] - 2026-02-01
|
|
76
|
+
|
|
77
|
+
### Fixed
|
|
78
|
+
- Increased yield frequency for spinner updates
|
|
79
|
+
|
|
80
|
+
## [1.0.2] - 2026-02-01
|
|
81
|
+
|
|
82
|
+
### Added
|
|
83
|
+
- Progress indicators during scanning using ora spinner
|
|
84
|
+
- Real-time file count and findings display during scan
|
|
85
|
+
- TTY detection to disable spinners in CI environments
|
|
86
|
+
|
|
87
|
+
## [1.0.1] - 2026-01-31
|
|
88
|
+
|
|
89
|
+
### Fixed
|
|
90
|
+
- Repository URLs corrected from `ferret-security/ferret-scan` to `fubak/ferret-scan`
|
|
91
|
+
- Added `typescript` as production dependency (required at runtime for AST analysis)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ferret-scan",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"description": "Security scanner for AI CLI configurations - detect prompt injections, credential leaks, and malicious patterns in AI agent configs",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|