codeslick-cli 1.1.4 → 1.1.5

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/README.md +12 -4
  2. package/package.json +1 -1
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.0
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.1 (Q2 2026)
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.4",
3
+ "version": "1.1.5",
4
4
  "description": "CodeSlick CLI tool for pre-commit security scanning",
5
5
  "main": "dist/index.js",
6
6
  "bin": {