Skip to content

Commit 31d41d4

Browse files
authored
Merge branch 'main' into feature/balanced-channel
2 parents dff32cd + c7109f6 commit 31d41d4

File tree

31 files changed

+910
-363
lines changed

31 files changed

+910
-363
lines changed

CHANGELOG.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,44 @@
33

44
All notable changes to this project will be documented in this file.
55

6+
## [1.0.0-rc3](https://github.com/TraceMachina/nativelink/compare/v1.0.0-rc2..v1.0.0-rc3) - 2026-03-06
7+
8+
9+
10+
### ⛰️ Features
11+
12+
- Add json schema ([#2193](https://github.com/TraceMachina/nativelink/issues/2193)) - ([d926c47](https://github.com/TraceMachina/nativelink/commit/d926c4756a830e38c9b162c388e6fafcba091da7))
13+
14+
### 🐛 Bug Fixes
15+
16+
- Fix Redis to reconnect in Sentinel (Chris Staite) ([#2190](https://github.com/TraceMachina/nativelink/issues/2190)) - ([8783134](https://github.com/TraceMachina/nativelink/commit/87831340af3cfcb3cffbc4f43bc3da9ecf8c8467))
17+
- Fix worker inflight tasks heading ([#2177](https://github.com/TraceMachina/nativelink/issues/2177)) - ([8ae17ba](https://github.com/TraceMachina/nativelink/commit/8ae17bae0603d66102d171554f331e10a3e9ac9e))
18+
- Fix all the current clippy lints ([#2174](https://github.com/TraceMachina/nativelink/issues/2174)) - ([23611ca](https://github.com/TraceMachina/nativelink/commit/23611caa3966a1934d6a3a7da0007083bbc75d8b))
19+
20+
### 📚 Documentation
21+
22+
- Document max concurrent writes ([#2169](https://github.com/TraceMachina/nativelink/issues/2169)) - ([cedba0e](https://github.com/TraceMachina/nativelink/commit/cedba0e829daeb6affa601324ca7eacdcd4e7fea))
23+
- Document RPC timeouts in Redis config ([#2168](https://github.com/TraceMachina/nativelink/issues/2168)) - ([f0d12ff](https://github.com/TraceMachina/nativelink/commit/f0d12ffce777662eb23f898042393a2fac8f2952))
24+
- Document max inflight tasks ([#2167](https://github.com/TraceMachina/nativelink/issues/2167)) - ([2650680](https://github.com/TraceMachina/nativelink/commit/26506800e0bddfe9dd35008dfda279a2b19604df))
25+
26+
### 🧪 Testing & CI
27+
28+
- Fix Fast slow store Not Found error by returning failed precondition ([#2194](https://github.com/TraceMachina/nativelink/issues/2194)) - ([3354945](https://github.com/TraceMachina/nativelink/commit/3354945b1f0cb9aba7041ad6ffad0bb67def8d4f))
29+
- Flake update fixes ([#2192](https://github.com/TraceMachina/nativelink/issues/2192)) - ([a7d873a](https://github.com/TraceMachina/nativelink/commit/a7d873aca54ae62f0ce13fbbf3dc7817f9f82efa))
30+
- pre-commit rustfmt all files ([#2176](https://github.com/TraceMachina/nativelink/issues/2176)) - ([27fa965](https://github.com/TraceMachina/nativelink/commit/27fa9652baf9ed7cdbc248fd6591bf813a790f65))
31+
32+
### ⚙️ Miscellaneous
33+
34+
- Only display Baggage enduser.id when identity is present ([#2197](https://github.com/TraceMachina/nativelink/issues/2197)) - ([86b86e1](https://github.com/TraceMachina/nativelink/commit/86b86e15e8dcc3936a07d22feb10d088dc9ad4ae))
35+
- Prevent retry loop large uploads ([#2195](https://github.com/TraceMachina/nativelink/issues/2195)) - ([2a2ca64](https://github.com/TraceMachina/nativelink/commit/2a2ca6496af559a91207de3e384e338111138fd1))
36+
- If all workers are fully allocated, shortcut find workers ([#2130](https://github.com/TraceMachina/nativelink/issues/2130)) - ([faad8bb](https://github.com/TraceMachina/nativelink/commit/faad8bb038fefc439daca73978138b821084648c))
37+
38+
### ⬆️ Bumps & Version Updates
39+
40+
- Update module github.com/cloudflare/circl to v1.6.3 [SECURITY] ([#2191](https://github.com/TraceMachina/nativelink/issues/2191)) - ([77b13f0](https://github.com/TraceMachina/nativelink/commit/77b13f053a40e3f67cb202ff086ca0a9185907fb))
41+
- Update curl version in Dockerfiles ([#2189](https://github.com/TraceMachina/nativelink/issues/2189)) - ([c161433](https://github.com/TraceMachina/nativelink/commit/c161433702cd6b6a29a169e7516c06a60c1341f9))
42+
- Update grafana/grafana Docker tag to v12 ([#2182](https://github.com/TraceMachina/nativelink/issues/2182)) - ([658dd53](https://github.com/TraceMachina/nativelink/commit/658dd532c2275c888cfc03c2149fa805de8ecbc5))
43+
644
## [1.0.0-rc2](https://github.com/TraceMachina/nativelink/compare/v0.8.0..1.0.0-rc2) - 2026-02-16
745

846

Cargo.lock

Lines changed: 13 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ resolver = "2"
1010
edition = "2024"
1111
name = "nativelink"
1212
rust-version = "1.87.0"
13-
version = "1.0.0-rc2"
13+
version = "1.0.0-rc3"
1414

1515
[profile.release]
1616
lto = true

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module(
22
name = "nativelink",
3-
version = "1.0.0-rc2",
3+
version = "1.0.0-rc3",
44
compatibility_level = 0,
55
)
66

nativelink-config/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ lints.workspace = true
44
[package]
55
edition = "2024"
66
name = "nativelink-config"
7-
version = "1.0.0-rc2"
7+
version = "1.0.0-rc3"
88

99
[dependencies]
1010
nativelink-error = { path = "../nativelink-error" }

nativelink-error/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ autoexamples = false
88
autotests = false
99
edition = "2024"
1010
name = "nativelink-error"
11-
version = "1.0.0-rc2"
11+
version = "1.0.0-rc3"
1212

1313
[dependencies]
1414
nativelink-metric = { path = "../nativelink-metric" }

nativelink-macro/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ lints.workspace = true
44
[package]
55
edition = "2024"
66
name = "nativelink-macro"
7-
version = "1.0.0-rc2"
7+
version = "1.0.0-rc3"
88

99
[lib]
1010
proc-macro = true

nativelink-metric/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ lints.workspace = true
44
[package]
55
edition = "2024"
66
name = "nativelink-metric"
7-
version = "1.0.0-rc2"
7+
version = "1.0.0-rc3"
88

99
[dependencies]
1010
nativelink-metric-macro-derive = { path = "nativelink-metric-macro-derive" }

nativelink-proto/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
[package]
33
edition = "2024"
44
name = "nativelink-proto"
5-
version = "1.0.0-rc2"
5+
version = "1.0.0-rc3"
66

77
[lib]
88
name = "nativelink_proto"

nativelink-redis-tester/BUILD.bazel

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,12 @@ rust_library(
1414
"src/fake_redis.rs",
1515
"src/lib.rs",
1616
"src/pubsub.rs",
17+
"src/read_only_redis.rs",
1718
],
1819
visibility = ["//visibility:public"],
1920
deps = [
2021
"//nativelink-util",
22+
"@crates//:either",
2123
"@crates//:redis",
2224
"@crates//:redis-protocol",
2325
"@crates//:redis-test",

0 commit comments

Comments
 (0)