Skip to content

Commit 05664e5

Browse files
authored
Merge pull request #25 from skdltmxn/bump/2026-01
bump dependencies
2 parents 44e0b6e + 3d9e51e commit 05664e5

File tree

2 files changed

+19
-8
lines changed

2 files changed

+19
-8
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## 2026-01
2+
3+
* Upgrade Node.js base image: 24.0.2 (slim) → 24.13.0 (slim)
4+
* Upgrade pnpm: 10.11.0 → 10.28.1
5+
* Upgrade turbo: 2.5.8 → 2.7.5
6+
* Upgrade @swc/core: 1.11.24 → 1.15.10
7+
* Upgrade BuildKit (buildctl): 0.21.1 → 0.26.3
8+
* Upgrade go: 1.22.0 → 1.25.6
9+
* Upgrade amazon-ecr-credential-helper: 0.9.1 → 0.11.0
10+
* Upgrade rust: 1.91.1 → 1.92.0
11+
112
## 2025-12
213

314
* Add Rust 1.91.1 via rustup with minimal profile

Dockerfile

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
FROM node:24.0.2-slim
1+
FROM node:24.13.0-slim
22

33
ENV DEBIAN_FRONTEND noninteractive
4-
ENV PNPM_VERSION 10.11.0
5-
ENV TURBO_VERSION 2.5.8
4+
ENV PNPM_VERSION 10.28.1
5+
ENV TURBO_VERSION 2.7.5
66
ENV TSX_VERSION 4.19.4
77
ENV TS_NODE 10.9.2
8-
ENV SWC_CORE 1.11.24
8+
ENV SWC_CORE 1.15.10
99
ENV AWS_CLI 2.27.19
10-
ENV BUILDKIT_VERSION 0.21.1
10+
ENV BUILDKIT_VERSION 0.26.3
1111

1212
RUN apt-get update -y \
1313
&& apt-get install -y --no-install-recommends \
@@ -54,12 +54,12 @@ RUN curl -L "https://dl.k8s.io/release/v1.30.13/bin/linux/amd64/kubectl" -o "/us
5454
RUN ln -s /usr/bin/kubectl-v1.32 /usr/bin/kubectl
5555

5656
# install golang
57-
COPY --from=golang:1.22.0 /usr/local/go/ /usr/local/go/
57+
COPY --from=golang:1.25.6 /usr/local/go/ /usr/local/go/
5858
ENV GOPATH /go
5959
ENV PATH $GOPATH/bin:/usr/local/go/bin:/usr/bin:${PATH}
6060

6161
# install amazon-ecr-credential-helper
62-
RUN curl -L "https://amazon-ecr-credential-helper-releases.s3.us-east-2.amazonaws.com/0.9.1/linux-amd64/docker-credential-ecr-login" -o "/usr/bin/docker-credential-ecr-login" \
62+
RUN curl -L "https://amazon-ecr-credential-helper-releases.s3.us-east-2.amazonaws.com/0.11.0/linux-amd64/docker-credential-ecr-login" -o "/usr/bin/docker-credential-ecr-login" \
6363
&& chmod a+x /usr/bin/docker-credential-ecr-login
6464

6565
RUN mkdir -p "$GOPATH/src" "$GOPATH/bin" && chmod -R 777 "$GOPATH"
@@ -70,6 +70,6 @@ RUN curl -LsSf https://astral.sh/uv/install.sh | env UV_UNMANAGED_INSTALL="/usr/
7070

7171
# install rust via rustup
7272
# https://www.rust-lang.org/tools/install
73-
ENV RUST_VERSION 1.91.1
73+
ENV RUST_VERSION 1.92.0
7474
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain ${RUST_VERSION} --profile default \
7575
&& ln -s /root/.cargo/bin/* /usr/bin/

0 commit comments

Comments
 (0)