diff --git a/CHANGELOG.md b/CHANGELOG.md index 5917bb56..6f5d9f60 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [1.4.1][] (2024-09-05) + +- Change instance on each retry after a network failure ([#206][]) +- Enable configuring tcp keepalive ([#207][]) +- Enable configuring a time after which an idle connection is considered "stale" and not reused ([#207][]) + +[#206]: https://github.com/Nitrokey/nethsm-pkcs11/pulls/#206 +[#207]: https://github.com/Nitrokey/nethsm-pkcs11/pulls/#207 + +[Full Changelog](https://github.com/Nitrokey/nethsm-pkcs11/compare/1.3.1...1.4.0) + ## [1.3.1][] (2024-04-19) ### Fixed diff --git a/Cargo.lock b/Cargo.lock index 9b4ea741..078b0978 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -43,9 +43,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" [[package]] name = "cc" -version = "1.1.15" +version = "1.1.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "57b6a275aa2903740dc87da01c62040406b8812552e97129a63ea8850a17c6e6" +checksum = "e9d013ecb737093c0e86b151a7b837993cf9ec6c502946cfb44bedc392421e0b" dependencies = [ "shlex", ] @@ -451,7 +451,7 @@ dependencies = [ [[package]] name = "nethsm_pkcs11" -version = "1.3.0" +version = "1.4.0" dependencies = [ "base64ct", "cryptoki-sys", @@ -1030,7 +1030,7 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" [[package]] name = "ureq" version = "2.10.1" -source = "git+https://github.com/Nitrokey/ureq.git?branch=stale-after#aa15c79752d6834f4fc10f8cd32a55cfb83109d9" +source = "git+https://github.com/Nitrokey/ureq.git?rev=aa15c79752d6834f4fc10f8cd32a55cfb83109d9#aa15c79752d6834f4fc10f8cd32a55cfb83109d9" dependencies = [ "base64 0.22.1", "log", diff --git a/pkcs11/Cargo.toml b/pkcs11/Cargo.toml index 211b8fc4..19107fae 100644 --- a/pkcs11/Cargo.toml +++ b/pkcs11/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nethsm_pkcs11" -version = "1.3.0" +version = "1.4.0" edition = "2021" [lib]