Skip to content

Commit 8d7c9b0

Browse files
committed
Bump registry package to v1.3.10
1 parent f443468 commit 8d7c9b0

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

registry/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@socketsecurity/registry",
3-
"version": "1.3.9",
3+
"version": "1.3.10",
44
"license": "MIT",
55
"description": "Socket.dev registry helpers methods and metadata",
66
"keywords": [

scripts/publish-npm-packages.mjs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,10 @@ async function findVersionBumpCommits() {
111111
// Only accept specific version bump patterns:
112112
// - "Bump to v<version>" (general format)
113113
// - "Bump <pkgname> to v<version>"
114+
// - "Bump registry package to v<version>"
114115
// Exclude generic "Update" or "Bump" messages without "to v".
115-
if (!/^Bump (?:.+ )?to v/.test(message)) {
116+
// Use non-greedy .+? to match shortest text before "to v" (handles multi-word package names).
117+
if (!/^Bump (?:.+? )?to v/.test(message)) {
116118
continue
117119
}
118120

0 commit comments

Comments
 (0)