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 .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ jobs:
if: needs.check-latest-published.outputs.all_latest == 'false'
strategy:
matrix:
os: [depot-ubuntu-latest, depot-macos-latest, depot-windows-2022-8]
node-version: [18, 19, 20, 21, 22, 23]
os: [depot-ubuntu-latest, depot-macos-latest, depot-windows-latest]
node-version: [20, 21, 22, 23, 24, 25]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v20
v24
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-slim
FROM node:24-slim

WORKDIR /hyperlane-monorepo

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,19 +56,19 @@ Check out the [Foundry Book](https://getfoundry.sh/introduction/installation/) f

#### Node

This repository targets v20 of node. We recommend using [nvm](https://github.com/nvm-sh/nvm) to manage your node version.
This repository targets v24 of node. We recommend using [nvm](https://github.com/nvm-sh/nvm) to manage your node version.

To install nvm

```bash
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
```

To install version 20
To install version 24

```bash
nvm install 20
nvm use 20
nvm install 24
nvm use 24
```

You should change versions automatically with the `.nvmrc` file.
Expand Down
543 changes: 187 additions & 356 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pnpm-workspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ catalog:

# Type definitions
'@types/mocha': ^10.0.1
'@types/node': ^20.17.0
'@types/node': ^24.10.9
'@types/sinon': ^17.0.1
'@types/sinon-chai': ^3.2.12
'@types/chai': ^4.3.11
Expand Down
4 changes: 2 additions & 2 deletions typescript/ccip-server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-slim AS builder
FROM node:24-slim AS builder

WORKDIR /hyperlane-monorepo

Expand Down Expand Up @@ -101,7 +101,7 @@ RUN pnpm --filter @hyperlane-xyz/ccip-server deploy --legacy --prod /app
RUN cp -r /app/src/generated /app/dist/generated

# Production stage - Debian slim for Prisma native binary compatibility
FROM node:20-slim AS runner
FROM node:24-slim AS runner

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion typescript/cosmos-types/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM bufbuild/buf:1.50.1 as BUILDER
FROM node:20-alpine
FROM node:24-alpine

RUN npm install -g ts-proto@v1.181.2

Expand Down
4 changes: 2 additions & 2 deletions typescript/rebalancer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-slim AS builder
FROM node:24-slim AS builder

WORKDIR /hyperlane-monorepo

Expand Down Expand Up @@ -84,7 +84,7 @@ RUN SOLC_BINARY="solc-linux-amd64-v${SOLC_VERSION}+commit.${SOLC_COMMIT}" && \
RUN pnpm turbo run bundle --filter=@hyperlane-xyz/rebalancer

# Production stage - minimal Alpine image with just the bundled code
FROM node:20-alpine AS runner
FROM node:24-alpine AS runner

WORKDIR /app

Expand Down
4 changes: 2 additions & 2 deletions typescript/warp-monitor/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-slim AS builder
FROM node:24-slim AS builder

WORKDIR /hyperlane-monorepo

Expand Down Expand Up @@ -84,7 +84,7 @@ RUN SOLC_BINARY="solc-linux-amd64-v${SOLC_VERSION}+commit.${SOLC_COMMIT}" && \
RUN pnpm turbo run bundle --filter=@hyperlane-xyz/warp-monitor

# Production stage - minimal Alpine image with just the bundled code
FROM node:20-alpine AS runner
FROM node:24-alpine AS runner

WORKDIR /app

Expand Down
Loading