Upgrades Node.js from 24.13.0 → 24.14.1 (#32498)

GitOrigin-RevId: edbe6969c4c28109e3077f48e94084fc5c910727
This commit is contained in:
Anna Claire Fields
2026-04-13 12:26:22 +02:00
committed by Copybot
parent cb0f87282b
commit 1a7de4ddd8
90 changed files with 155 additions and 219 deletions

View File

@@ -1 +1 @@
24.13.0
24.14.1

View File

@@ -2,7 +2,7 @@
# Instead run bin/update_build_scripts from
# https://github.com/overleaf/internal/
FROM node:24.13.0 AS base
FROM node:24.14.1 AS base
WORKDIR /overleaf/services/contacts

View File

@@ -52,8 +52,8 @@ clean:
# Run the linting commands in the scope of the monorepo.
# Eslint and prettier (plus some configs) are on the root.
RUN_LINTING = docker run --rm -v $(MONOREPO):$(MONOREPO) -w $(HERE) --user node node:24.13.0 npm run --silent
RUN_LINTING_MONOREPO = docker run --rm -v $(MONOREPO):$(MONOREPO) -w $(MONOREPO) --user node node:24.13.0 npm run --silent
RUN_LINTING = docker run --rm -v $(MONOREPO):$(MONOREPO) -w $(HERE) --user node node:24.14.1 npm run --silent
RUN_LINTING_MONOREPO = docker run --rm -v $(MONOREPO):$(MONOREPO) -w $(MONOREPO) --user node node:24.14.1 npm run --silent
RUN_LINTING_CI = docker run --rm --volume $(MONOREPO)/.editorconfig:/overleaf/.editorconfig --volume $(MONOREPO)/.eslintignore:/overleaf/.eslintignore --volume $(MONOREPO)/.eslintrc:/overleaf/.eslintrc --volume $(MONOREPO)/.prettierignore:/overleaf/.prettierignore --volume $(MONOREPO)/.prettierrc:/overleaf/.prettierrc --volume $(MONOREPO)/tsconfig.backend.json:/overleaf/tsconfig.backend.json --volume $(MONOREPO)/services/contacts/reports:/overleaf/services/contacts/reports --volume $(MONOREPO)/node_modules/.cache:/overleaf/node_modules/.cache $(IMAGE_CI) npm run --silent
RUN_LINTING_CI_MONOREPO = docker run --rm --volume $(MONOREPO)/.editorconfig:/overleaf/.editorconfig --volume $(MONOREPO)/.eslintignore:/overleaf/.eslintignore --volume $(MONOREPO)/.eslintrc:/overleaf/.eslintrc --volume $(MONOREPO)/.prettierignore:/overleaf/.prettierignore --volume $(MONOREPO)/.prettierrc:/overleaf/.prettierrc --volume $(MONOREPO)/tsconfig.backend.json:/overleaf/tsconfig.backend.json --volume $(MONOREPO)/services/contacts/reports:/overleaf/services/contacts/reports --volume $(MONOREPO)/node_modules/.cache:/overleaf/node_modules/.cache -w /overleaf $(IMAGE_CI) npm run --silent

View File

@@ -3,6 +3,6 @@ contacts
--env-add=
--env-pass-through=
--esmock-loader=True
--node-version=24.13.0
--node-version=24.14.1
--pipeline-owner=52
--public-repo=False

View File

@@ -4,7 +4,7 @@
services:
test_unit:
image: node:24.13.0
image: node:24.14.1
volumes:
- .:/overleaf/services/contacts
- ../../node_modules:/overleaf/node_modules
@@ -26,7 +26,7 @@ services:
condition: service_started
test_acceptance:
image: node:24.13.0
image: node:24.14.1
volumes:
- .:/overleaf/services/contacts
- ../../node_modules:/overleaf/node_modules