Skip to content

Commit 3659628

Browse files
chore: Release
1 parent 52c96ba commit 3659628

File tree

13 files changed

+99
-46
lines changed

13 files changed

+99
-46
lines changed

CHANGELOG.md

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

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

5-
## [0.18.0](https://github.com/n0-computer/iroh/compare/v0.17.0..0.18.0) - 2024-06-07
5+
## [0.19.0](https://github.com/n0-computer/iroh/compare/v0.18.0..0.19.0) - 2024-06-27
6+
7+
### ⛰️ Features
8+
9+
- *(iroh)* Allow to disable docs engine completely ([#2390](https://github.com/n0-computer/iroh/issues/2390)) - ([0e6d441](https://github.com/n0-computer/iroh/commit/0e6d4415d88afc148e838e3a95d176de092c8348))
10+
- *(iroh)* Allow setting the logging directory via config file ([#2391](https://github.com/n0-computer/iroh/issues/2391)) - ([600ba8c](https://github.com/n0-computer/iroh/commit/600ba8c3f17a64f2c5de2835d10212deb2f460f4))
11+
- *(iroh)* [**breaking**] Expand ability to connect to RPC ([#2398](https://github.com/n0-computer/iroh/issues/2398)) - ([d30ed19](https://github.com/n0-computer/iroh/commit/d30ed19e876d603021d17c2dac0b6acf46f0c514))
12+
13+
### 🐛 Bug Fixes
14+
15+
- *(iroh)* Do not double-close docs on drop ([#2383](https://github.com/n0-computer/iroh/issues/2383)) - ([55a0c0b](https://github.com/n0-computer/iroh/commit/55a0c0bfc490ed0f3897ae2d7a135fff43c8370f))
16+
- *(iroh)* Use two stage accept from quic-rpc ([#2416](https://github.com/n0-computer/iroh/issues/2416)) - ([83b01ad](https://github.com/n0-computer/iroh/commit/83b01adcaec7165e64f92eba017b9cff8e29dbb4))
17+
- *(iroh-net)* [**breaking**] ALPNs can be bytes, not just strings ([#2377](https://github.com/n0-computer/iroh/issues/2377)) - ([f57c34f](https://github.com/n0-computer/iroh/commit/f57c34f58b365b6b400c7ee2574f4cc89b4538bf))
18+
- *(iroh-net)* Prevent adding addressing info that points back to us ([#2333](https://github.com/n0-computer/iroh/issues/2333)) - ([b2e8557](https://github.com/n0-computer/iroh/commit/b2e8557cfbc43ce73640d44f0a4976efbbbae176))
19+
- *(iroh-net)* `poll_send` should drop transmits that we dont have a `dest` for ([#2393](https://github.com/n0-computer/iroh/issues/2393)) - ([aba70ea](https://github.com/n0-computer/iroh/commit/aba70ea9251d9eeb91b946ae5a25f4f0921fbe29))
20+
- Properly wait for docs engine shutdown ([#2389](https://github.com/n0-computer/iroh/issues/2389)) - ([eb74cf6](https://github.com/n0-computer/iroh/commit/eb74cf6a25ca53de2ef237b6c20a2e5846a8090e))
21+
- Do not panic on blobs db IO error ([#2400](https://github.com/n0-computer/iroh/issues/2400)) - ([38e8ce0](https://github.com/n0-computer/iroh/commit/38e8ce0695504fe4d1c6ee27fcdbd9ded02a4c3b))
22+
23+
### 🚜 Refactor
24+
25+
- *(iroh)* [**breaking**] Use ref-cast instead of fields to get the subsystem clients ([#2374](https://github.com/n0-computer/iroh/issues/2374)) - ([be3e16e](https://github.com/n0-computer/iroh/commit/be3e16e7550f5140adce319e40bc14647ed318ba))
26+
- *(iroh)* Allow to register custom protocols ([#2358](https://github.com/n0-computer/iroh/issues/2358)) - ([13ded84](https://github.com/n0-computer/iroh/commit/13ded8478a8597fbee22b959d29efeb133c2fe40))
27+
- *(iroh)* Move code from builder to node and make things nicer ([#2386](https://github.com/n0-computer/iroh/issues/2386)) - ([08f1fe0](https://github.com/n0-computer/iroh/commit/08f1fe0ffaf254249ad68181c4e2cecea5b29386))
28+
- *(iroh)* Use boxed client to get rid of the C type parameter ([#2353](https://github.com/n0-computer/iroh/issues/2353)) - ([abc7f5e](https://github.com/n0-computer/iroh/commit/abc7f5e9f3f72158222d7cd2680c52cd797d787d))
29+
- *(iroh)* [**breaking**] Eliminate the type parameter for the rpc service type ([#2405](https://github.com/n0-computer/iroh/issues/2405)) - ([52c96ba](https://github.com/n0-computer/iroh/commit/52c96ba914796a8f6095f6a3f8c6ca4ed0c06d62))
30+
- *(iroh-net)* [**breaking**] Rename Endpoint::my_relay to home_relay ([#2361](https://github.com/n0-computer/iroh/issues/2361)) - ([100d27d](https://github.com/n0-computer/iroh/commit/100d27d57b28547a0ec5b4719bf25c31427f961e))
31+
- *(iroh-net)* [**breaking**] Rename Endpoint::my_addr to Endpoint::node_addr ([#2362](https://github.com/n0-computer/iroh/issues/2362)) - ([61d5109](https://github.com/n0-computer/iroh/commit/61d5109ff7e6f9cdca42af3d27a7681c55400604))
32+
- *(iroh-net)* [**breaking**] Do not use &NodeId in APIs as this is Copy ([#2363](https://github.com/n0-computer/iroh/issues/2363)) - ([e9075f3](https://github.com/n0-computer/iroh/commit/e9075f3b93038a74a4f11c545992ac4ba39590d0))
33+
- *(iroh-net)* [**breaking**] Rename Endpoint::local_addr to bound_sockets ([#2366](https://github.com/n0-computer/iroh/issues/2366)) - ([a5e5939](https://github.com/n0-computer/iroh/commit/a5e59397f2f3d5e5df925b7a192570750cfa59ae))
34+
- *(iroh-net)* [**breaking**] Rename Endpoint::local_endpoints to direct_addresses ([#2369](https://github.com/n0-computer/iroh/issues/2369)) - ([2ac3d01](https://github.com/n0-computer/iroh/commit/2ac3d01d466622e5955fb1e179caabe7b52beffa))
35+
- *(iroh-net)* Improve magicsock module visibility ([#2371](https://github.com/n0-computer/iroh/issues/2371)) - ([3b0bb51](https://github.com/n0-computer/iroh/commit/3b0bb51b956b83d122237a3d0e091f9c80cd0a9d))
36+
- *(iroh-net)* [**breaking**] Rework relay-server binary, more configurable, reverse-proxy support ([#2341](https://github.com/n0-computer/iroh/issues/2341)) - ([4ff1ec4](https://github.com/n0-computer/iroh/commit/4ff1ec46beb73eaaef31a12956594e39d72dfbbe))
37+
- *(iroh_net)* [**breaking**] Remove Endpoint::my_addr_with_endpoints ([#2359](https://github.com/n0-computer/iroh/issues/2359)) - ([3a2faea](https://github.com/n0-computer/iroh/commit/3a2faeaf907faa510e9d1347cbb300dc5bedea17))
38+
39+
### 📚 Documentation
40+
41+
- *(iroh-net)* Update NodeAddr docs ([#2365](https://github.com/n0-computer/iroh/issues/2365)) - ([53dfed1](https://github.com/n0-computer/iroh/commit/53dfed146717febb98af124bf23adcfcdc51a3a7))
42+
- *(iroh-net)* A few small fixes from PR review ([#2375](https://github.com/n0-computer/iroh/issues/2375)) - ([ea7e654](https://github.com/n0-computer/iroh/commit/ea7e654f1f7d4f37f8e12c4b79594a541dd823f8))
43+
- Fix spelling in new protocol handler docs ([#2385](https://github.com/n0-computer/iroh/issues/2385)) - ([f73c506](https://github.com/n0-computer/iroh/commit/f73c506a809331e11b1deff84ef0cfe0fc25587c))
44+
45+
### 🧪 Testing
46+
47+
- *(iroh-net)* Remove a flaky test ([#2379](https://github.com/n0-computer/iroh/issues/2379)) - ([d37a4a4](https://github.com/n0-computer/iroh/commit/d37a4a4f3c7944200b902dcd822f4c33eb1787a0))
48+
49+
### ⚙️ Miscellaneous Tasks
50+
51+
- Deny openssl ([#2372](https://github.com/n0-computer/iroh/issues/2372)) - ([ac72938](https://github.com/n0-computer/iroh/commit/ac72938d6e558d5561ba0433c404e4db361ea010))
52+
53+
### Deps
54+
55+
- Bump curve25519-dalek ([#2382](https://github.com/n0-computer/iroh/issues/2382)) - ([96081e5](https://github.com/n0-computer/iroh/commit/96081e5020cc837103a81360b14c97dfd3ffc9fe))
56+
57+
## [0.18.0](https://github.com/n0-computer/iroh/compare/v0.17.0..v0.18.0) - 2024-06-07
658

759
### ⛰️ Features
860

@@ -34,6 +86,7 @@ All notable changes to iroh will be documented in this file.
3486
### ⚙️ Miscellaneous Tasks
3587

3688
- *(ci)* Update clippy ([#2351](https://github.com/n0-computer/iroh/issues/2351)) - ([7198cd0](https://github.com/n0-computer/iroh/commit/7198cd0f69cd0a178db3b71b7ee58ea5f285b95e))
89+
- Release - ([ea50b94](https://github.com/n0-computer/iroh/commit/ea50b94026a8f55abf02184e78671cf4cce96e0d))
3790

3891
## [0.17.0](https://github.com/n0-computer/iroh/compare/v0.16.0..v0.17.0) - 2024-05-24
3992

Cargo.lock

Lines changed: 11 additions & 11 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.18.0"
3+
version = "0.19.0"
44
edition = "2021"
55
readme = "README.md"
66
description = "base type and utilities for Iroh"

iroh-blobs/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iroh-blobs"
3-
version = "0.18.0"
3+
version = "0.19.0"
44
edition = "2021"
55
readme = "README.md"
66
description = "blob and collection transfer support for iroh"
@@ -27,10 +27,10 @@ futures-lite = "2.3"
2727
genawaiter = { version = "0.99.1", features = ["futures03"] }
2828
hashlink = { version = "0.9.0", optional = true }
2929
hex = "0.4.3"
30-
iroh-base = { version = "0.18.0", features = ["redb"], path = "../iroh-base" }
30+
iroh-base = { version = "0.19.0", features = ["redb"], path = "../iroh-base" }
3131
iroh-io = { version = "0.6.0", features = ["stats"] }
32-
iroh-metrics = { version = "0.18.0", path = "../iroh-metrics", optional = true }
33-
iroh-net = { version = "0.18.0", path = "../iroh-net" }
32+
iroh-metrics = { version = "0.19.0", path = "../iroh-metrics", optional = true }
33+
iroh-net = { version = "0.19.0", path = "../iroh-net" }
3434
num_cpus = "1.15.0"
3535
parking_lot = { version = "0.12.1", optional = true }
3636
postcard = { version = "1", default-features = false, features = ["alloc", "use-std", "experimental-derive"] }

iroh-cli/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iroh-cli"
3-
version = "0.18.0"
3+
version = "0.19.0"
44
edition = "2021"
55
readme = "README.md"
66
description = "Bytes. Distributed."
@@ -39,8 +39,8 @@ futures-lite = "2.3"
3939
hex = "0.4.3"
4040
human-time = "0.1.6"
4141
indicatif = { version = "0.17", features = ["tokio"] }
42-
iroh = { version = "0.18.0", path = "../iroh", features = ["metrics"] }
43-
iroh-metrics = { version = "0.18.0", path = "../iroh-metrics" }
42+
iroh = { version = "0.19.0", path = "../iroh", features = ["metrics"] }
43+
iroh-metrics = { version = "0.19.0", path = "../iroh-metrics" }
4444
parking_lot = "0.12.1"
4545
pkarr = { version = "1.1.5", default-features = false }
4646
portable-atomic = "1"

iroh-dns-server/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iroh-dns-server"
3-
version = "0.18.0"
3+
version = "0.19.0"
44
edition = "2021"
55
description = "A pkarr relay and DNS server"
66
license = "MIT OR Apache-2.0"
@@ -24,7 +24,7 @@ governor = "0.6.3"
2424
hickory-proto = "0.24.0"
2525
hickory-server = { version = "0.24.0", features = ["dns-over-rustls"] }
2626
http = "1.0.0"
27-
iroh-metrics = { version = "0.18.0", path = "../iroh-metrics" }
27+
iroh-metrics = { version = "0.19.0", path = "../iroh-metrics" }
2828
lru = "0.12.3"
2929
parking_lot = "0.12.1"
3030
pkarr = { version = "1.1.4", features = [ "async", "relay", "dht"], default-features = false }
@@ -52,7 +52,7 @@ z32 = "1.1.1"
5252

5353
[dev-dependencies]
5454
hickory-resolver = "0.24.0"
55-
iroh-net = { version = "0.18.0", path = "../iroh-net" }
55+
iroh-net = { version = "0.19.0", path = "../iroh-net" }
5656
iroh-test = { path = "../iroh-test" }
5757
mainline = "<1.5.0"
5858

iroh-docs/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iroh-docs"
3-
version = "0.18.0"
3+
version = "0.19.0"
44
edition = "2021"
55
readme = "README.md"
66
description = "Iroh sync"
@@ -25,11 +25,11 @@ futures-buffered = "0.2.4"
2525
futures-lite = "2.3.0"
2626
futures-util = { version = "0.3.25" }
2727
hex = "0.4"
28-
iroh-base = { version = "0.18.0", path = "../iroh-base" }
29-
iroh-blobs = { version = "0.18.0", path = "../iroh-blobs", optional = true, features = ["downloader"] }
30-
iroh-gossip = { version = "0.18.0", path = "../iroh-gossip", optional = true }
31-
iroh-metrics = { version = "0.18.0", path = "../iroh-metrics", optional = true }
32-
iroh-net = { version = "0.18.0", optional = true, path = "../iroh-net" }
28+
iroh-base = { version = "0.19.0", path = "../iroh-base" }
29+
iroh-blobs = { version = "0.19.0", path = "../iroh-blobs", optional = true, features = ["downloader"] }
30+
iroh-gossip = { version = "0.19.0", path = "../iroh-gossip", optional = true }
31+
iroh-metrics = { version = "0.19.0", path = "../iroh-metrics", optional = true }
32+
iroh-net = { version = "0.19.0", optional = true, path = "../iroh-net" }
3333
lru = "0.12"
3434
num_enum = "0.7"
3535
postcard = { version = "1", default-features = false, features = ["alloc", "use-std", "experimental-derive"] }

iroh-gossip/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iroh-gossip"
3-
version = "0.18.0"
3+
version = "0.19.0"
44
edition = "2021"
55
readme = "README.md"
66
description = "gossip messages over broadcast trees"
@@ -27,12 +27,12 @@ rand = { version = "0.8.5", features = ["std_rng"] }
2727
rand_core = "0.6.4"
2828
serde = { version = "1.0.164", features = ["derive"] }
2929
tracing = "0.1"
30-
iroh-metrics = { version = "0.18.0", path = "../iroh-metrics" }
31-
iroh-base = { version = "0.18.0", path = "../iroh-base" }
30+
iroh-metrics = { version = "0.19.0", path = "../iroh-metrics" }
31+
iroh-base = { version = "0.19.0", path = "../iroh-base" }
3232

3333
# net dependencies (optional)
3434
futures-lite = { version = "2.3", optional = true }
35-
iroh-net = { path = "../iroh-net", version = "0.18.0", optional = true, default-features = false, features = ["test-utils"] }
35+
iroh-net = { path = "../iroh-net", version = "0.19.0", optional = true, default-features = false, features = ["test-utils"] }
3636
tokio = { version = "1", optional = true, features = ["io-util", "sync", "rt", "macros", "net", "fs"] }
3737
tokio-util = { version = "0.7.8", optional = true, features = ["codec"] }
3838
genawaiter = { version = "0.99.1", default-features = false, features = ["futures03"] }

iroh-metrics/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-metrics"
3-
version = "0.18.0"
3+
version = "0.19.0"
44
edition = "2021"
55
readme = "README.md"
66
description = "metrics for iroh"

iroh-net/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iroh-net"
3-
version = "0.18.0"
3+
version = "0.19.0"
44
edition = "2021"
55
readme = "README.md"
66
description = "networking support for iroh"
@@ -41,7 +41,7 @@ http-body-util = "0.1.0"
4141
hyper = { version = "1", features = ["server", "client", "http1"] }
4242
hyper-util = "0.1.1"
4343
igd-next = { version = "0.14.3", features = ["aio_tokio"] }
44-
iroh-base = { version = "0.18.0", path = "../iroh-base", features = ["key"] }
44+
iroh-base = { version = "0.19.0", path = "../iroh-base", features = ["key"] }
4545
libc = "0.2.139"
4646
num_enum = "0.7"
4747
once_cell = "1.18.0"
@@ -86,7 +86,7 @@ toml = { version = "0.8", optional = true }
8686
tracing-subscriber = { version = "0.3", features = ["env-filter"], optional = true }
8787

8888
# metrics
89-
iroh-metrics = { version = "0.18.0", path = "../iroh-metrics", default-features = false }
89+
iroh-metrics = { version = "0.19.0", path = "../iroh-metrics", default-features = false }
9090
strum = { version = "0.26.2", features = ["derive"] }
9191

9292
[target.'cfg(any(target_os = "linux", target_os = "android"))'.dependencies]

0 commit comments

Comments
 (0)