Skip to content

Commit b43e013

Browse files
author
“ramfox”
committed
chore: Release
1 parent 592c3b5 commit b43e013

File tree

7 files changed

+37
-13
lines changed

7 files changed

+37
-13
lines changed

CHANGELOG.md

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,30 @@
22

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

5-
## [0.34.0](https://github.com/n0-computer/iroh/compare/v0.33.0..0.34.0) - 2025-03-17
5+
## [0.34.1](https://github.com/n0-computer/iroh/compare/v0.34.0..0.34.1) - 2025-04-07
6+
7+
### ⛰️ Features
8+
9+
- *(iroh)* Move `iroh-net-report` back into `iroh` ([#3251](https://github.com/n0-computer/iroh/issues/3251)) - ([d6bc83f](https://github.com/n0-computer/iroh/commit/d6bc83faa23666ecbc4c3a7506004ace9f95614f))
10+
- *(iroh-relay)* Allow to authenticate nodes via a HTTP POST request ([#3246](https://github.com/n0-computer/iroh/issues/3246)) - ([592c3b5](https://github.com/n0-computer/iroh/commit/592c3b541d4bf9081ed364875d514950490dd88b))
11+
12+
### 🐛 Bug Fixes
13+
14+
- *(iroh)* Reduce log-level of unknown pong message ([#3242](https://github.com/n0-computer/iroh/issues/3242)) - ([cf3e650](https://github.com/n0-computer/iroh/commit/cf3e650694ba94224adfe0ee961d9f471a042650))
15+
- *(iroh)* Reap ActiveRelayActor handles for idle relays ([#3249](https://github.com/n0-computer/iroh/issues/3249)) - ([528a32c](https://github.com/n0-computer/iroh/commit/528a32c215289e622367bb0cbdb2dee543d8e217))
16+
- Backoff before retry if relay connection terminates ([#3254](https://github.com/n0-computer/iroh/issues/3254)) - ([bc6e98c](https://github.com/n0-computer/iroh/commit/bc6e98cae6f1893f4888eae613b7645e941365a6))
17+
18+
### ⚙️ Miscellaneous Tasks
19+
20+
- *(iroh)* Update from alpha to release 0.25 hickory ([#3256](https://github.com/n0-computer/iroh/issues/3256)) - ([26289ca](https://github.com/n0-computer/iroh/commit/26289ca230cf21f188f92638adecc43d9ca1bfd1))
21+
- *(iroh)* Don't depend on unused `rustls-platform-verifier` dependency ([#3257](https://github.com/n0-computer/iroh/issues/3257)) - ([42b605e](https://github.com/n0-computer/iroh/commit/42b605e53d89c89faf0f63a86bf48d0039ea53b4))
22+
- *(iroh-relay)* Fix README.md instuctions to enable `server` feature ([#3239](https://github.com/n0-computer/iroh/issues/3239)) - ([7588135](https://github.com/n0-computer/iroh/commit/7588135441b72f718ca4ed460d351441e89c4a8b))
23+
24+
### Deps
25+
26+
- Bump tokio to 1.44.2 ([#3259](https://github.com/n0-computer/iroh/issues/3259)) - ([e109e6d](https://github.com/n0-computer/iroh/commit/e109e6de2ab5ab9118dcabadfadd2744762a0672))
27+
28+
## [0.34.0](https://github.com/n0-computer/iroh/compare/v0.33.0..v0.34.0) - 2025-03-17
629

730
### ⛰️ Features
831

@@ -31,6 +54,7 @@ All notable changes to iroh will be documented in this file.
3154
### ⚙️ Miscellaneous Tasks
3255

3356
- Switch from `backoff` to `backon` ([#3227](https://github.com/n0-computer/iroh/issues/3227)) - ([14795ab](https://github.com/n0-computer/iroh/commit/14795ab89747ec72868fad07f91424b8a408b45c))
57+
- Release - ([82eb549](https://github.com/n0-computer/iroh/commit/82eb5492cc973ed8cd00aa3254761561a419908b))
3458

3559
## [0.33.0](https://github.com/n0-computer/iroh/compare/v0.32.1..v0.33.0) - 2025-02-24
3660

Cargo.lock

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

iroh-base/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iroh-base"
3-
version = "0.34.0"
3+
version = "0.34.1"
44
edition = "2021"
55
readme = "README.md"
66
description = "base type and utilities for Iroh"

iroh-dns-server/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iroh-dns-server"
3-
version = "0.34.0"
3+
version = "0.34.1"
44
edition = "2021"
55
description = "A pkarr relay and DNS server"
66
license = "MIT OR Apache-2.0"

iroh-relay/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iroh-relay"
3-
version = "0.34.0"
3+
version = "0.34.1"
44
edition = "2021"
55
readme = "README.md"
66
description = "Iroh's relay server and client"
@@ -32,7 +32,7 @@ http = "1"
3232
http-body-util = "0.1.0"
3333
hyper = { version = "1", features = ["server", "client", "http1"] }
3434
hyper-util = "0.1.1"
35-
iroh-base = { version = "0.34.0", path = "../iroh-base", default-features = false, features = ["key", "relay"] }
35+
iroh-base = { version = "0.34.1", path = "../iroh-base", default-features = false, features = ["key", "relay"] }
3636
iroh-metrics = { version = "0.32", default-features = false }
3737
n0-future = "0.1.2"
3838
num_enum = "0.7"

iroh/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iroh"
3-
version = "0.34.0"
3+
version = "0.34.1"
44
edition = "2021"
55
readme = "README.md"
66
description = "p2p quic connections dialed by public key"
@@ -40,7 +40,7 @@ derive_more = { version = "1.0.0", features = [
4040
] }
4141
ed25519-dalek = { version = "2.0.0", features = ["serde", "rand_core", "zeroize", "pkcs8", "pem"] }
4242
http = "1"
43-
iroh-base = { version = "0.34.0", default-features = false, features = ["key", "relay"], path = "../iroh-base" }
43+
iroh-base = { version = "0.34.1", default-features = false, features = ["key", "relay"], path = "../iroh-base" }
4444
iroh-relay = { version = "0.34", path = "../iroh-relay", default-features = false }
4545
n0-future = "0.1.2"
4646
netwatch = { version = "0.4" }

iroh/bench/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iroh-bench"
3-
version = "0.34.0"
3+
version = "0.34.1"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
publish = false

0 commit comments

Comments
 (0)