Skip to content

Commit f83017a

Browse files
committed
fix(deps): update Socket packages regardless of taze result
- Changed update script to always run pnpm update for Socket packages when --apply is used - Previously required taze to succeed (exit code 0) before updating Socket packages - This caused Socket packages to be skipped when taze found no updates due to maturity period - Socket-controlled packages (@socketsecurity/*, @socketregistry/*) should bypass maturity period
1 parent 5b05979 commit f83017a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/update.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ async function main() {
4949
process.stdout.write('\r\x1b[K')
5050
}
5151

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

0 commit comments

Comments
 (0)