mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2026-05-07 12:00:48 +02:00
* Update Rust, Crates and GHA - Updated Rust to v1.95.0 - Updated all the crates - Update GitHub Actions With the crate updates, hickory-resolver was updated which needed some changes. During testing I found a bug with the fallback resolving from Tokio. The resolver doesn't work if it receives only a `&str`, it needs a `port` too. This fixed the resolving if Hickory failed to load. Also, Hickory switched the resolving to prefer IPv6. While this is nice, it could break or slowdown resolving for IPv4 only environments. Since we already have a flag to prefer IPv6, we check if this is set, else resolve IPv4 first and IPv6 afterwards. Also, we returned just 1 IpAddr record, and ignored the rest. This could mean, a failed attempt to connect if the first IP endpoint has issues. Same if the first records is IPv6 but the server doesn't support this, it never tried a possible returned IPv4 address. We now return a full list of the resolved records unless one of the records matched a filtered address, than the whole resolving is ignored as was previously the case. Signed-off-by: BlackDex <black.dex@gmail.com> * Adjust resolver builder path Changed the way the resolver is constructed. This way the default is always selected no matter which part of the hickory build fails. Signed-off-by: BlackDex <black.dex@gmail.com> --------- Signed-off-by: BlackDex <black.dex@gmail.com>
28 lines
1.5 KiB
YAML
28 lines
1.5 KiB
YAML
---
|
|
vault_version: "v2026.2.0"
|
|
vault_image_digest: "sha256:37c8661fa59dcdfbd3baa8366b6e950ef292b15adfeff1f57812b075c1fd3447"
|
|
# Cross Compile Docker Helper Scripts v1.9.0
|
|
# We use the linux/amd64 platform shell scripts since there is no difference between the different platform scripts
|
|
# https://github.com/tonistiigi/xx | https://hub.docker.com/r/tonistiigi/xx/tags
|
|
xx_image_digest: "sha256:c64defb9ed5a91eacb37f96ccc3d4cd72521c4bd18d5442905b95e2226b0e707"
|
|
rust_version: 1.95.0 # Rust version to be used
|
|
debian_version: trixie # Debian release name to be used
|
|
alpine_version: "3.23" # Alpine version to be used
|
|
# For which platforms/architectures will we try to build images
|
|
platforms: ["linux/amd64", "linux/arm64", "linux/arm/v7", "linux/arm/v6"]
|
|
# Determine the build images per OS/Arch
|
|
build_stage_image:
|
|
debian:
|
|
image: "docker.io/library/rust:{{rust_version}}-slim-{{debian_version}}"
|
|
platform: "$BUILDPLATFORM"
|
|
alpine:
|
|
image: "build_${TARGETARCH}${TARGETVARIANT}"
|
|
arch_image:
|
|
amd64: "ghcr.io/blackdex/rust-musl:x86_64-musl-stable-{{rust_version}}"
|
|
arm64: "ghcr.io/blackdex/rust-musl:aarch64-musl-stable-{{rust_version}}"
|
|
armv7: "ghcr.io/blackdex/rust-musl:armv7-musleabihf-stable-{{rust_version}}"
|
|
armv6: "ghcr.io/blackdex/rust-musl:arm-musleabi-stable-{{rust_version}}"
|
|
# The final image which will be used to distribute the container images
|
|
runtime_stage_image:
|
|
debian: "docker.io/library/debian:{{debian_version}}-slim"
|
|
alpine: "docker.io/library/alpine:{{alpine_version}}"
|