logshield-cli 0.3.4 → 0.3.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.
- package/CHANGELOG.md +24 -0
- package/dist/cli/index.cjs +2 -2
- package/package.json +4 -2
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## v0.3.4
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
|
|
7
|
+
- README CI badge link on npmjs.com
|
|
8
|
+
|
|
9
|
+
## v0.3.3
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
|
|
13
|
+
- `--dry-run` mode to detect secrets without modifying output
|
|
14
|
+
- CI-friendly detection workflow (`--dry-run --fail-on-detect`)
|
|
15
|
+
|
|
16
|
+
### Improved
|
|
17
|
+
|
|
18
|
+
- CLI UX consistency
|
|
19
|
+
- README documentation clarity
|
|
20
|
+
|
|
21
|
+
### Notes
|
|
22
|
+
|
|
23
|
+
- No breaking changes
|
|
24
|
+
- Engine behavior unchanged
|
package/dist/cli/index.cjs
CHANGED
|
@@ -359,7 +359,7 @@ var require_summary = __commonJS({
|
|
|
359
359
|
var { sanitizeLog: sanitizeLog3 } = (init_sanitizeLog(), __toCommonJS(sanitizeLog_exports));
|
|
360
360
|
var rawArgs2 = process.argv.slice(2).map((arg) => arg === "-h" ? "--help" : arg);
|
|
361
361
|
function getVersion2() {
|
|
362
|
-
return true ? "0.3.
|
|
362
|
+
return true ? "0.3.5" : "unknown";
|
|
363
363
|
}
|
|
364
364
|
function printHelp2() {
|
|
365
365
|
process.stdout.write(`Usage: logshield scan [file]
|
|
@@ -486,7 +486,7 @@ var { printSummary } = require_summary();
|
|
|
486
486
|
var { sanitizeLog: sanitizeLog2 } = (init_sanitizeLog(), __toCommonJS(sanitizeLog_exports));
|
|
487
487
|
var rawArgs = process.argv.slice(2).map((arg) => arg === "-h" ? "--help" : arg);
|
|
488
488
|
function getVersion() {
|
|
489
|
-
return true ? "0.3.
|
|
489
|
+
return true ? "0.3.5" : "unknown";
|
|
490
490
|
}
|
|
491
491
|
function printHelp() {
|
|
492
492
|
process.stdout.write(`Usage: logshield scan [file]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "logshield-cli",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.5",
|
|
4
4
|
"license": "ISC",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"bin": {
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
"files": [
|
|
10
10
|
"dist",
|
|
11
11
|
"README.md",
|
|
12
|
+
"CHANGELOG.md",
|
|
12
13
|
"LICENSE"
|
|
13
14
|
],
|
|
14
15
|
"scripts": {
|
|
@@ -16,7 +17,8 @@
|
|
|
16
17
|
"build:web": "vite build --outDir dist-web",
|
|
17
18
|
"dev:web": "vite",
|
|
18
19
|
"pretest": "npm run build",
|
|
19
|
-
"test": "vitest"
|
|
20
|
+
"test": "vitest",
|
|
21
|
+
"prepublishOnly": "npm run build"
|
|
20
22
|
},
|
|
21
23
|
"devDependencies": {
|
|
22
24
|
"@types/node": "^25.0.3",
|