Skip to content

Commit 759e2fa

Browse files
Merge pull request #4617 from nymtech/master
Merge Master into Develop with the recent Ragusa changes
2 parents bca8992 + 489914f commit 759e2fa

File tree

9 files changed

+53
-14
lines changed

9 files changed

+53
-14
lines changed

CHANGELOG.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,45 @@ Post 1.0.0 release, the changelog format is based on [Keep a Changelog](https://
44

55
## [Unreleased]
66

7+
## [2024.5-ragusa] (2024-05-22)
8+
9+
- Feature/nym node api location ([#4605])
10+
- Add optional signature to IPR request/response ([#4604])
11+
- Feature/unstable tested nodes endpoint ([#4601])
12+
- nym-api: make report/avg_uptime endpoints ignore blacklist ([#4599])
13+
- removed blocking for coconut in the final epoch state ([#4598])
14+
- allow using explicit admin address for issuing freepasses ([#4595])
15+
- Use rfc3339 for last_polled in described nym-api endpoint ([#4591])
16+
- Explicitly handle constraint unique violation when importing credential ([#4588])
17+
- [bugfix] noop flag for nym-api for nymvisor compatibility ([#4586])
18+
- Chore/additional helpers ([#4585])
19+
- Feature/wasm coconut ([#4584])
20+
- upgraded axum and related deps to the most recent version ([#4573])
21+
- Feature/nyxd scraper pruning ([#4564])
22+
- Run cargo autoinherit on the main workspace ([#4553])
23+
- Add rustls-tls to reqwest in validator-client ([#4552])
24+
- Feature/rewarder voucher issuance ([#4548])
25+
- make sure 'OffsetDateTimeJsonSchemaWrapper' is serialised with legacy format ([#4613])
26+
27+
28+
[#4613]: https://github.com/nymtech/nym/pull/4613
29+
[#4605]: https://github.com/nymtech/nym/pull/4605
30+
[#4604]: https://github.com/nymtech/nym/pull/4604
31+
[#4601]: https://github.com/nymtech/nym/pull/4601
32+
[#4599]: https://github.com/nymtech/nym/pull/4599
33+
[#4598]: https://github.com/nymtech/nym/pull/4598
34+
[#4595]: https://github.com/nymtech/nym/pull/4595
35+
[#4591]: https://github.com/nymtech/nym/pull/4591
36+
[#4588]: https://github.com/nymtech/nym/pull/4588
37+
[#4586]: https://github.com/nymtech/nym/pull/4586
38+
[#4585]: https://github.com/nymtech/nym/pull/4585
39+
[#4584]: https://github.com/nymtech/nym/pull/4584
40+
[#4573]: https://github.com/nymtech/nym/pull/4573
41+
[#4564]: https://github.com/nymtech/nym/pull/4564
42+
[#4553]: https://github.com/nymtech/nym/pull/4553
43+
[#4552]: https://github.com/nymtech/nym/pull/4552
44+
[#4548]: https://github.com/nymtech/nym/pull/4548
45+
746
## [2024.4-nutella] (2024-05-08)
847

948
- [fix] apply disable_poisson_rate from internal NR/IPR cfgs ([#4579])

Cargo.lock

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

clients/native/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nym-client"
3-
version = "1.1.34"
3+
version = "1.1.35"
44
authors = ["Dave Hrycyszyn <[email protected]>", "Jędrzej Stuczyński <[email protected]>"]
55
description = "Implementation of the Nym Client"
66
edition = "2021"

clients/socks5/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nym-socks5-client"
3-
version = "1.1.34"
3+
version = "1.1.35"
44
authors = ["Dave Hrycyszyn <[email protected]>"]
55
description = "A SOCKS5 localhost proxy that converts incoming messages to Sphinx and sends them to a Nym address"
66
edition = "2021"

nym-api/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[package]
55
name = "nym-api"
66
license = "GPL-3.0"
7-
version = "1.1.37"
7+
version = "1.1.38"
88
authors = [
99
"Dave Hrycyszyn <[email protected]>",
1010
"Jędrzej Stuczyński <[email protected]>",

nym-node/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
[package]
55
name = "nym-node"
6-
version = "1.1.1"
6+
version = "1.1.2"
77
authors.workspace = true
88
repository.workspace = true
99
homepage.workspace = true

service-providers/network-requester/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[package]
55
name = "nym-network-requester"
66
license = "GPL-3.0"
7-
version = "1.1.35"
7+
version = "1.1.36"
88
authors.workspace = true
99
edition.workspace = true
1010
rust-version = "1.70"

tools/nym-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nym-cli"
3-
version = "1.1.35"
3+
version = "1.1.36"
44
authors.workspace = true
55
edition = "2021"
66
license.workspace = true

tools/nymvisor/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nymvisor"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors.workspace = true
55
repository.workspace = true
66
homepage.workspace = true

0 commit comments

Comments
 (0)