Skip to content

Commit 0c4df83

Browse files
roth-mikeRafaelGSS
authored andcommitted
deps: add simdutf version to metadata
PR-URL: #46145 Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 28af831 commit 0c4df83

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

src/node_metadata.cc

+3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#include "llhttp.h"
66
#include "nghttp2/nghttp2ver.h"
77
#include "node.h"
8+
#include "simdutf.h"
89
#include "undici_version.h"
910
#include "util.h"
1011
#include "uv.h"
@@ -112,6 +113,8 @@ Metadata::Versions::Versions() {
112113
ngtcp2 = NGTCP2_VERSION;
113114
nghttp3 = NGHTTP3_VERSION;
114115
#endif
116+
117+
simdutf = SIMDUTF_VERSION;
115118
}
116119

117120
Metadata::Release::Release() : name(NODE_RELEASE) {

src/node_metadata.h

+1
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ namespace node {
4646
V(llhttp) \
4747
V(uvwasi) \
4848
V(acorn) \
49+
V(simdutf) \
4950
NODE_VERSIONS_KEY_UNDICI(V)
5051

5152
#if HAVE_OPENSSL

test/parallel/test-process-versions.js

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ const expected_keys = [
1818
'llhttp',
1919
'uvwasi',
2020
'acorn',
21+
'simdutf',
2122
];
2223

2324
const hasUndici = process.config.variables.node_builtin_shareable_builtins.includes('deps/undici/undici.js');

0 commit comments

Comments
 (0)