Skip to content

chore: bump node to v22.16.0 #839

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

Merged
merged 3 commits into from
May 22, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .changeset/brave-pillows-hug.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@hyperdx/api": patch
"@hyperdx/app": patch
---

chore: bump node to v22.16.0
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v22.14.0
v22.16.0
2 changes: 1 addition & 1 deletion docker/hyperdx/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# - Mongo
# - Otel Collector (otelcol)

ARG NODE_VERSION=22.14.0
ARG NODE_VERSION=22.16.0
ARG CLICKHOUSE_VERSION=24
ARG OTEL_COLLECTOR_VERSION=0.120.0

Expand Down
4 changes: 2 additions & 2 deletions packages/api/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## base #############################################################################################
FROM node:22.14.0-alpine AS base
FROM node:22.16.0-alpine AS base

WORKDIR /app

Expand Down Expand Up @@ -30,7 +30,7 @@ RUN rm -rf node_modules && yarn workspaces focus @hyperdx/api --production

## prod ############################################################################################

FROM node:22.14.0-alpine AS prod
FROM node:22.16.0-alpine AS prod

ARG CODE_VERSION

Expand Down
4 changes: 2 additions & 2 deletions packages/app/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## base #############################################################################################
FROM node:22.14.0-alpine AS base
FROM node:22.16.0-alpine AS base
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.
RUN apk add --no-cache libc6-compat
WORKDIR /app
Expand Down Expand Up @@ -41,7 +41,7 @@ RUN rm -rf node_modules && yarn workspaces focus @hyperdx/app --production


## prod ############################################################################################
FROM node:22.14.0-alpine AS prod
FROM node:22.16.0-alpine AS prod
WORKDIR /app

ENV NODE_ENV production
Expand Down