From b3ea22968dd902db33b59c32febc7960f9a62a87 Mon Sep 17 00:00:00 2001 From: Santiago Gimeno Date: Tue, 24 Jun 2025 11:09:24 +0200 Subject: [PATCH 1/2] Working on 5.7.4 Jod --- src/node_version.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/node_version.h b/src/node_version.h index 07170d10f9..d6c7fa9db4 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -34,9 +34,9 @@ #define NSOLID_MAJOR_VERSION 5 #define NSOLID_MINOR_VERSION 7 -#define NSOLID_PATCH_VERSION 3 +#define NSOLID_PATCH_VERSION 4 -#define NSOLID_VERSION_IS_RELEASE 1 +#define NSOLID_VERSION_IS_RELEASE 0 #ifndef NODE_STRINGIFY #define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n) From fc9d9bbdf7f73514706285383662676952d159ec Mon Sep 17 00:00:00 2001 From: Santiago Gimeno Date: Wed, 25 Jun 2025 13:56:40 +0200 Subject: [PATCH 2/2] deps: update to brace-expansion@2.0.2 in npm Refs: https://github.com/npm/cli/commit/7912c9ca4bdadb38f1445903291116c7365500ae --- deps/npm/node_modules/brace-expansion/index.js | 2 +- deps/npm/node_modules/brace-expansion/package.json | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/deps/npm/node_modules/brace-expansion/index.js b/deps/npm/node_modules/brace-expansion/index.js index 6c06dafcfb..254ca75dd9 100644 --- a/deps/npm/node_modules/brace-expansion/index.js +++ b/deps/npm/node_modules/brace-expansion/index.js @@ -116,7 +116,7 @@ function expand(str, isTop) { var isOptions = m.body.indexOf(',') >= 0; if (!isSequence && !isOptions) { // {a},b} - if (m.post.match(/,.*\}/)) { + if (m.post.match(/,(?!,).*\}/)) { str = m.pre + '{' + m.body + escClose + m.post; return expand(str); } diff --git a/deps/npm/node_modules/brace-expansion/package.json b/deps/npm/node_modules/brace-expansion/package.json index 7097d41e39..c7eee34511 100644 --- a/deps/npm/node_modules/brace-expansion/package.json +++ b/deps/npm/node_modules/brace-expansion/package.json @@ -1,7 +1,7 @@ { "name": "brace-expansion", "description": "Brace expansion as known from sh/bash", - "version": "2.0.1", + "version": "2.0.2", "repository": { "type": "git", "url": "git://github.com/juliangruber/brace-expansion.git" @@ -42,5 +42,8 @@ "iphone/6.0..latest", "android-browser/4.2..latest" ] + }, + "publishConfig": { + "tag": "2.x" } }