Skip to content

Commit a73ee4d

Browse files
authored
Release v1.52.0 (#1201)
## Changes - Node version upgrade to 22 - Resolve vulnerable deps
2 parents ff2187c + f4f6fee commit a73ee4d

File tree

21 files changed

+23730
-16694
lines changed

21 files changed

+23730
-16694
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{
44
"name": "Node.js & TypeScript",
55
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6-
"image": "mcr.microsoft.com/devcontainers/typescript-node:0-18",
6+
"image": "mcr.microsoft.com/devcontainers/typescript-node:22",
77

88
"forwardPorts": [3000, 3001, 5432, 6379],
99
"customizations": {

.github/workflows/test-and-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: actions/checkout@v4
1212
- uses: actions/setup-node@v4
1313
with:
14-
node-version: '18'
14+
node-version: '22'
1515
cache: 'npm'
1616
cache-dependency-path: package-lock.json
1717
- run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner."

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v18.14.2
1+
v22.19.0

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# syntax=docker/dockerfile:1
2-
FROM node:18-alpine as build
2+
FROM node:22-alpine as build
33

44
ARG APP_ENV=prod
55
ENV VITE_MODE=$APP_ENV
@@ -11,7 +11,7 @@ RUN --mount=type=secret,id=NPM_TASKFORCESH_TOKEN \
1111
RUN npm run build
1212
RUN npm prune --production
1313

14-
FROM node:18-alpine as main
14+
FROM node:22-alpine as main
1515

1616
WORKDIR /opt/plumber
1717

0 commit comments

Comments
 (0)