socket 1.1.88 → 1.1.89
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 +5 -0
- package/dist/cli.js +4 -2
- package/dist/cli.js.map +1 -1
- package/dist/constants.js +3 -3
- package/dist/constants.js.map +1 -1
- package/dist/tsconfig.dts.tsbuildinfo +1 -1
- package/dist/types/utils/glob.d.mts.map +1 -1
- package/dist/utils.js +5 -3
- package/dist/utils.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|
6
6
|
|
|
7
|
+
## [1.1.89](https://github.com/SocketDev/socket-cli/releases/tag/v1.1.89) - 2026-04-30
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
- `socket scan create` now matches manifest filenames case-insensitively, so capitalized files such as `Pipfile` and `Pipfile.lock` are no longer silently dropped from the scan.
|
|
11
|
+
|
|
7
12
|
## [1.1.88](https://github.com/SocketDev/socket-cli/releases/tag/v1.1.88) - 2026-04-29
|
|
8
13
|
|
|
9
14
|
### Changed
|
package/dist/cli.js
CHANGED
|
@@ -2208,7 +2208,9 @@ function filterToCdxSpdxAndFactsFiles(filepaths, supportedFiles) {
|
|
|
2208
2208
|
return true;
|
|
2209
2209
|
}
|
|
2210
2210
|
// Include CDX and SPDX files.
|
|
2211
|
-
return vendor.micromatchExports.some(filepath, patterns
|
|
2211
|
+
return vendor.micromatchExports.some(filepath, patterns, {
|
|
2212
|
+
nocase: true
|
|
2213
|
+
});
|
|
2212
2214
|
});
|
|
2213
2215
|
}
|
|
2214
2216
|
async function handleCreateNewScan({
|
|
@@ -15613,5 +15615,5 @@ process.on('unhandledRejection', async (reason, promise) => {
|
|
|
15613
15615
|
// eslint-disable-next-line n/no-process-exit
|
|
15614
15616
|
process.exit(1);
|
|
15615
15617
|
});
|
|
15616
|
-
//# debugId=
|
|
15618
|
+
//# debugId=6e6c11a1-66cb-495b-a9aa-426b4995d18c
|
|
15617
15619
|
//# sourceMappingURL=cli.js.map
|