From c9c843872a304c6b8d063987a14def1315d8310c Mon Sep 17 00:00:00 2001 From: Martin Hoffmann Date: Fri, 21 Jun 2024 13:34:17 +0200 Subject: [PATCH] Release 0.14.5-rc1. (#1214) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit New * Allow overriding the initial manifest number when initializing the TA signer, either by specifying `--initial_manifest_number` in the CLI or by including `ta_mft_nr_override: #nr` in the `ImportTa` JSON. ([#1178]) * Allow overriding the TA manifest number when signing a TA proxy request by specifying `--ta_mft_number_override` in the CLI. ([#1178]) Bug fixes * Prevent empty RRDP delta lists to be produced. ([#1181]) * Correctly encode empty revocation lists in CRLs. (via [rpki-rs#295]) * Allow read access to the RIS dump while downloading a new dump. ([#1179]) * Don’t apply “child revoke key” command if the resource class does not exist. ([#1208]) Other changes * The minimum supported Rust version is now 1.70.0. ([#1198]) --- Cargo.lock | 7 ++++--- Cargo.toml | 5 ++--- Changelog.md | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b4b056563..951289e9b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1171,7 +1171,7 @@ dependencies = [ [[package]] name = "krill" -version = "0.14.5-dev" +version = "0.14.5-rc1" dependencies = [ "backoff", "base64 0.13.1", @@ -2126,8 +2126,9 @@ dependencies = [ [[package]] name = "rpki" -version = "0.18.3" -source = "git+https://github.com/nLnetLabs/rpki-rs#bdf9a3287badd1ab3929d962d6b88c851e6eaaa2" +version = "0.18.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c619005c452f0e0d8895334e21c846158cf2591d1db0a948ab0610d70d16828" dependencies = [ "base64 0.22.1", "bcder", diff --git a/Cargo.toml b/Cargo.toml index 1efc322e9..9bd345ff8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] # Note: some of these values are also used when building Debian packages below. name = "krill" -version = "0.14.5-dev" +version = "0.14.5-rc1" edition = "2018" rust-version = "1.70" authors = ["NLnet Labs "] @@ -50,8 +50,7 @@ rand = "^0.8" regex = { version = "1.5.5", optional = true, default_features = false, features = [ "std" ] } reqwest = { version = "0.11", features = ["json"] } rpassword = { version = "^5.0", optional = true } -#rpki = { version = "0.18.0", features = ["ca", "compat", "rrdp"] } -rpki = { git = "https://github.com/nLnetLabs/rpki-rs", features = [ "ca", "compat", "rrdp" ] } +rpki = { version = "0.18.4", features = ["ca", "compat", "rrdp"] } rustls-pemfile = "1.0.4" scrypt = { version = "^0.6", optional = true, default-features = false } serde = { version = "^1.0", features = ["derive", "rc"] } diff --git a/Changelog.md b/Changelog.md index d464bb982..99272778c 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,8 +1,8 @@ # Change Log -## Unreleased next version +## 0.14.5-rc1 -Breaking Changes +Released 2024-06-21. New