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
2 changes: 1 addition & 1 deletion automation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ This folder contains automated test tooling for Hedera Transaction Tool:

## Prerequisites

- Node.js `>= 24.19.0 <25`
- Node.js `>= 24.20.0 <25`
- `pnpm`
- One of:
- a built Hedera Transaction Tool executable (launch mode), or
Expand Down
2 changes: 1 addition & 1 deletion automation/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,6 @@
"webpack-cli": "7.2.2"
},
"engines": {
"node": ">=24.19.0 <25"
"node": ">=24.20.0 <25"
}
}
6 changes: 3 additions & 3 deletions back-end/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ To setup the frontend application, Follow the complete setup process below..

- [**Node.js**](https://nodejs.org/en/download/package-manager)

- Required version: `>= 24.19.0 <25`
- Required version: `>= 24.20.0 <25`
- Verify installation:

```bash
Expand Down Expand Up @@ -320,13 +320,13 @@ dialing docker-images-prod.6aa30f8b08e16409b46e0173d6de2f56.r2.cloudflarestorage
1. Pull from mirror registry:

```bash
docker pull mirror.gcr.io/library/node:24.19.0-alpine
docker pull mirror.gcr.io/library/node:24.20.0-alpine
```

2. Tag the image:

```bash
docker tag mirror.gcr.io/library/node:24.19.0-alpine node:24.19.0-alpine
docker tag mirror.gcr.io/library/node:24.20.0-alpine node:24.20.0-alpine
```

**Alternative**: Configure Docker Desktop Registry Mirrors:
Expand Down
2 changes: 1 addition & 1 deletion back-end/apps/api/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:24.19.0-alpine AS base
FROM node:24.20.0-alpine AS base

WORKDIR /usr/src/app

Expand Down
2 changes: 1 addition & 1 deletion back-end/apps/chain/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:24.19.0-alpine AS base
FROM node:24.20.0-alpine AS base

WORKDIR /usr/src/app

Expand Down
2 changes: 1 addition & 1 deletion back-end/apps/notifications/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:24.19.0-alpine AS base
FROM node:24.20.0-alpine AS base

WORKDIR /usr/src/app

Expand Down
2 changes: 1 addition & 1 deletion back-end/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,6 @@
"keyv": "5.6.0"
},
"engines": {
"node": ">=24.19.0 <25"
"node": ">=24.20.0 <25"
}
}
4 changes: 2 additions & 2 deletions back-end/typeorm/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:24.19.0-alpine AS builder
FROM node:24.20.0-alpine AS builder

WORKDIR /usr/src/app

Expand Down Expand Up @@ -29,7 +29,7 @@ WORKDIR /usr/src/app/back-end
RUN pnpm build:common && pnpm build:migrations

# Production stage - minimal runtime image
FROM node:24.19.0-alpine
FROM node:24.20.0-alpine

WORKDIR /usr/src/app

Expand Down
2 changes: 1 addition & 1 deletion front-end/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ and is at your own risk.
# Prerequisites

- [**Node.js**](https://nodejs.org/en/download/package-manager)
- Required version: `>= 24.19.0 <25`
- Required version: `>= 24.20.0 <25`
- Verify installation:

```bash
Expand Down
2 changes: 1 addition & 1 deletion front-end/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,6 @@
"vue-tsc": "3.3.11"
},
"engines": {
"node": ">=24.19.0 <25"
"node": ">=24.20.0 <25"
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
},
"packageManager": "pnpm@11.15.1+sha512.81350b07e53c9538a02f1f2303b4290fa2d7be04e56e2a970c4cc4b417dc761de196edabd49d55c7dc9580db81007c44143e4e3d7e462b3000d23c255122d065",
"engines": {
"node": ">=24.19.0 <25"
"node": ">=24.20.0 <25"
}
}
Loading