@socketsecurity/cli-with-sentry 1.1.54 → 1.1.56
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 +11 -1
- package/dist/cli.js +3 -3
- package/dist/cli.js.map +1 -1
- package/dist/constants.js +4 -4
- package/dist/constants.js.map +1 -1
- package/dist/tsconfig.dts.tsbuildinfo +1 -1
- package/dist/types/utils/glob.d.mts +5 -0
- package/dist/types/utils/glob.d.mts.map +1 -1
- package/dist/types/utils/path-resolve.d.mts.map +1 -1
- package/dist/utils.js +37 -18
- package/dist/utils.js.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -4,7 +4,17 @@ 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.
|
|
7
|
+
## [1.1.56](https://github.com/SocketDev/socket-cli/releases/tag/v1.1.56) - 2026-01-10
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
- Fixed heap overflow when scanning large monorepos with 100k+ files by implementing streaming-based filtering.
|
|
11
|
+
|
|
12
|
+
## [1.1.55](https://github.com/SocketDev/socket-cli/releases/tag/v1.1.55) - 2026-01-09
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
- Updated the Coana CLI to v `14.12.148`.
|
|
16
|
+
|
|
17
|
+
## [1.1.54](https://github.com/SocketDev/socket-cli/releases/tag/v1.1.54) - 2026-01-09
|
|
8
18
|
|
|
9
19
|
### Changed
|
|
10
20
|
- Updated the Coana CLI to v `14.12.143`.
|
package/dist/cli.js
CHANGED
|
@@ -947,8 +947,8 @@ async function fetchCreateOrgFullScan(packagePaths, orgSlug, config, options) {
|
|
|
947
947
|
async function fetchSupportedScanFileNames(options) {
|
|
948
948
|
const {
|
|
949
949
|
sdkOpts,
|
|
950
|
-
|
|
951
|
-
|
|
950
|
+
silence = false,
|
|
951
|
+
spinner
|
|
952
952
|
} = {
|
|
953
953
|
__proto__: null,
|
|
954
954
|
...options
|
|
@@ -15336,5 +15336,5 @@ process.on('unhandledRejection', async (reason, promise) => {
|
|
|
15336
15336
|
// eslint-disable-next-line n/no-process-exit
|
|
15337
15337
|
process.exit(1);
|
|
15338
15338
|
});
|
|
15339
|
-
//# debugId=
|
|
15339
|
+
//# debugId=a0ac0175-4e40-434b-ada6-1188cb4b4d1
|
|
15340
15340
|
//# sourceMappingURL=cli.js.map
|