codeslick-cli 1.1.4 → 1.1.6
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/README.md +12 -4
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -259,6 +259,7 @@ The `.codeslick.json` file controls how CodeSlick scans your code.
|
|
|
259
259
|
| `autofix` | boolean | `false` | Enable auto-fix (experimental) |
|
|
260
260
|
| `exclude` | string[] | See above | Glob patterns to exclude from scanning |
|
|
261
261
|
| `languages` | string[] | All | Languages to scan: `javascript`, `typescript`, `python`, `java` |
|
|
262
|
+
| `telemetry` | boolean | `true` | Enable anonymous usage analytics |
|
|
262
263
|
|
|
263
264
|
### Severity Thresholds
|
|
264
265
|
|
|
@@ -533,20 +534,27 @@ MIT License - see [LICENSE](../../LICENSE) for details.
|
|
|
533
534
|
- **Issues**: https://github.com/VitorLourenco/codeslick2/issues
|
|
534
535
|
- **Email**: support@codeslick.dev
|
|
535
536
|
|
|
536
|
-
## What's New in v1.
|
|
537
|
+
## What's New in v1.1
|
|
538
|
+
|
|
539
|
+
- **Update Notifications** - CLI notifies you when a new version is available
|
|
540
|
+
- **Anonymous Telemetry** - Usage stats for dashboard analytics (disable with `cs config set telemetry false`)
|
|
541
|
+
- **Improved SSRF Detection** - Internal API routes (`/api/...`) no longer trigger false positives
|
|
542
|
+
- **Fixed Critical Sorting** - CRITICAL issues now correctly appear first in reports
|
|
543
|
+
- **Markdown Reports** - Auto-generates detailed reports for large scans (>20 files or >30 issues)
|
|
544
|
+
|
|
545
|
+
### v1.0 Features
|
|
537
546
|
|
|
538
547
|
- **Staged Files by Default** - Fast pre-commit scans (<1s for most commits)
|
|
539
548
|
- **Quick Mode** - Skip TypeScript type checking with `--quick` for even faster scans
|
|
540
549
|
- **Smart Output** - Only shows CRITICAL and HIGH issues by default (use `--verbose` for all)
|
|
541
|
-
- **Markdown Reports** - Auto-generates detailed reports for large scans (>20 files or >30 issues)
|
|
542
550
|
- **268 Security Checks** - OWASP Top 10:2025 compliant
|
|
543
551
|
|
|
544
552
|
## Roadmap
|
|
545
553
|
|
|
546
|
-
### v1.
|
|
547
|
-
- Auto-fix support (--fix flag)
|
|
554
|
+
### v1.2 (Coming Soon)
|
|
548
555
|
- Custom rule configuration
|
|
549
556
|
- IDE integration (VS Code extension)
|
|
557
|
+
- Enhanced auto-fix support
|
|
550
558
|
|
|
551
559
|
---
|
|
552
560
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeslick-cli",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.6",
|
|
4
4
|
"description": "CodeSlick CLI tool for pre-commit security scanning",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -40,12 +40,12 @@
|
|
|
40
40
|
"chalk": "^4.1.2",
|
|
41
41
|
"ora": "^5.4.1",
|
|
42
42
|
"cli-table3": "^0.6.3",
|
|
43
|
-
"glob": "^10.3.10"
|
|
43
|
+
"glob": "^10.3.10",
|
|
44
|
+
"typescript": "^5.3.3"
|
|
44
45
|
},
|
|
45
46
|
"devDependencies": {
|
|
46
47
|
"@types/node": "^20.10.0",
|
|
47
48
|
"@types/yargs": "^17.0.32",
|
|
48
|
-
"typescript": "^5.3.3",
|
|
49
49
|
"vitest": "^1.0.4"
|
|
50
50
|
}
|
|
51
51
|
}
|