Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/boil_pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
- "Cargo.*"

env:
RUST_VERSION: 1.89.0
RUST_VERSION: 1.92.0

jobs:
# This job is always run to ensure we don't miss any new upstream advisories
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/boil_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
- "boil-[0-9]+.[0-9]+.[0-9]+**"

env:
RUST_VERSION: 1.89.0
RUST_VERSION: 1.92.0

jobs:
create-release:
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ All notable changes to this project will be documented in this file.
Pull logging dependencies with `mvn` instead of `curl` to remove manual maintenance in Nexus `packages`.
- hbase: Update `hbase-operator-tools` from `1.3.0-fd5a5fb` to `1.3.0` ([#1425]).
- nifi: Backported NiFi-15567 to NiFi 2.6.0 and 2.7.2 to fix CVE CVE-2026-25903 ([#1429]).
- ubi9-rust-builder: Bump Rust toolchain to `1.92.0`, and cargo-auditable to `0.7.2` ([#XXXX]).

### Removed

Expand Down Expand Up @@ -106,6 +107,7 @@ All notable changes to this project will be documented in this file.
[#1426]: https://github.com/stackabletech/docker-images/pull/1426
[#1428]: https://github.com/stackabletech/docker-images/pull/1428
[#1429]: https://github.com/stackabletech/docker-images/pull/1429
[#XXXX]: https://github.com/stackabletech/docker-images/pull/XXXX

## [25.11.0] - 2025-11-07

Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[toolchain]
channel = "1.89.0"
channel = "1.92.0"
profile = "default"
4 changes: 2 additions & 2 deletions stackable-devel/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,14 @@ COPY stackable-base/stackable/curlrc /root/.curlrc
# Find the latest version here: https://doc.rust-lang.org/stable/releases.html
# TODO (@NickLarsenNZ): Move the version into boil-config.toml once renovate can look there
# renovate: datasource=github-releases packageName=rust-lang/rust
ARG RUST_DEFAULT_TOOLCHAIN_VERSION=1.89.0
ARG RUST_DEFAULT_TOOLCHAIN_VERSION=1.92.0
ENV RUST_DEFAULT_TOOLCHAIN_VERSION=${RUST_DEFAULT_TOOLCHAIN_VERSION}
# Find the latest version here: https://crates.io/crates/cargo-cyclonedx
# renovate: datasource=crate packageName=cargo-cyclonedx
ENV CARGO_CYCLONEDX_CRATE_VERSION=0.5.7
# Find the latest version here: https://crates.io/crates/cargo-auditable
# renovate: datasource=crate packageName=cargo-auditable
ENV CARGO_AUDITABLE_CRATE_VERSION=0.7.1
ENV CARGO_AUDITABLE_CRATE_VERSION=0.7.2

RUN <<EOF
microdnf update
Expand Down
4 changes: 2 additions & 2 deletions ubi9-rust-builder/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ ENV RUSTUP_VERSION=1.28.2
# This SHOULD be kept in sync with operator-templating and other tools to reduce build times
# Find the latest version here: https://doc.rust-lang.org/stable/releases.html
# renovate: datasource=github-releases packageName=rust-lang/rust
ENV RUST_DEFAULT_TOOLCHAIN_VERSION=1.89.0
ENV RUST_DEFAULT_TOOLCHAIN_VERSION=1.92.0
# Find the latest version here: https://crates.io/crates/cargo-cyclonedx
# renovate: datasource=crate packageName=cargo-cyclonedx
ENV CARGO_CYCLONEDX_CRATE_VERSION=0.5.7
# Find the latest version here: https://crates.io/crates/cargo-auditable
# renovate: datasource=crate packageName=cargo-auditable
ENV CARGO_AUDITABLE_CRATE_VERSION=0.7.1
ENV CARGO_AUDITABLE_CRATE_VERSION=0.7.2
# Find the latest version here: https://github.com/protocolbuffers/protobuf/releases
# Upload any newer version to nexus with ./.scripts/upload_new_protoc_version.sh
# renovate: datasource=github-releases packageName=protocolbuffers/protobuf
Expand Down