Skip to content

Commit bc422a0

Browse files
authored
chore: v1.39.1 release (#8817)
2 parents 98e4089 + ff42e36 commit bc422a0

File tree

21 files changed

+22
-36
lines changed

21 files changed

+22
-36
lines changed

Dockerfile

Lines changed: 2 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
# --platform=$BUILDPLATFORM is used build javascript source with host arch
2-
# Otherwise TS builds on emulated archs and can be extremely slow (+1h)
3-
FROM --platform=${BUILDPLATFORM:-amd64} node:24-slim AS build_src
1+
FROM node:24-slim AS build_src
42
ARG COMMIT
53
WORKDIR /usr/app
64
RUN apt-get update && apt-get install -y git g++ make python3 python3-setuptools && apt-get clean && rm -rf /var/lib/apt/lists/*
@@ -20,23 +18,11 @@ RUN corepack enable && corepack prepare --activate && \
2018
# the terminal and in the logs; which is very useful to track tests better.
2119
RUN cd packages/cli && GIT_COMMIT=${COMMIT} pnpm write-git-data
2220

23-
24-
# Copy built src + node_modules to build native packages for archs different than host.
25-
# Note: This step is redundant for the host arch
26-
FROM node:24-slim AS build_deps
27-
WORKDIR /usr/app
28-
RUN apt-get update && apt-get install -y git g++ make python3 python3-setuptools && apt-get clean && rm -rf /var/lib/apt/lists/*
29-
30-
COPY --from=build_src /usr/app .
31-
32-
# Rebuild native deps
33-
RUN corepack enable && pnpm rebuild
34-
3521
# Copy built src + node_modules to a new layer to prune unnecessary fs
3622
# Previous layer weights 7.25GB, while this final 488MB (as of Oct 2020)
3723
FROM node:24-slim
3824
WORKDIR /usr/app
39-
COPY --from=build_deps /usr/app .
25+
COPY --from=build_src /usr/app .
4026

4127
# NodeJS applications have a default memory limit of 4GB on most machines.
4228
# This limit is bit tight for a Mainnet node, it is recommended to raise the limit

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"packages": [
33
"packages/*"
44
],
5-
"version": "1.39.0",
5+
"version": "1.39.1",
66
"stream": true,
77
"command": {
88
"version": {

packages/api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"bugs": {
1212
"url": "https://github.com/ChainSafe/lodestar/issues"
1313
},
14-
"version": "1.39.0",
14+
"version": "1.39.1",
1515
"type": "module",
1616
"exports": {
1717
".": {

packages/beacon-node/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"bugs": {
1212
"url": "https://github.com/ChainSafe/lodestar/issues"
1313
},
14-
"version": "1.39.0",
14+
"version": "1.39.1",
1515
"type": "module",
1616
"exports": {
1717
".": {

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@chainsafe/lodestar",
3-
"version": "1.39.0",
3+
"version": "1.39.1",
44
"description": "Command line interface for lodestar",
55
"author": "ChainSafe Systems",
66
"license": "Apache-2.0",

packages/config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lodestar/config",
3-
"version": "1.39.0",
3+
"version": "1.39.1",
44
"description": "Chain configuration required for lodestar",
55
"author": "ChainSafe Systems",
66
"license": "Apache-2.0",

packages/db/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lodestar/db",
3-
"version": "1.39.0",
3+
"version": "1.39.1",
44
"description": "DB modules of Lodestar",
55
"author": "ChainSafe Systems",
66
"homepage": "https://github.com/ChainSafe/lodestar#readme",

packages/era/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"bugs": {
1212
"url": "https://github.com/ChainSafe/lodestar/issues"
1313
},
14-
"version": "1.39.0",
14+
"version": "1.39.1",
1515
"type": "module",
1616
"exports": {
1717
".": {

packages/flare/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lodestar/flare",
3-
"version": "1.39.0",
3+
"version": "1.39.1",
44
"description": "Beacon chain debugging tool",
55
"author": "ChainSafe Systems",
66
"license": "Apache-2.0",

packages/fork-choice/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"bugs": {
1212
"url": "https://github.com/ChainSafe/lodestar/issues"
1313
},
14-
"version": "1.39.0",
14+
"version": "1.39.1",
1515
"type": "module",
1616
"exports": {
1717
".": {

0 commit comments

Comments
 (0)