Skip to content

Commit cb486a6

Browse files
Release NativeLink v1.3.2 (#2377)
1 parent b98ae66 commit cb486a6

21 files changed

Lines changed: 63 additions & 41 deletions

File tree

CHANGELOG.md

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

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

6+
## [1.3.2](https://github.com/TraceMachina/nativelink/compare/v1.3.1..v1.3.2) - 2026-05-29
7+
8+
9+
10+
### 📚 Documentation
11+
12+
- remove base path URL in docs ([#2375](https://github.com/TraceMachina/nativelink/issues/2375)) - ([9bd088e](https://github.com/TraceMachina/nativelink/commit/9bd088eff672c4cf95164e475bab155b5c99b0db))
13+
- Bugfix/copy regressions ([#2371](https://github.com/TraceMachina/nativelink/issues/2371)) - ([2c54961](https://github.com/TraceMachina/nativelink/commit/2c5496173036773d205c5a39e75d0b7fc1a08c8a))
14+
15+
### 🧪 Testing & CI
16+
17+
- Fix fast-slow store optimisation ([#2373](https://github.com/TraceMachina/nativelink/issues/2373)) - ([2169fde](https://github.com/TraceMachina/nativelink/commit/2169fde722960fcc9aba44575dc8846c883b640f))
18+
19+
### ⚙️ Miscellaneous
20+
21+
- add CSS ambient declarations to work with TS6 ([#2374](https://github.com/TraceMachina/nativelink/issues/2374)) - ([84a7b07](https://github.com/TraceMachina/nativelink/commit/84a7b0750636254a836e8375b331d844f72d89d6))
22+
- fixing broken contact us button and start free buttons ([#2369](https://github.com/TraceMachina/nativelink/issues/2369)) - ([b157f0c](https://github.com/TraceMachina/nativelink/commit/b157f0c412184584d8326d0d7cedb17d315e4d5b))
23+
24+
### ⬆️ Bumps & Version Updates
25+
26+
- Add cache metrics ([#2344](https://github.com/TraceMachina/nativelink/issues/2344)) - ([9b016e5](https://github.com/TraceMachina/nativelink/commit/9b016e5b2a27f3d5c96993febfa27a5fe8b75b97))
27+
628
## [1.3.1](https://github.com/TraceMachina/nativelink/compare/v1.3.0..v1.3.1) - 2026-05-23
729

830

Cargo.lock

Lines changed: 13 additions & 13 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.93.1"
13-
version = "1.3.1"
13+
version = "1.3.2"
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.3.1",
3+
version = "1.3.2",
44
compatibility_level = 0,
55
)
66

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,14 +72,14 @@ for how to build the images yourself.
7272

7373
```bash
7474
curl -O \
75-
https://raw.githubusercontent.com/TraceMachina/nativelink/v1.3.0/nativelink-config/examples/basic_cas.json5
75+
https://raw.githubusercontent.com/TraceMachina/nativelink/v1.3.2/nativelink-config/examples/basic_cas.json5
7676

7777
# See https://github.com/TraceMachina/nativelink/pkgs/container/nativelink
7878
# to find the latest tag
7979
docker run \
8080
-v $(pwd)/basic_cas.json5:/config \
8181
-p 50051:50051 \
82-
ghcr.io/tracemachina/nativelink:v1.3.0 \
82+
ghcr.io/tracemachina/nativelink:v1.3.2 \
8383
config
8484
```
8585

@@ -88,15 +88,15 @@ docker run \
8888
```powershell
8989
# Download the configuration file
9090
Invoke-WebRequest `
91-
-Uri "https://raw.githubusercontent.com/TraceMachina/nativelink/v1.3.0/nativelink-config/examples/basic_cas.json5" `
91+
-Uri "https://raw.githubusercontent.com/TraceMachina/nativelink/v1.3.2/nativelink-config/examples/basic_cas.json5" `
9292
-OutFile "basic_cas.json5"
9393
9494
# Run the Docker container
9595
# Note: Adjust the path if the script is not run from the directory containing basic_cas.json
9696
docker run `
9797
-v ${PWD}/basic_cas.json5:/config `
9898
-p 50051:50051 `
99-
ghcr.io/tracemachina/nativelink:v1.3.0 `
99+
ghcr.io/tracemachina/nativelink:v1.3.2 `
100100
config
101101
```
102102

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.3.1"
7+
version = "1.3.2"
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
@@ -7,7 +7,7 @@ autobins = false
77
autoexamples = false
88
edition = "2024"
99
name = "nativelink-error"
10-
version = "1.3.1"
10+
version = "1.3.2"
1111

1212
[dependencies]
1313
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.3.1"
7+
version = "1.3.2"
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.3.1"
7+
version = "1.3.2"
88

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

nativelink-metric/nativelink-metric-macro-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
edition = "2024"
33
name = "nativelink-metric-macro-derive"
4-
version = "1.3.1"
4+
version = "1.3.2"
55

66
[lib]
77
proc-macro = true

0 commit comments

Comments
 (0)