Skip to content

Commit 6dd32e5

Browse files
committed
Merge remote-tracking branch 'origin/main' into allow-downloader-config
2 parents b3c060c + 0308a77 commit 6dd32e5

20 files changed

+506
-550
lines changed

.github/workflows/ci.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ jobs:
157157
with:
158158
fetch-depth: 0
159159
- name: Install sccache
160-
uses: mozilla-actions/[email protected].7
160+
uses: mozilla-actions/[email protected].9
161161

162162
- name: Setup Environment (PR)
163163
if: ${{ github.event_name == 'pull_request' }}
@@ -189,7 +189,7 @@ jobs:
189189
- uses: dtolnay/rust-toolchain@stable
190190
with:
191191
components: rustfmt
192-
- uses: mozilla-actions/[email protected].7
192+
- uses: mozilla-actions/[email protected].9
193193
- uses: taiki-e/install-action@cargo-make
194194
- run: cargo make format-check
195195

@@ -206,7 +206,7 @@ jobs:
206206
with:
207207
toolchain: nightly-2024-11-30
208208
- name: Install sccache
209-
uses: mozilla-actions/[email protected].7
209+
uses: mozilla-actions/[email protected].9
210210

211211
- name: Docs
212212
run: cargo doc --workspace --all-features --no-deps --document-private-items
@@ -225,7 +225,7 @@ jobs:
225225
with:
226226
components: clippy
227227
- name: Install sccache
228-
uses: mozilla-actions/[email protected].7
228+
uses: mozilla-actions/[email protected].9
229229

230230
# TODO: We have a bunch of platform-dependent code so should
231231
# probably run this job on the full platform matrix
@@ -252,7 +252,7 @@ jobs:
252252
with:
253253
toolchain: ${{ env.MSRV }}
254254
- name: Install sccache
255-
uses: mozilla-actions/[email protected].7
255+
uses: mozilla-actions/[email protected].9
256256

257257
- name: Check MSRV all features
258258
run: |

.github/workflows/docs.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
with:
3535
toolchain: nightly-2024-11-30
3636
- name: Install sccache
37-
uses: mozilla-actions/[email protected].7
37+
uses: mozilla-actions/[email protected].9
3838

3939
- name: Generate Docs
4040
run: cargo doc --workspace --all-features --no-deps

.github/workflows/flaky.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
echo "$failure" >> $GITHUB_OUTPUT
8888
done
8989
echo "" >> $GITHUB_OUTPUT
90-
echo "See https://github.com/n0-computer/iroh/actions/workflows/flaky.yaml" >> $GITHUB_OUTPUT
90+
echo "See https://github.com/${{ github.repository }}/actions/workflows/flaky.yaml" >> $GITHUB_OUTPUT
9191
echo "$EOF" >> $GITHUB_OUTPUT
9292
- name: Notify discord on failure
9393
uses: n0-computer/discord-webhook-notify@v1

.github/workflows/tests.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
7070

7171
- name: Install sccache
72-
uses: mozilla-actions/[email protected].7
72+
uses: mozilla-actions/[email protected].9
7373

7474
- name: Select features
7575
run: |
@@ -199,7 +199,7 @@ jobs:
199199
}
200200
201201
- name: Install sccache
202-
uses: mozilla-actions/[email protected].7
202+
uses: mozilla-actions/[email protected].9
203203

204204
- uses: msys2/setup-msys2@v2
205205

CHANGELOG.md

+24
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,30 @@
22

33
All notable changes to iroh-blobs will be documented in this file.
44

5+
## [0.34.1](https://github.com/n0-computer/iroh-blobs/compare/v0.34.0..0.34.1) - 2025-04-07
6+
7+
### ⛰️ Features
8+
9+
- Boxed client ([#80](https://github.com/n0-computer/iroh-blobs/issues/80)) - ([d8521b4](https://github.com/n0-computer/iroh-blobs/commit/d8521b44cf148c1f6d700067726c1b4e40a0ac27))
10+
11+
### ⚙️ Miscellaneous Tasks
12+
13+
- Update bao-tree dependency and get rid of iroh-blake3 dep ([#81](https://github.com/n0-computer/iroh-blobs/issues/81)) - ([2e823f6](https://github.com/n0-computer/iroh-blobs/commit/2e823f697a251df8d59fcda7bb3b25aa755eff6c))
14+
15+
## [0.34.0](https://github.com/n0-computer/iroh-blobs/compare/v0.33.1..0.34.0) - 2025-03-18
16+
17+
### ⛰️ Features
18+
19+
- Richer tags api ([#69](https://github.com/n0-computer/iroh-blobs/issues/69)) - ([387c68c](https://github.com/n0-computer/iroh-blobs/commit/387c68cc4d084b7067bfedae341abb277eaac8c0))
20+
- Modify Downloader config through Blobs builder ([#75](https://github.com/n0-computer/iroh-blobs/issues/75)) - ([6e9f06b](https://github.com/n0-computer/iroh-blobs/commit/6e9f06b48a97957550e2343694966ac2fee07f39))
21+
- Enable RPC by default ([#73](https://github.com/n0-computer/iroh-blobs/issues/73)) - ([b1029e2](https://github.com/n0-computer/iroh-blobs/commit/b1029e2f5542b56525d53365b040d874549d9fe7))
22+
23+
### ⚙️ Miscellaneous Tasks
24+
25+
- *(deps)* Bump mozilla-actions/sccache-action from 0.0.7 to 0.0.8 in the github-actions group ([#66](https://github.com/n0-computer/iroh-blobs/issues/66)) - ([3e9662c](https://github.com/n0-computer/iroh-blobs/commit/3e9662c9cdb4948f9f8c59e7c74ce6eca7942cf9))
26+
- Update to latest iroh ([#77](https://github.com/n0-computer/iroh-blobs/issues/77)) - ([253a8c6](https://github.com/n0-computer/iroh-blobs/commit/253a8c6bf05db30bf39485822f0e2114481e26ce))
27+
- Update lockfile - ([65a84bb](https://github.com/n0-computer/iroh-blobs/commit/65a84bb011e543e3b752b5d7eda1c5f3c1eba481))
28+
529
## [0.33.1](https://github.com/n0-computer/iroh-blobs/compare/v0.33.0..0.33.1) - 2025-03-11
630

731
### 🐛 Bug Fixes

0 commit comments

Comments
 (0)