From 1f8c9475b1af1a417df89989d0889e88020b56b9 Mon Sep 17 00:00:00 2001 From: Hubert Date: Tue, 27 Feb 2024 14:57:37 +0100 Subject: [PATCH] prepare release v0.16.7 "Etaoin shrdlu" (#3998) --- CHANGELOG.md | 21 +++++++++++++++++---- Cargo.lock | 2 +- Cargo.toml | 2 +- src/db/migration/migration_map.rs | 1 + 4 files changed, 20 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7526eb822c31..f3a4bc9e55cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,6 +29,20 @@ ### Added +### Changed + +### Removed + +### Fixed + +## Forest 0.16.7 "Etaoin shrdlu" + +Mandatory release that includes a fix for a bug in the `libp2p` usage. This is +necessary after the PL-managed bootstrap nodes were decommissioned. Failure to +upgrade will result in difficulty connecting to the mainnet network. + +### Added + - [#3849](https://github.com/ChainSafe/forest/pull/3849/) Implement the `Filecoin.ChainGetPath` lotus-compatible RPC API. - [#3849](https://github.com/ChainSafe/forest/pull/3849/) Add @@ -38,12 +52,11 @@ - [#3981](https://github.com/ChainSafe/forest/issues/3981) Add `forest-tool backup create|restore`. -### Changed - -### Removed - ### Fixed +- [#3996](https://github.com/ChainSafe/forest/pull/3996) Fixed a bug in the + `libp2p` usage that caused the connections to not get upgraded to secure ones. + ## Forest 0.16.6 "Pinecone Reactivation" ### Added diff --git a/Cargo.lock b/Cargo.lock index 7e547165d1e0..df52818ff5e3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3224,7 +3224,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "forest-filecoin" -version = "0.16.6" +version = "0.16.7" dependencies = [ "ahash", "anes 0.2.0", diff --git a/Cargo.toml b/Cargo.toml index 2cd8e4c4b8b6..f4f66e81d934 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "forest-filecoin" -version = "0.16.6" +version = "0.16.7" authors = ["ChainSafe Systems "] repository = "https://github.com/ChainSafe/forest" edition = "2021" diff --git a/src/db/migration/migration_map.rs b/src/db/migration/migration_map.rs index 66e51d52cc30..4ef85485dd0d 100644 --- a/src/db/migration/migration_map.rs +++ b/src/db/migration/migration_map.rs @@ -88,6 +88,7 @@ create_migrations!( "0.16.3" -> "0.16.4" @ MigrationVoid, "0.16.4" -> "0.16.5" @ MigrationVoid, "0.16.5" -> "0.16.6" @ MigrationVoid, + "0.16.6" -> "0.16.7" @ MigrationVoid, ); pub struct Migration {