Skip to content

Commit dd8ed39

Browse files
MrJithiltargos
authored andcommitted
src: add cjs_module_lexer_version base64_version
src: add cjs_module_lexer_version base64_version PR-URL: #45629 Refs: #45260 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Minwoo Jung <nodecorelab@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
1 parent a7a7eab commit dd8ed39

7 files changed

+46
-2
lines changed

src/base64_version.h

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
// This is an auto generated file, please do not edit.
2+
// Refer to tools/dep_updaters/update-base64.sh
3+
#ifndef SRC_BASE64_VERSION_H_
4+
#define SRC_BASE64_VERSION_H_
5+
#define BASE64_VERSION "0.5.0"
6+
#endif // SRC_BASE64_VERSION_H_

src/cjs_module_lexer_version.h

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
// This is an auto generated file, please do not edit.
2+
// Refer to tools/dep_updaters/update-cjs-module-lexer.sh
3+
#ifndef SRC_CJS_MODULE_LEXER_VERSION_H_
4+
#define SRC_CJS_MODULE_LEXER_VERSION_H_
5+
#define CJS_MODULE_LEXER_VERSION "1.2.2"
6+
#endif // SRC_CJS_MODULE_LEXER_VERSION_H_

src/node_metadata.cc

+5-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
#include "acorn_version.h"
33
#include "ada.h"
44
#include "ares.h"
5+
#include "base64_version.h"
56
#include "brotli/encode.h"
7+
#include "cjs_module_lexer_version.h"
68
#include "llhttp.h"
79
#include "nghttp2/nghttp2ver.h"
810
#include "node.h"
@@ -97,8 +99,10 @@ Metadata::Versions::Versions() {
9799
#ifndef NODE_SHARED_BUILTIN_UNDICI_UNDICI_PATH
98100
undici = UNDICI_VERSION;
99101
#endif
100-
acorn = ACORN_VERSION;
101102

103+
acorn = ACORN_VERSION;
104+
cjs_module_lexer = CJS_MODULE_LEXER_VERSION;
105+
base64 = BASE64_VERSION;
102106
uvwasi = UVWASI_VERSION_STRING;
103107

104108
#if HAVE_OPENSSL

src/node_metadata.h

+3-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,9 @@ namespace node {
4848
V(acorn) \
4949
V(simdutf) \
5050
V(ada) \
51-
NODE_VERSIONS_KEY_UNDICI(V)
51+
NODE_VERSIONS_KEY_UNDICI(V) \
52+
V(cjs_module_lexer) \
53+
V(base64)
5254

5355
#if HAVE_OPENSSL
5456
#define NODE_VERSIONS_KEY_CRYPTO(V) V(openssl)

test/parallel/test-process-versions.js

+6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ const assert = require('assert');
44

55
// Import of pure js (non-shared) deps for comparison
66
const acorn = require('../../deps/acorn/acorn/package.json');
7+
const cjs_module_lexer = require('../../deps/cjs-module-lexer/package.json');
78

89
const expected_keys = [
910
'ares',
@@ -19,6 +20,8 @@ const expected_keys = [
1920
'acorn',
2021
'simdutf',
2122
'ada',
23+
'cjs_module_lexer',
24+
'base64',
2225
];
2326

2427
const hasUndici = process.config.variables.node_builtin_shareable_builtins.includes('deps/undici/undici.js');
@@ -69,6 +72,7 @@ assert.match(
6972
/^\d+\.\d+\.\d+(?:\.\d+)?-node\.\d+(?: \(candidate\))?$/
7073
);
7174
assert.match(process.versions.modules, /^\d+$/);
75+
assert.match(process.versions.cjs_module_lexer, commonTemplate);
7276

7377
if (common.hasCrypto) {
7478
const versionRegex = common.hasOpenSSL3 ?
@@ -97,3 +101,5 @@ if (hasUndici) {
97101

98102
const expectedAcornVersion = acorn.version;
99103
assert.strictEqual(process.versions.acorn, expectedAcornVersion);
104+
const expectedCjsModuleLexerVersion = cjs_module_lexer.version;
105+
assert.strictEqual(process.versions.cjs_module_lexer, expectedCjsModuleLexerVersion);

tools/dep_updaters/update-base64.sh

+10
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,16 @@ echo "$ git add -A deps/base64/base64"
5959
echo "$ git commit -m \"deps: update base64 to $NEW_VERSION\""
6060
echo ""
6161

62+
# update the base64_version.h
63+
cat > "$BASE_DIR/src/base64_version.h" << EOL
64+
// This is an auto generated file, please do not edit.
65+
// Refer to tools/dep_updaters/update-base64.sh
66+
#ifndef SRC_BASE64_VERSION_H_
67+
#define SRC_BASE64_VERSION_H_
68+
#define BASE64_VERSION "$NEW_VERSION"
69+
#endif // SRC_BASE64_VERSION_H_
70+
EOL
71+
6272
# The last line of the script should always print the new version,
6373
# as we need to add it to $GITHUB_ENV variable.
6474
echo "NEW_VERSION=$NEW_VERSION"

tools/dep_updaters/update-cjs-module-lexer.sh

+10
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,16 @@ echo "$ git add -A deps/cjs-module-lexer"
5858
echo "$ git commit -m \"deps: update cjs-module-lexer to $NEW_VERSION\""
5959
echo ""
6060

61+
# update cjs_module_lexer_version.h
62+
cat > "$BASE_DIR/src/cjs_module_lexer_version.h" << EOL
63+
// This is an auto generated file, please do not edit.
64+
// Refer to tools/dep_updaters/update-cjs-module-lexer.sh
65+
#ifndef SRC_CJS_MODULE_LEXER_VERSION_H_
66+
#define SRC_CJS_MODULE_LEXER_VERSION_H_
67+
#define CJS_MODULE_LEXER_VERSION "$NEW_VERSION"
68+
#endif // SRC_CJS_MODULE_LEXER_VERSION_H_
69+
EOL
70+
6171
# The last line of the script should always print the new version,
6272
# as we need to add it to $GITHUB_ENV variable.
6373
echo "NEW_VERSION=$NEW_VERSION"

0 commit comments

Comments
 (0)