Skip to content

Commit 18938d2

Browse files
authored
chore: node 24.18 upgrade (#3961)
1 parent eac54d4 commit 18938d2

8 files changed

Lines changed: 10 additions & 10 deletions

File tree

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
build-app:
77
executor:
88
name: common/node
9-
tag: "24.14"
9+
tag: "24.18"
1010
steps:
1111
- checkout
1212
- run:
@@ -31,7 +31,7 @@ jobs:
3131
test:
3232
resource_class: large
3333
docker:
34-
- image: cimg/node:24.14
34+
- image: cimg/node:24.18
3535
- image: postgres:18-alpine
3636
environment:
3737
POSTGRES_DB: api_test

.infra/.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
24.14
1+
24.18

.infra/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@
1414
},
1515
"packageManager": "pnpm@10.33.4+sha256.8e70ddc6649b18bc3d895cf3a908c0291ea4c38039ad8722c47e018daf1e9cfc",
1616
"volta": {
17-
"node": "24.14.0"
17+
"node": "24.18.0"
1818
}
1919
}

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
24.14
1+
24.18

AGENTS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This file provides guidance to coding agents when working with code in this repo
44

55
## Prerequisites
66

7-
- **Node.js**: 24.14.0 (managed via Volta)
7+
- **Node.js**: 24.18.0 (managed via Volta)
88
- **Package Manager**: pnpm 10.33.4 (activate via `corepack enable && corepack prepare pnpm@10.33.4 --activate`)
99

1010
## Essential Commands
@@ -31,7 +31,7 @@ This file provides guidance to coding agents when working with code in this repo
3131
When adding or modifying entity columns, **always generate a migration** using:
3232

3333
```bash
34-
# IMPORTANT: Run nvm use from within daily-api directory (uses .nvmrc with node 24.14)
34+
# IMPORTANT: Run nvm use from within daily-api directory (uses .nvmrc with node 24.18)
3535
cd /path/to/daily-api
3636
nvm use
3737
pnpm run db:migrate:make src/migration/DescriptiveMigrationName

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# syntax=docker/dockerfile:1
2-
FROM node:24.14-bookworm-slim
2+
FROM node:24.18-bookworm-slim
33

44
ADD https://www.apple.com/appleca/AppleIncRootCertificate.cer /usr/local/share/ca-certificates/AppleIncRootCertificate.cer
55
ADD https://www.apple.com/certificateauthority/AppleRootCA-G2.cer /usr/local/share/ca-certificates/AppleRootCA-G2.cer

Dockerfile.dev

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:24.14-bookworm-slim
1+
FROM node:24.18-bookworm-slim
22

33
ADD https://www.apple.com/appleca/AppleIncRootCertificate.cer /usr/local/share/ca-certificates/AppleIncRootCertificate.cer
44
ADD https://www.apple.com/certificateauthority/AppleRootCA-G2.cer /usr/local/share/ca-certificates/AppleRootCA-G2.cer

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@
205205
}
206206
},
207207
"volta": {
208-
"node": "24.14.0"
208+
"node": "24.18.0"
209209
},
210210
"packageManager": "pnpm@10.33.4+sha256.8e70ddc6649b18bc3d895cf3a908c0291ea4c38039ad8722c47e018daf1e9cfc",
211211
"madge": {

0 commit comments

Comments
 (0)