diff --git a/CHANGELOG.md b/CHANGELOG.md index 92bddcd5..98f01c87 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,37 @@ Changelog for NeoFS Node ## [Unreleased] +## [0.24.0] - 2021-08-30 Anmyeondo (안면도, 安眠島) + +### Fixed +- Linter warning messages (#766) +- Storage Node does not register itself in network in relay mode now (#761) + +### Changed +- `neofs-adm` fails when is called in a notary-disabled environment (#757) +- `neofs-adm` uses `neo-go` client's native NNS resolving method instead of the custom one (#756) +- Node selects pseudo-random list of objects from metabase for replication (#715) + +### Added +- Contract update support in `neofs-adm` utility (#748) +- Container transferring support in `neofs-adm` utility (#755) +- Storage Node's balance refilling support in `neofs-adm` utility (#758) +- Support `COMMON_PREFIX` filter for object attributes in storage engine and `neofs-cli` (#760) +- Node's and IR's notary status debug message on startup (#758) +- Go `1.17` unit tests in CI (#766) +- Supporting all eACL filter fields from the specification (#768) +- Cache for Container service's read operations (#676) + +### Updated +- `neofs-api-go` library to `v1.29.0` + +### Removed +- Unused `DB_SIZE` parameter of writecache (#773) + +### Upgrading from v0.23.1 +Storage Node does not read unused `NEOFS_STORAGE_SHARD_XXX_WRITECACHE_DB_SIZE` +config parameter anymore. + ## [0.23.1] - 2021-08-06 N3 Mainnet launch release with minor fixes. @@ -553,7 +584,8 @@ NeoFS-API v2.0 support and updated brand-new storage node application. First public review release. -[Unreleased]: https://github.com/nspcc-dev/neofs-node/compare/v0.23.1...master +[Unreleased]: https://github.com/nspcc-dev/neofs-node/compare/v0.24.0...master +[0.24.0]: https://github.com/nspcc-dev/neofs-node/compare/v0.23.1...v0.24.0 [0.23.1]: https://github.com/nspcc-dev/neofs-node/compare/v0.23.0...v0.23.1 [0.23.0]: https://github.com/nspcc-dev/neofs-node/compare/v0.22.3...v0.23.0 [0.22.3]: https://github.com/nspcc-dev/neofs-node/compare/v0.22.2...v0.22.3 diff --git a/config/testnet/README.md b/config/testnet/README.md index b8231bc8..382d4bee 100644 --- a/config/testnet/README.md +++ b/config/testnet/README.md @@ -14,7 +14,7 @@ However, if you need to rebuild it for some reason, run $ make image-storage-testnet ... Successfully built ab0557117b02 -Successfully tagged nspccdev/neofs-storage-testnet:0.22.2 +Successfully tagged nspccdev/neofs-storage-testnet:0.24.0 ``` ## Deploy node diff --git a/config/testnet/config.yml b/config/testnet/config.yml index 0e767027..37a461d2 100644 --- a/config/testnet/config.yml +++ b/config/testnet/config.yml @@ -29,7 +29,7 @@ contracts: node: key: /node.key attribute_0: Deployed:SelfHosted - attribute_1: User-Agent:NeoFS\/0.23 + attribute_1: User-Agent:NeoFS\/0.24 metrics: address: 127.0.0.1:9090 diff --git a/config/testnet/docker-compose.yml b/config/testnet/docker-compose.yml index 90401e0d..adf9df65 100644 --- a/config/testnet/docker-compose.yml +++ b/config/testnet/docker-compose.yml @@ -3,7 +3,7 @@ version: "2.4" services: storage01: - image: nspccdev/neofs-storage-testnet:0.23.1 + image: nspccdev/neofs-storage-testnet:0.24.0 container_name: neofs-testnet env_file: node_config.env network_mode: host