Commit e5ff1cd 1 parent 9e5e2f1 commit e5ff1cd Copy full SHA for e5ff1cd
File tree 7 files changed +53
-2
lines changed
7 files changed +53
-2
lines changed Original file line number Diff line number Diff line change
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_
Original file line number Diff line number Diff line change
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_
Original file line number Diff line number Diff line change 2
2
#include " acorn_version.h"
3
3
#include " ada.h"
4
4
#include " ares.h"
5
+ #include " base64_version.h"
5
6
#include " brotli/encode.h"
7
+ #include " cjs_module_lexer_version.h"
6
8
#include " llhttp.h"
7
9
#include " nghttp2/nghttp2ver.h"
8
10
#include " node.h"
@@ -97,8 +99,10 @@ Metadata::Versions::Versions() {
97
99
#ifndef NODE_SHARED_BUILTIN_UNDICI_UNDICI_PATH
98
100
undici = UNDICI_VERSION;
99
101
#endif
100
- acorn = ACORN_VERSION;
101
102
103
+ acorn = ACORN_VERSION;
104
+ cjs_module_lexer = CJS_MODULE_LEXER_VERSION;
105
+ base64 = BASE64_VERSION;
102
106
uvwasi = UVWASI_VERSION_STRING;
103
107
104
108
#if HAVE_OPENSSL
Original file line number Diff line number Diff line change @@ -48,7 +48,9 @@ namespace node {
48
48
V (acorn) \
49
49
V (simdutf) \
50
50
V (ada) \
51
- NODE_VERSIONS_KEY_UNDICI (V)
51
+ NODE_VERSIONS_KEY_UNDICI (V) \
52
+ V (cjs_module_lexer) \
53
+ V (base64)
52
54
53
55
#if HAVE_OPENSSL
54
56
#define NODE_VERSIONS_KEY_CRYPTO (V ) V(openssl)
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ const assert = require('assert');
4
4
5
5
// Import of pure js (non-shared) deps for comparison
6
6
const acorn = require ( '../../deps/acorn/acorn/package.json' ) ;
7
+ const cjs_module_lexer = require ( '../../deps/cjs-module-lexer/package.json' ) ;
7
8
8
9
const expected_keys = [
9
10
'ares' ,
@@ -19,6 +20,8 @@ const expected_keys = [
19
20
'acorn' ,
20
21
'simdutf' ,
21
22
'ada' ,
23
+ 'cjs_module_lexer' ,
24
+ 'base64' ,
22
25
] ;
23
26
24
27
const hasUndici = process . config . variables . node_builtin_shareable_builtins . includes ( 'deps/undici/undici.js' ) ;
@@ -69,6 +72,7 @@ assert.match(
69
72
/ ^ \d + \. \d + \. \d + (?: \. \d + ) ? - n o d e \. \d + (?: \( c a n d i d a t e \) ) ? $ /
70
73
) ;
71
74
assert . match ( process . versions . modules , / ^ \d + $ / ) ;
75
+ assert . match ( process . versions . cjs_module_lexer , commonTemplate ) ;
72
76
73
77
if ( common . hasCrypto ) {
74
78
const versionRegex = common . hasOpenSSL3 ?
@@ -97,3 +101,5 @@ if (hasUndici) {
97
101
98
102
const expectedAcornVersion = acorn . version ;
99
103
assert . strictEqual ( process . versions . acorn , expectedAcornVersion ) ;
104
+ const expectedCjsModuleLexerVersion = cjs_module_lexer . version ;
105
+ assert . strictEqual ( process . versions . cjs_module_lexer , expectedCjsModuleLexerVersion ) ;
Original file line number Diff line number Diff line change 2
2
set -e
3
3
# Shell script to update base64 in the source tree to a specific version
4
4
5
+ update_base64_version (){
6
+ FILE_PATH=" $BASE_DIR /src/base64_version.h"
7
+ echo " // This is an auto generated file, please do not edit." > " $FILE_PATH "
8
+ echo " // Refer to tools/dep_updaters/update-base64.sh" >> " $FILE_PATH "
9
+ echo " #ifndef SRC_BASE64_VERSION_H_" >> " $FILE_PATH "
10
+ echo " #define SRC_BASE64_VERSION_H_" >> " $FILE_PATH "
11
+ echo " #define BASE64_VERSION \" $1 \" " >> " $FILE_PATH "
12
+ echo " #endif // SRC_BASE64_VERSION_H_" >> " $FILE_PATH "
13
+ }
14
+
5
15
BASE_DIR=$( cd " $( dirname " $0 " ) /../.." && pwd)
6
16
DEPS_DIR=" $BASE_DIR /deps"
7
17
@@ -59,6 +69,9 @@ echo "$ git add -A deps/base64/base64"
59
69
echo " $ git commit -m \" deps: update base64 to $NEW_VERSION \" "
60
70
echo " "
61
71
72
+ # update the base64_version.h
73
+ update_base64_version " $NEW_VERSION "
74
+
62
75
# The last line of the script should always print the new version,
63
76
# as we need to add it to $GITHUB_ENV variable.
64
77
echo " NEW_VERSION=$NEW_VERSION "
Original file line number Diff line number Diff line change 2
2
set -e
3
3
# Shell script to update cjs-module-lexer in the source tree to a specific version
4
4
5
+ # update cjs_module_lexer_version.h
6
+ update_cjs_module_lexer_version (){
7
+ FILE_PATH=" $BASE_DIR /src/cjs_module_lexer_version.h"
8
+ echo " // This is an auto generated file, please do not edit." > " $FILE_PATH "
9
+ echo " // Refer to tools/dep_updaters/update-cjs-module-lexer.sh" >> " $FILE_PATH "
10
+ echo " #ifndef SRC_CJS_MODULE_LEXER_VERSION_H_" >> " $FILE_PATH "
11
+ echo " #define SRC_CJS_MODULE_LEXER_VERSION_H_" >> " $FILE_PATH "
12
+ echo " #define CJS_MODULE_LEXER_VERSION \" $1 \" " >> " $FILE_PATH "
13
+ echo " #endif // SRC_CJS_MODULE_LEXER_VERSION_H_" >> " $FILE_PATH "
14
+ }
15
+
5
16
BASE_DIR=$( cd " $( dirname " $0 " ) /../.." && pwd)
6
17
7
18
DEPS_DIR=" $BASE_DIR /deps"
@@ -58,6 +69,9 @@ echo "$ git add -A deps/cjs-module-lexer"
58
69
echo " $ git commit -m \" deps: update cjs-module-lexer to $NEW_VERSION \" "
59
70
echo " "
60
71
72
+ # update cjs_module_lexer_version.h
73
+ update_cjs_module_lexer_version " $NEW_VERSION "
74
+
61
75
# The last line of the script should always print the new version,
62
76
# as we need to add it to $GITHUB_ENV variable.
63
77
echo " NEW_VERSION=$NEW_VERSION "
You can’t perform that action at this time.
0 commit comments