Skip to content

Commit 4ec44c7

Browse files
fix: update Dockerfiles from rust:1.85-alpine to rust:1.88-alpine to fix release workflow failure (time@0.3.47 requires rustc 1.88.0)
1 parent ed6ff81 commit 4ec44c7

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2525
- Seed executor tests now verify data actually arrived in the database after execution, using file-based SQLite and post-execution queries to assert row counts, column values, cross-table references, env substitution, ordering, and edge cases
2626

2727
### Fixed
28+
- Updated Dockerfiles (`Dockerfile`, `jyq.Dockerfile`) from `rust:1.85-alpine` to `rust:1.88-alpine` to fix release workflow failure caused by `time@0.3.47` requiring rustc 1.88.0
2829
- Aligned all markdown table columns across documentation files (`FAQ.md`, `README.md`, `docs/security.md`, `docs/seeding.md`, `docs/usage.md`)
2930
- Fixed clippy `collapsible_if` lint in seed executor's unique key check
3031
- Removed dead code: unused `src/cmd/seed.rs` module (replaced by `src/seed/`)
@@ -50,7 +51,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5051
- CLI framework changed from cobra to clap
5152
- Template engine changed from Go text/template to minijinja (Jinja2-style); access env vars via `{{ env.VAR }}`
5253
- CI/CD workflows updated for Rust toolchain (cargo test, clippy, rustfmt)
53-
- Dockerfiles updated to use rust:1.85-alpine builder with musl static linking
54+
- Dockerfiles updated to use rust:1.88-alpine builder with musl static linking
5455

5556
### Added
5657
- `exec` subcommand: run arbitrary commands with structured logging, exit code forwarding, and optional `--workdir` for child process working directory

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM rust:1.85-alpine AS builder
1+
FROM rust:1.88-alpine AS builder
22
ARG VERSION=dev
33
RUN apk add --no-cache musl-dev
44
WORKDIR /src

jyq.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM rust:1.85-alpine AS builder
1+
FROM rust:1.88-alpine AS builder
22
ARG VERSION=dev
33
RUN apk add --no-cache musl-dev
44
WORKDIR /src

0 commit comments

Comments
 (0)