mirror of
https://github.com/rustfs/rustfs.git
synced 2026-07-26 08:18:18 +00:00
chore(release): prepare 1.0.0-beta.6 (#3104)
* chore(release): prepare 1.0.0-beta.6 * ci(nix): harden flaky crate fetch handling * ci(nix): drop magic cache and force fallback * ci(nix): set explicit user-agent for crate fetch * ci(nix): adopt determinate nix workflow stack * ci(nix): add nix user-agent suffix for fetches * ci(nix): add flakehub cache and align determinate actions * ci(nix): pin determinate actions to release tags * ci(nix): disable flakehub auth path in CI cache * ci(nix): restore stable magic cache baseline * ci(nix): trust local magic cache substituter * ci(nix): stop forcing Node24 for JS actions * ci(nix): drop manual localhost cache config * ci(nix): adopt latest determinate flakehub stack * ci(nix): record latest determinate workflow state
This commit is contained in:
+34
-10
@@ -38,41 +38,65 @@ concurrency:
|
|||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
|
id-token: write
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
nix-validation:
|
nix-validation:
|
||||||
name: Nix Build & Check
|
name: Nix Build & Check
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
timeout-minutes: 60
|
timeout-minutes: 60
|
||||||
env:
|
permissions:
|
||||||
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true"
|
contents: read
|
||||||
|
id-token: write
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v6
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Install Nix
|
- name: Install Nix
|
||||||
uses: cachix/install-nix-action@v31
|
uses: DeterminateSystems/determinate-nix-action@v3.21.0
|
||||||
with:
|
with:
|
||||||
github_access_token: ${{ secrets.GITHUB_TOKEN }}
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
extra_nix_config: |
|
extra-conf: |
|
||||||
experimental-features = nix-command flakes
|
experimental-features = nix-command flakes
|
||||||
|
max-jobs = 1
|
||||||
|
|
||||||
- name: Setup Magic Nix Cache
|
- name: Cache Nix
|
||||||
uses: DeterminateSystems/magic-nix-cache-action@v13
|
uses: DeterminateSystems/flakehub-cache-action@v3.21.0
|
||||||
|
|
||||||
- name: Setup Flake Checker
|
- name: Check Nix Flake Inputs
|
||||||
uses: DeterminateSystems/flake-checker-action@v12
|
uses: DeterminateSystems/flake-checker-action@v12
|
||||||
|
with:
|
||||||
|
fail-mode: true
|
||||||
|
ignore-missing-flake-lock: false
|
||||||
|
|
||||||
- name: Verify Flake
|
- name: Verify Flake
|
||||||
run: |
|
run: |
|
||||||
echo "Checking flake structure and evaluation..."
|
echo "Checking flake structure and evaluation..."
|
||||||
nix flake show
|
nix flake show
|
||||||
nix flake check --print-build-logs
|
for attempt in 1 2 3; do
|
||||||
|
if nix flake check --print-build-logs --fallback --option fallback true; then
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
if [ "$attempt" -eq 3 ]; then
|
||||||
|
echo "nix flake check failed after 3 attempts."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
sleep $((attempt * 15))
|
||||||
|
done
|
||||||
|
|
||||||
- name: Build RustFS
|
- name: Build RustFS
|
||||||
run: |
|
run: |
|
||||||
echo "Building the default package..."
|
echo "Building the default package..."
|
||||||
nix build .#default --print-build-logs
|
for attempt in 1 2 3; do
|
||||||
|
if nix build .#default --print-build-logs --fallback --option fallback true; then
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
if [ "$attempt" -eq 3 ]; then
|
||||||
|
echo "nix build failed after 3 attempts."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
sleep $((attempt * 15))
|
||||||
|
done
|
||||||
|
|
||||||
- name: Test Binary
|
- name: Test Binary
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
Generated
+38
-38
@@ -3614,7 +3614,7 @@ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "e2e_test"
|
name = "e2e_test"
|
||||||
version = "1.0.0-beta.4"
|
version = "1.0.0-beta.6"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"astral-tokio-tar",
|
"astral-tokio-tar",
|
||||||
@@ -9055,7 +9055,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustfs"
|
name = "rustfs"
|
||||||
version = "1.0.0-beta.4"
|
version = "1.0.0-beta.6"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"aes-gcm",
|
"aes-gcm",
|
||||||
"anyhow",
|
"anyhow",
|
||||||
@@ -9174,7 +9174,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustfs-audit"
|
name = "rustfs-audit"
|
||||||
version = "1.0.0-beta.4"
|
version = "1.0.0-beta.6"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"async-trait",
|
"async-trait",
|
||||||
"chrono",
|
"chrono",
|
||||||
@@ -9197,7 +9197,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustfs-checksums"
|
name = "rustfs-checksums"
|
||||||
version = "1.0.0-beta.4"
|
version = "1.0.0-beta.6"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"base64-simd",
|
"base64-simd",
|
||||||
"bytes",
|
"bytes",
|
||||||
@@ -9211,7 +9211,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustfs-common"
|
name = "rustfs-common"
|
||||||
version = "1.0.0-beta.4"
|
version = "1.0.0-beta.6"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"chrono",
|
"chrono",
|
||||||
"metrics",
|
"metrics",
|
||||||
@@ -9226,7 +9226,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustfs-concurrency"
|
name = "rustfs-concurrency"
|
||||||
version = "1.0.0-beta.4"
|
version = "1.0.0-beta.6"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"rustfs-io-core",
|
"rustfs-io-core",
|
||||||
"rustfs-io-metrics",
|
"rustfs-io-metrics",
|
||||||
@@ -9238,14 +9238,14 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustfs-config"
|
name = "rustfs-config"
|
||||||
version = "1.0.0-beta.4"
|
version = "1.0.0-beta.6"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"const-str",
|
"const-str",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustfs-credentials"
|
name = "rustfs-credentials"
|
||||||
version = "1.0.0-beta.4"
|
version = "1.0.0-beta.6"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"base64-simd",
|
"base64-simd",
|
||||||
"hmac 0.13.0",
|
"hmac 0.13.0",
|
||||||
@@ -9258,7 +9258,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustfs-crypto"
|
name = "rustfs-crypto"
|
||||||
version = "1.0.0-beta.4"
|
version = "1.0.0-beta.6"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"aes-gcm",
|
"aes-gcm",
|
||||||
"argon2",
|
"argon2",
|
||||||
@@ -9278,7 +9278,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustfs-data-usage"
|
name = "rustfs-data-usage"
|
||||||
version = "1.0.0-beta.4"
|
version = "1.0.0-beta.6"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"async-trait",
|
"async-trait",
|
||||||
"path-clean",
|
"path-clean",
|
||||||
@@ -9289,7 +9289,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustfs-ecstore"
|
name = "rustfs-ecstore"
|
||||||
version = "1.0.0-beta.4"
|
version = "1.0.0-beta.6"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"aes-gcm",
|
"aes-gcm",
|
||||||
"async-channel",
|
"async-channel",
|
||||||
@@ -9393,7 +9393,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustfs-filemeta"
|
name = "rustfs-filemeta"
|
||||||
version = "1.0.0-beta.4"
|
version = "1.0.0-beta.6"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"arc-swap",
|
"arc-swap",
|
||||||
"byteorder",
|
"byteorder",
|
||||||
@@ -9417,7 +9417,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustfs-heal"
|
name = "rustfs-heal"
|
||||||
version = "1.0.0-beta.4"
|
version = "1.0.0-beta.6"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"async-trait",
|
"async-trait",
|
||||||
@@ -9445,7 +9445,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustfs-iam"
|
name = "rustfs-iam"
|
||||||
version = "1.0.0-beta.4"
|
version = "1.0.0-beta.6"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"arc-swap",
|
"arc-swap",
|
||||||
"async-trait",
|
"async-trait",
|
||||||
@@ -9479,7 +9479,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustfs-io-core"
|
name = "rustfs-io-core"
|
||||||
version = "1.0.0-beta.4"
|
version = "1.0.0-beta.6"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bytes",
|
"bytes",
|
||||||
"memmap2 0.9.10",
|
"memmap2 0.9.10",
|
||||||
@@ -9490,7 +9490,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustfs-io-metrics"
|
name = "rustfs-io-metrics"
|
||||||
version = "1.0.0-beta.4"
|
version = "1.0.0-beta.6"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"criterion",
|
"criterion",
|
||||||
"metrics",
|
"metrics",
|
||||||
@@ -9552,7 +9552,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustfs-keystone"
|
name = "rustfs-keystone"
|
||||||
version = "1.0.0-beta.4"
|
version = "1.0.0-beta.6"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bytes",
|
"bytes",
|
||||||
"futures",
|
"futures",
|
||||||
@@ -9577,7 +9577,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustfs-kms"
|
name = "rustfs-kms"
|
||||||
version = "1.0.0-beta.4"
|
version = "1.0.0-beta.6"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"aes-gcm",
|
"aes-gcm",
|
||||||
"arc-swap",
|
"arc-swap",
|
||||||
@@ -9606,7 +9606,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustfs-lock"
|
name = "rustfs-lock"
|
||||||
version = "1.0.0-beta.4"
|
version = "1.0.0-beta.6"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"async-trait",
|
"async-trait",
|
||||||
"crossbeam-queue",
|
"crossbeam-queue",
|
||||||
@@ -9627,7 +9627,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustfs-madmin"
|
name = "rustfs-madmin"
|
||||||
version = "1.0.0-beta.4"
|
version = "1.0.0-beta.6"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"chrono",
|
"chrono",
|
||||||
"humantime",
|
"humantime",
|
||||||
@@ -9640,7 +9640,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustfs-notify"
|
name = "rustfs-notify"
|
||||||
version = "1.0.0-beta.4"
|
version = "1.0.0-beta.6"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"arc-swap",
|
"arc-swap",
|
||||||
"async-trait",
|
"async-trait",
|
||||||
@@ -9674,7 +9674,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustfs-object-capacity"
|
name = "rustfs-object-capacity"
|
||||||
version = "1.0.0-beta.4"
|
version = "1.0.0-beta.6"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"criterion",
|
"criterion",
|
||||||
"futures",
|
"futures",
|
||||||
@@ -9692,7 +9692,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustfs-obs"
|
name = "rustfs-obs"
|
||||||
version = "1.0.0-beta.4"
|
version = "1.0.0-beta.6"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"chrono",
|
"chrono",
|
||||||
"crossbeam-channel",
|
"crossbeam-channel",
|
||||||
@@ -9738,7 +9738,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustfs-policy"
|
name = "rustfs-policy"
|
||||||
version = "1.0.0-beta.4"
|
version = "1.0.0-beta.6"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"async-trait",
|
"async-trait",
|
||||||
"base64-simd",
|
"base64-simd",
|
||||||
@@ -9766,7 +9766,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustfs-protocols"
|
name = "rustfs-protocols"
|
||||||
version = "1.0.0-beta.4"
|
version = "1.0.0-beta.6"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"astral-tokio-tar",
|
"astral-tokio-tar",
|
||||||
"async-compression",
|
"async-compression",
|
||||||
@@ -9824,7 +9824,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustfs-protos"
|
name = "rustfs-protos"
|
||||||
version = "1.0.0-beta.4"
|
version = "1.0.0-beta.6"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"flatbuffers",
|
"flatbuffers",
|
||||||
"prost 0.14.3",
|
"prost 0.14.3",
|
||||||
@@ -9842,7 +9842,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustfs-rio"
|
name = "rustfs-rio"
|
||||||
version = "1.0.0-beta.4"
|
version = "1.0.0-beta.6"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"aes-gcm",
|
"aes-gcm",
|
||||||
"axum",
|
"axum",
|
||||||
@@ -9877,14 +9877,14 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustfs-s3-ops"
|
name = "rustfs-s3-ops"
|
||||||
version = "1.0.0-beta.4"
|
version = "1.0.0-beta.6"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"rustfs-s3-types",
|
"rustfs-s3-types",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustfs-s3-types"
|
name = "rustfs-s3-types"
|
||||||
version = "1.0.0-beta.4"
|
version = "1.0.0-beta.6"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"serde",
|
"serde",
|
||||||
"serde_json",
|
"serde_json",
|
||||||
@@ -9892,7 +9892,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustfs-s3select-api"
|
name = "rustfs-s3select-api"
|
||||||
version = "1.0.0-beta.4"
|
version = "1.0.0-beta.6"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"async-trait",
|
"async-trait",
|
||||||
"bytes",
|
"bytes",
|
||||||
@@ -9919,7 +9919,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustfs-s3select-query"
|
name = "rustfs-s3select-query"
|
||||||
version = "1.0.0-beta.4"
|
version = "1.0.0-beta.6"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"async-recursion",
|
"async-recursion",
|
||||||
"async-trait",
|
"async-trait",
|
||||||
@@ -9936,7 +9936,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustfs-scanner"
|
name = "rustfs-scanner"
|
||||||
version = "1.0.0-beta.4"
|
version = "1.0.0-beta.6"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"async-trait",
|
"async-trait",
|
||||||
"chrono",
|
"chrono",
|
||||||
@@ -9967,7 +9967,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustfs-signer"
|
name = "rustfs-signer"
|
||||||
version = "1.0.0-beta.4"
|
version = "1.0.0-beta.6"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"base64-simd",
|
"base64-simd",
|
||||||
"bytes",
|
"bytes",
|
||||||
@@ -9983,7 +9983,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustfs-targets"
|
name = "rustfs-targets"
|
||||||
version = "1.0.0-beta.4"
|
version = "1.0.0-beta.6"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"arc-swap",
|
"arc-swap",
|
||||||
"async-nats",
|
"async-nats",
|
||||||
@@ -10029,7 +10029,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustfs-tls-runtime"
|
name = "rustfs-tls-runtime"
|
||||||
version = "1.0.0-beta.4"
|
version = "1.0.0-beta.6"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"arc-swap",
|
"arc-swap",
|
||||||
"metrics",
|
"metrics",
|
||||||
@@ -10049,7 +10049,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustfs-trusted-proxies"
|
name = "rustfs-trusted-proxies"
|
||||||
version = "1.0.0-beta.4"
|
version = "1.0.0-beta.6"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"async-trait",
|
"async-trait",
|
||||||
"axum",
|
"axum",
|
||||||
@@ -10073,7 +10073,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustfs-utils"
|
name = "rustfs-utils"
|
||||||
version = "1.0.0-beta.4"
|
version = "1.0.0-beta.6"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"base64-simd",
|
"base64-simd",
|
||||||
"blake2 0.11.0-rc.6",
|
"blake2 0.11.0-rc.6",
|
||||||
@@ -10111,7 +10111,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustfs-zip"
|
name = "rustfs-zip"
|
||||||
version = "1.0.0-beta.4"
|
version = "1.0.0-beta.6"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"astral-tokio-tar",
|
"astral-tokio-tar",
|
||||||
"async-compression",
|
"async-compression",
|
||||||
|
|||||||
+38
-38
@@ -60,7 +60,7 @@ edition = "2024"
|
|||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
repository = "https://github.com/rustfs/rustfs"
|
repository = "https://github.com/rustfs/rustfs"
|
||||||
rust-version = "1.95.0"
|
rust-version = "1.95.0"
|
||||||
version = "1.0.0-beta.4"
|
version = "1.0.0-beta.6"
|
||||||
homepage = "https://rustfs.com"
|
homepage = "https://rustfs.com"
|
||||||
description = "RustFS is a high-performance distributed object storage software built using Rust, one of the most popular languages worldwide. "
|
description = "RustFS is a high-performance distributed object storage software built using Rust, one of the most popular languages worldwide. "
|
||||||
keywords = ["RustFS", "Minio", "object-storage", "filesystem", "s3"]
|
keywords = ["RustFS", "Minio", "object-storage", "filesystem", "s3"]
|
||||||
@@ -77,43 +77,43 @@ redundant_clone = "warn"
|
|||||||
|
|
||||||
[workspace.dependencies]
|
[workspace.dependencies]
|
||||||
# RustFS Internal Crates
|
# RustFS Internal Crates
|
||||||
rustfs = { path = "./rustfs", version = "1.0.0-beta.4" }
|
rustfs = { path = "./rustfs", version = "1.0.0-beta.6" }
|
||||||
rustfs-heal = { path = "crates/heal", version = "1.0.0-beta.4" }
|
rustfs-heal = { path = "crates/heal", version = "1.0.0-beta.6" }
|
||||||
rustfs-audit = { path = "crates/audit", version = "1.0.0-beta.4" }
|
rustfs-audit = { path = "crates/audit", version = "1.0.0-beta.6" }
|
||||||
rustfs-checksums = { path = "crates/checksums", version = "1.0.0-beta.4" }
|
rustfs-checksums = { path = "crates/checksums", version = "1.0.0-beta.6" }
|
||||||
rustfs-common = { path = "crates/common", version = "1.0.0-beta.4" }
|
rustfs-common = { path = "crates/common", version = "1.0.0-beta.6" }
|
||||||
rustfs-data-usage = { path = "crates/data-usage", version = "1.0.0-beta.4" }
|
rustfs-data-usage = { path = "crates/data-usage", version = "1.0.0-beta.6" }
|
||||||
rustfs-config = { path = "./crates/config", version = "1.0.0-beta.4" }
|
rustfs-config = { path = "./crates/config", version = "1.0.0-beta.6" }
|
||||||
rustfs-concurrency = { path = "./crates/concurrency", version = "1.0.0-beta.4" }
|
rustfs-concurrency = { path = "./crates/concurrency", version = "1.0.0-beta.6" }
|
||||||
rustfs-credentials = { path = "crates/credentials", version = "1.0.0-beta.4" }
|
rustfs-credentials = { path = "crates/credentials", version = "1.0.0-beta.6" }
|
||||||
rustfs-crypto = { path = "crates/crypto", version = "1.0.0-beta.4" }
|
rustfs-crypto = { path = "crates/crypto", version = "1.0.0-beta.6" }
|
||||||
rustfs-ecstore = { path = "crates/ecstore", version = "1.0.0-beta.4" }
|
rustfs-ecstore = { path = "crates/ecstore", version = "1.0.0-beta.6" }
|
||||||
rustfs-filemeta = { path = "crates/filemeta", version = "1.0.0-beta.4" }
|
rustfs-filemeta = { path = "crates/filemeta", version = "1.0.0-beta.6" }
|
||||||
rustfs-iam = { path = "crates/iam", version = "1.0.0-beta.4" }
|
rustfs-iam = { path = "crates/iam", version = "1.0.0-beta.6" }
|
||||||
rustfs-keystone = { path = "crates/keystone", version = "1.0.0-beta.4" }
|
rustfs-keystone = { path = "crates/keystone", version = "1.0.0-beta.6" }
|
||||||
rustfs-kms = { path = "crates/kms", version = "1.0.0-beta.4" }
|
rustfs-kms = { path = "crates/kms", version = "1.0.0-beta.6" }
|
||||||
rustfs-lock = { path = "crates/lock", version = "1.0.0-beta.4" }
|
rustfs-lock = { path = "crates/lock", version = "1.0.0-beta.6" }
|
||||||
rustfs-madmin = { path = "crates/madmin", version = "1.0.0-beta.4" }
|
rustfs-madmin = { path = "crates/madmin", version = "1.0.0-beta.6" }
|
||||||
rustfs-notify = { path = "crates/notify", version = "1.0.0-beta.4" }
|
rustfs-notify = { path = "crates/notify", version = "1.0.0-beta.6" }
|
||||||
rustfs-io-metrics = { path = "crates/io-metrics", version = "1.0.0-beta.4" }
|
rustfs-io-metrics = { path = "crates/io-metrics", version = "1.0.0-beta.6" }
|
||||||
rustfs-io-core = { path = "crates/io-core", version = "1.0.0-beta.4" }
|
rustfs-io-core = { path = "crates/io-core", version = "1.0.0-beta.6" }
|
||||||
rustfs-object-capacity = { path = "crates/object-capacity", version = "1.0.0-beta.4" }
|
rustfs-object-capacity = { path = "crates/object-capacity", version = "1.0.0-beta.6" }
|
||||||
rustfs-obs = { path = "crates/obs", version = "1.0.0-beta.4" }
|
rustfs-obs = { path = "crates/obs", version = "1.0.0-beta.6" }
|
||||||
rustfs-policy = { path = "crates/policy", version = "1.0.0-beta.4" }
|
rustfs-policy = { path = "crates/policy", version = "1.0.0-beta.6" }
|
||||||
rustfs-protos = { path = "crates/protos", version = "1.0.0-beta.4" }
|
rustfs-protos = { path = "crates/protos", version = "1.0.0-beta.6" }
|
||||||
rustfs-protocols = { path = "crates/protocols", version = "1.0.0-beta.4" }
|
rustfs-protocols = { path = "crates/protocols", version = "1.0.0-beta.6" }
|
||||||
rustfs-rio = { path = "crates/rio", version = "1.0.0-beta.4" }
|
rustfs-rio = { path = "crates/rio", version = "1.0.0-beta.6" }
|
||||||
rustfs-s3-types = { path = "crates/s3-types", version = "1.0.0-beta.4" }
|
rustfs-s3-types = { path = "crates/s3-types", version = "1.0.0-beta.6" }
|
||||||
rustfs-s3-ops = { path = "crates/s3-ops", version = "1.0.0-beta.4" }
|
rustfs-s3-ops = { path = "crates/s3-ops", version = "1.0.0-beta.6" }
|
||||||
rustfs-s3select-api = { path = "crates/s3select-api", version = "1.0.0-beta.4" }
|
rustfs-s3select-api = { path = "crates/s3select-api", version = "1.0.0-beta.6" }
|
||||||
rustfs-s3select-query = { path = "crates/s3select-query", version = "1.0.0-beta.4" }
|
rustfs-s3select-query = { path = "crates/s3select-query", version = "1.0.0-beta.6" }
|
||||||
rustfs-scanner = { path = "crates/scanner", version = "1.0.0-beta.4" }
|
rustfs-scanner = { path = "crates/scanner", version = "1.0.0-beta.6" }
|
||||||
rustfs-signer = { path = "crates/signer", version = "1.0.0-beta.4" }
|
rustfs-signer = { path = "crates/signer", version = "1.0.0-beta.6" }
|
||||||
rustfs-trusted-proxies = { path = "crates/trusted-proxies", version = "1.0.0-beta.4" }
|
rustfs-trusted-proxies = { path = "crates/trusted-proxies", version = "1.0.0-beta.6" }
|
||||||
rustfs-targets = { path = "crates/targets", version = "1.0.0-beta.4" }
|
rustfs-targets = { path = "crates/targets", version = "1.0.0-beta.6" }
|
||||||
rustfs-tls-runtime = { path = "crates/tls-runtime", version = "1.0.0-beta.4" }
|
rustfs-tls-runtime = { path = "crates/tls-runtime", version = "1.0.0-beta.6" }
|
||||||
rustfs-utils = { path = "crates/utils", version = "1.0.0-beta.4" }
|
rustfs-utils = { path = "crates/utils", version = "1.0.0-beta.6" }
|
||||||
rustfs-zip = { path = "./crates/zip", version = "1.0.0-beta.4" }
|
rustfs-zip = { path = "./crates/zip", version = "1.0.0-beta.6" }
|
||||||
|
|
||||||
# Async Runtime and Networking
|
# Async Runtime and Networking
|
||||||
async-channel = "2.5.0"
|
async-channel = "2.5.0"
|
||||||
|
|||||||
@@ -116,7 +116,7 @@ chown -R 10001:10001 data logs
|
|||||||
docker run -d -p 9000:9000 -p 9001:9001 -v $(pwd)/data:/data -v $(pwd)/logs:/logs rustfs/rustfs:latest
|
docker run -d -p 9000:9000 -p 9001:9001 -v $(pwd)/data:/data -v $(pwd)/logs:/logs rustfs/rustfs:latest
|
||||||
|
|
||||||
# Using specific version
|
# Using specific version
|
||||||
docker run -d -p 9000:9000 -p 9001:9001 -v $(pwd)/data:/data -v $(pwd)/logs:/logs rustfs/rustfs:1.0.0-beta.4
|
docker run -d -p 9000:9000 -p 9001:9001 -v $(pwd)/data:/data -v $(pwd)/logs:/logs rustfs/rustfs:1.0.0-beta.6
|
||||||
```
|
```
|
||||||
|
|
||||||
If you use [podman](https://github.com/containers/podman) instead of docker, you can install the RustFS with the below command
|
If you use [podman](https://github.com/containers/podman) instead of docker, you can install the RustFS with the below command
|
||||||
|
|||||||
+1
-1
@@ -113,7 +113,7 @@ RustFS 容器以非 root 用户 `rustfs` (UID `10001`) 运行。如果您使用
|
|||||||
docker run -d -p 9000:9000 -p 9001:9001 -v $(pwd)/data:/data -v $(pwd)/logs:/logs rustfs/rustfs:latest
|
docker run -d -p 9000:9000 -p 9001:9001 -v $(pwd)/data:/data -v $(pwd)/logs:/logs rustfs/rustfs:latest
|
||||||
|
|
||||||
# 使用指定版本运行
|
# 使用指定版本运行
|
||||||
docker run -d -p 9000:9000 -p 9001:9001 -v $(pwd)/data:/data -v $(pwd)/logs:/logs rustfs/rustfs:1.0.0-beta.4
|
docker run -d -p 9000:9000 -p 9001:9001 -v $(pwd)/data:/data -v $(pwd)/logs:/logs rustfs/rustfs:1.0.0-beta.6
|
||||||
```
|
```
|
||||||
|
|
||||||
您也可以使用 Docker Compose。使用根目录下的 `docker-compose.yml` 文件:
|
您也可以使用 Docker Compose。使用根目录下的 `docker-compose.yml` 文件:
|
||||||
|
|||||||
@@ -60,7 +60,7 @@
|
|||||||
{
|
{
|
||||||
default = rustPlatform.buildRustPackage {
|
default = rustPlatform.buildRustPackage {
|
||||||
pname = "rustfs";
|
pname = "rustfs";
|
||||||
version = "1.0.0-beta.4";
|
version = "1.0.0-beta.6";
|
||||||
|
|
||||||
src = ./.;
|
src = ./.;
|
||||||
|
|
||||||
|
|||||||
@@ -2,8 +2,8 @@ apiVersion: v2
|
|||||||
name: rustfs
|
name: rustfs
|
||||||
description: RustFS helm chart to deploy RustFS on kubernetes cluster.
|
description: RustFS helm chart to deploy RustFS on kubernetes cluster.
|
||||||
type: application
|
type: application
|
||||||
version: "0.4.1"
|
version: "0.6.0"
|
||||||
appVersion: "1.0.0-beta.4"
|
appVersion: "1.0.0-beta.6"
|
||||||
home: https://rustfs.com
|
home: https://rustfs.com
|
||||||
icon: https://media.sys.truenas.net/apps/rustfs/icons/icon.svg
|
icon: https://media.sys.truenas.net/apps/rustfs/icons/icon.svg
|
||||||
maintainers:
|
maintainers:
|
||||||
|
|||||||
+4
-1
@@ -2,7 +2,7 @@
|
|||||||
%global _empty_manifest_terminate_build 0
|
%global _empty_manifest_terminate_build 0
|
||||||
Name: rustfs
|
Name: rustfs
|
||||||
Version: 1.0.0
|
Version: 1.0.0
|
||||||
Release: beta.4
|
Release: beta.6
|
||||||
Summary: High-performance distributed object storage for MinIO alternative
|
Summary: High-performance distributed object storage for MinIO alternative
|
||||||
|
|
||||||
License: Apache-2.0
|
License: Apache-2.0
|
||||||
@@ -57,6 +57,9 @@ install %_builddir/%{name}-%{version}-%{release}/target/%_arch/%_arch-unknown-li
|
|||||||
%_bindir/rustfs
|
%_bindir/rustfs
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu May 28 2026 houseme <housemecn@gmail.com>
|
||||||
|
- Update RPM package to RustFS 1.0.0-beta.6
|
||||||
|
|
||||||
* Thu May 20 2026 houseme <housemecn@gmail.com>
|
* Thu May 20 2026 houseme <housemecn@gmail.com>
|
||||||
- Update RPM package to RustFS 1.0.0-beta.4
|
- Update RPM package to RustFS 1.0.0-beta.4
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user