Skip to content

Commit 286279d

Browse files
committed
Merge remote-tracking branch 'origin/main' into feat/migrate-to-socket-patch
2 parents 85db681 + f83017a commit 286279d

File tree

5 files changed

+41
-44
lines changed

5 files changed

+41
-44
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "socket-cli-monorepo",
33
"version": "0.0.0",
4-
"packageManager": "pnpm@10.27.0",
4+
"packageManager": "pnpm@10.28.0",
55
"private": true,
66
"engines": {
77
"node": ">=24.10.0",
@@ -165,7 +165,7 @@
165165
"es-define-property": "catalog:",
166166
"es-set-tostringtag": "catalog:",
167167
"function-bind": "catalog:",
168-
"glob": ">=11.1.0",
168+
"glob": ">=13.0.0",
169169
"globalthis": "catalog:",
170170
"gopd": "catalog:",
171171
"graceful-fs": "catalog:",

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
"@socketsecurity/lib": "catalog:",
8989
"@socketsecurity/registry": "catalog:",
9090
"@socketsecurity/sdk": "catalog:",
91-
"@types/react": "^19.2.7",
91+
"@types/react": "^19.2.8",
9292
"ajv-dist": "catalog:",
9393
"ansi-regex": "catalog:",
9494
"brace-expansion": "catalog:",

pnpm-lock.yaml

Lines changed: 30 additions & 30 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pnpm-workspace.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ catalog:
3838
'@socketregistry/packageurl-js': 1.3.5
3939
'@socketregistry/yocto-spinner': 1.0.25
4040
'@socketsecurity/config': 3.0.1
41-
'@socketsecurity/lib': 5.4.1
41+
'@socketsecurity/lib': 5.5.1
4242
'@socketsecurity/registry': 2.0.2
4343
'@socketsecurity/sdk': 3.2.0
4444
'@types/cmd-shim': 5.0.2

scripts/update.mjs

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,13 @@ async function main() {
2727
logger.log('\n🔨 Monorepo Dependency Update\n')
2828
}
2929

30-
// Build taze command with appropriate flags for monorepo.
31-
const tazeArgs = ['exec', 'taze', '-r']
30+
// Build taze command with appropriate flags for monorepo
31+
const tazeArgs = ['exec', 'taze', '-r', '-w']
3232

33-
if (apply) {
34-
tazeArgs.push('-w')
35-
if (!quiet) {
33+
if (!quiet) {
34+
if (apply) {
3635
logger.progress('Updating dependencies across monorepo...')
37-
}
38-
} else {
39-
if (!quiet) {
36+
} else {
4037
logger.progress('Checking for updates across monorepo...')
4138
}
4239
}
@@ -52,8 +49,8 @@ async function main() {
5249
process.stdout.write('\r\x1b[K')
5350
}
5451

55-
// If applying updates, also update Socket packages.
56-
if (apply && result.code === 0) {
52+
// Always update Socket packages when applying (bypass taze maturity period).
53+
if (apply) {
5754
if (!quiet) {
5855
logger.progress('Updating Socket packages...')
5956
}

0 commit comments

Comments
 (0)