Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

deps: add simdutf version to metadata #46145

Merged
merged 2 commits into from Jan 10, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/node_metadata.cc
Expand Up @@ -5,6 +5,7 @@
#include "llhttp.h"
#include "nghttp2/nghttp2ver.h"
#include "node.h"
#include "simdutf.h"
#include "undici_version.h"
#include "util.h"
#include "uv.h"
Expand Down Expand Up @@ -112,6 +113,8 @@ Metadata::Versions::Versions() {
ngtcp2 = NGTCP2_VERSION;
nghttp3 = NGHTTP3_VERSION;
#endif

simdutf = SIMDUTF_VERSION;
}

Metadata::Release::Release() : name(NODE_RELEASE) {
Expand Down
1 change: 1 addition & 0 deletions src/node_metadata.h
Expand Up @@ -46,6 +46,7 @@ namespace node {
V(llhttp) \
V(uvwasi) \
V(acorn) \
V(simdutf) \
NODE_VERSIONS_KEY_UNDICI(V)

#if HAVE_OPENSSL
Expand Down