Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update rust docker tag to v1.81.0 #57

Merged
merged 2 commits into from
Sep 9, 2024
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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,14 @@ a new version number. Fill in an appropriate changelog entry in this file to
get CI passing and enable the changes to land on `main`.
``

## 1.81-0.0

- Updated Rust version to `1.81.0`
- Updated `cargo-deny` to `1.16.1`
- Updated `cargo-about` to `0.6.4`
- Updated `cargo-make` to `0.37.16`
- Updated `cargo-release` to `0.25.11`

## 1.80-0.0

- Updated Rust version to `1.80.0`
Expand Down
12 changes: 6 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
#
####

FROM --platform=$BUILDPLATFORM rust:1.80.0-slim AS builder
FROM --platform=$BUILDPLATFORM rust:1.81.0-slim AS builder

WORKDIR /build

Expand Down Expand Up @@ -173,14 +173,14 @@ RUN --mount=type=cache,target=/usr/local/cargo/registry,sharing=locked \
--mount=type=cache,target=/build/target \
export CARGO_BUILD_TARGET=`./docker-target-triple` && \
# cargo-deny: used for dependency license and security checks.
cargo install --version="0.16.0" cargo-deny && \
cargo install --version="0.16.1" cargo-deny && \
# cargo-about: used for generating license files for distribution to consumers,
# which may be required for compliance with some open-source licenses.
cargo install --version="0.6.2" cargo-about && \
cargo install --version="0.6.4" cargo-about && \
# cargo-make: used for defining dev & build tasks.
cargo install --version="0.37.15" cargo-make && \
cargo install --version="0.37.16" cargo-make && \
# cargo-release: used for cutting releases.
cargo install --version="0.25.10" cargo-release && \
cargo install --version="0.25.11" cargo-release && \
# cargo-machete: used for finding unused dependencies.
cargo install --version="0.6.2" cargo-machete && \
# cargo-sort: used for formatting dependencies in Cargo.toml files.
Expand All @@ -200,7 +200,7 @@ RUN --mount=type=cache,target=/usr/local/cargo/registry,sharing=locked \
#
####

FROM rust:1.80.0-slim
FROM rust:1.81.0-slim

# Install extra system dependencies not included in the slim base image.
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
Expand Down