File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 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" : [
Original file line number Diff line number Diff 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 ( ! / ^ B u m p (?: .+ ) ? t o v / . test ( message ) ) {
116+ // Use non-greedy .+? to match shortest text before "to v" (handles multi-word package names).
117+ if ( ! / ^ B u m p (?: .+ ? ) ? t o v / . test ( message ) ) {
116118 continue
117119 }
118120
You can’t perform that action at this time.
0 commit comments