@socketsecurity/cli-with-sentry 1.1.53 → 1.1.55
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 +10 -0
- package/dist/cli.js +4 -10
- 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/commands/optimize/add-overrides.d.mts.map +1 -1
- package/dist/types/commands/patch/cmd-patch.d.mts.map +1 -1
- package/dist/types/utils/glob.d.mts.map +1 -1
- package/dist/utils.js +11 -5
- package/dist/utils.js.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,16 @@ 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.55](https://github.com/SocketDev/socket-cli/releases/tag/v1.1.55) - 2026-01-09
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
- Updated the Coana CLI to v `14.12.148`.
|
|
11
|
+
|
|
12
|
+
## [1.1.54](https://github.com/SocketDev/socket-cli/releases/tag/v1.1.54) - 2026-01-09
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
- Updated the Coana CLI to v `14.12.143`.
|
|
16
|
+
|
|
7
17
|
## [1.1.53](https://github.com/SocketDev/socket-cli/releases/tag/v1.1.53) - 2026-01-06
|
|
8
18
|
|
|
9
19
|
### Changed
|
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
|
|
@@ -7648,17 +7648,11 @@ async function addOverrides(pkgEnvDetails, pkgPath, options) {
|
|
|
7648
7648
|
}
|
|
7649
7649
|
const depAliasMap = new Map();
|
|
7650
7650
|
const depEntries = getDependencyEntries(pkgEnvDetails);
|
|
7651
|
-
const manifestEntries = manifestNpmOverrides.filter(({
|
|
7652
|
-
1: data
|
|
7653
|
-
}) => vendor.semverExports.satisfies(
|
|
7654
|
-
// Roughly check Node range as semver.coerce will strip leading
|
|
7655
|
-
// v's, carets (^), comparators (<,<=,>,>=,=), and tildes (~).
|
|
7656
|
-
vendor.semverExports.coerce(data.engines.node), pkgEnvDetails.pkgRequirements.node));
|
|
7657
7651
|
const addingText = `Adding overrides to ${workspace}...`;
|
|
7658
7652
|
let loggedAddingText = false;
|
|
7659
7653
|
|
|
7660
7654
|
// Chunk package names to process them in parallel 3 at a time.
|
|
7661
|
-
await require$$12.pEach(
|
|
7655
|
+
await require$$12.pEach(manifestNpmOverrides, async ({
|
|
7662
7656
|
1: data
|
|
7663
7657
|
}) => {
|
|
7664
7658
|
const {
|
|
@@ -15342,5 +15336,5 @@ process.on('unhandledRejection', async (reason, promise) => {
|
|
|
15342
15336
|
// eslint-disable-next-line n/no-process-exit
|
|
15343
15337
|
process.exit(1);
|
|
15344
15338
|
});
|
|
15345
|
-
//# debugId=
|
|
15339
|
+
//# debugId=a0ac0175-4e40-434b-ada6-1188cb4b4d1
|
|
15346
15340
|
//# sourceMappingURL=cli.js.map
|