diff --git a/CHANGELOG.md b/CHANGELOG.md index 3503d49a8a0d..604f5673fc27 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,16 +27,36 @@ ### Breaking -- [#2873](https://github.com/ChainSafe/forest/issues/2873) - - remove `--compressed` from the CLI. Snapshots are now always compressed. - - Remove snapshot ops - snapshots fetched to the current directory by default. +### Added + +### Changed + +### Removed ### Fixed -- [#2967](https://github.com/ChainSafe/forest/issues/2967): Fix http-client - concurrency issues caused by fetching root certificates multiple times. -- [#2958](https://github.com/ChainSafe/forest/issues/2958): Fix occasional - consensus fault. +## Forest v0.9.0 "Fellowship" + +Notable updates: + +- `--compressed` option removed from CLI, snapshots are now always compressed. +- The `dir`, `list`, `prune` and `remove` snapshot commands have been removed + from the CLI. +- Snapshots are fetched to current directory by default. +- Added new subcommand `forest-cli info show`. +- `Filecoin.ChainSetHead` RPC endpoint and `forest-cli chain set-head` + subcommand are now implemented. +- IPLD graph can now be downloaded via bitswap. +- `sendFIL` function has been updated to match recent changes in the Forest send + command. +- FIL amount parsing/printing has been improved and 2 new options are added to + forest-cli wallet list (--no-round and --no-abbrev). + +### Breaking + +- [#2873](https://github.com/ChainSafe/forest/issues/2873) + - remove `--compressed` from the CLI. Snapshots are now always compressed. + - Remove snapshot ops - snapshots fetched to the current directory by default. ### Added @@ -45,6 +65,8 @@ subcommand. - [#2979](https://github.com/ChainSafe/forest/pull/2979): implement command for downloading an IPLD graph via bitswap. +- [#2578](https://github.com/ChainSafe/forest/pull/2578): implement initial + support for `forest-cli info` ### Changed @@ -66,6 +88,10 @@ ### Fixed +- [#2967](https://github.com/ChainSafe/forest/issues/2967): Fix http-client + concurrency issues caused by fetching root certificates multiple times. +- [#2958](https://github.com/ChainSafe/forest/issues/2958): Fix occasional + consensus fault. - [#2950](https://github.com/ChainSafe/forest/pull/2950): Fix cases where ctrl-c would be ignored. - [#2934](https://github.com/ChainSafe/forest/issues/2934): Fix race condition diff --git a/Cargo.lock b/Cargo.lock index 63ec114c8212..ad337955a5ec 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2759,7 +2759,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "forest-filecoin" -version = "0.8.2" +version = "0.9.0" dependencies = [ "ahash 0.8.3", "anes", @@ -8174,9 +8174,9 @@ dependencies = [ [[package]] name = "tracing-loki" -version = "0.2.2" +version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "630f9edbf303c204f36d08d99510bb7b5b2cb6c010146be3aa6537a183907a95" +checksum = "3dd4fccab2576134d2aa57a1457f93e6612e8afea2a170f392fd1c081e249998" dependencies = [ "loki-api", "reqwest", diff --git a/Cargo.toml b/Cargo.toml index 58b045d65d4f..45b8111870c2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "forest-filecoin" -version = "0.8.2" +version = "0.9.0" authors = ["ChainSafe Systems "] repository = "https://github.com/ChainSafe/forest" edition = "2021"