Skip to content
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
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
build-app:
executor:
name: common/node
tag: "24.14"
tag: "24.18"
steps:
- checkout
- run:
Expand All @@ -31,7 +31,7 @@ jobs:
test:
resource_class: large
docker:
- image: cimg/node:24.14
- image: cimg/node:24.18
- image: postgres:18-alpine
environment:
POSTGRES_DB: api_test
Expand Down
2 changes: 1 addition & 1 deletion .infra/.nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
24.14
24.18
2 changes: 1 addition & 1 deletion .infra/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
},
"packageManager": "pnpm@10.33.4+sha256.8e70ddc6649b18bc3d895cf3a908c0291ea4c38039ad8722c47e018daf1e9cfc",
"volta": {
"node": "24.14.0"
"node": "24.18.0"
}
}
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
24.14
24.18
4 changes: 2 additions & 2 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This file provides guidance to coding agents when working with code in this repo

## Prerequisites

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

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

```bash
# IMPORTANT: Run nvm use from within daily-api directory (uses .nvmrc with node 24.14)
# IMPORTANT: Run nvm use from within daily-api directory (uses .nvmrc with node 24.18)
cd /path/to/daily-api
nvm use
pnpm run db:migrate:make src/migration/DescriptiveMigrationName
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax=docker/dockerfile:1
FROM node:24.14-bookworm-slim
FROM node:24.18-bookworm-slim

ADD https://www.apple.com/appleca/AppleIncRootCertificate.cer /usr/local/share/ca-certificates/AppleIncRootCertificate.cer
ADD https://www.apple.com/certificateauthority/AppleRootCA-G2.cer /usr/local/share/ca-certificates/AppleRootCA-G2.cer
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:24.14-bookworm-slim
FROM node:24.18-bookworm-slim

ADD https://www.apple.com/appleca/AppleIncRootCertificate.cer /usr/local/share/ca-certificates/AppleIncRootCertificate.cer
ADD https://www.apple.com/certificateauthority/AppleRootCA-G2.cer /usr/local/share/ca-certificates/AppleRootCA-G2.cer
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@
}
},
"volta": {
"node": "24.14.0"
"node": "24.18.0"
},
"packageManager": "pnpm@10.33.4+sha256.8e70ddc6649b18bc3d895cf3a908c0291ea4c38039ad8722c47e018daf1e9cfc",
"madge": {
Expand Down
Loading