forked from TrueCloudLab/frostfs-node
Release v0.24.0 - Anmyeondo (안면도, 安眠島)
Signed-off-by: Pavel Karpy <carpawell@nspcc.ru>
This commit is contained in:
parent
e738699fcc
commit
4806cf33c3
4 changed files with 36 additions and 4 deletions
34
CHANGELOG.md
34
CHANGELOG.md
|
@ -3,6 +3,37 @@ Changelog for NeoFS Node
|
||||||
|
|
||||||
## [Unreleased]
|
## [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
|
## [0.23.1] - 2021-08-06
|
||||||
|
|
||||||
N3 Mainnet launch release with minor fixes.
|
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.
|
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.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.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
|
[0.22.3]: https://github.com/nspcc-dev/neofs-node/compare/v0.22.2...v0.22.3
|
||||||
|
|
|
@ -14,7 +14,7 @@ However, if you need to rebuild it for some reason, run
|
||||||
$ make image-storage-testnet
|
$ make image-storage-testnet
|
||||||
...
|
...
|
||||||
Successfully built ab0557117b02
|
Successfully built ab0557117b02
|
||||||
Successfully tagged nspccdev/neofs-storage-testnet:0.22.2
|
Successfully tagged nspccdev/neofs-storage-testnet:0.24.0
|
||||||
```
|
```
|
||||||
|
|
||||||
## Deploy node
|
## Deploy node
|
||||||
|
|
|
@ -29,7 +29,7 @@ contracts:
|
||||||
node:
|
node:
|
||||||
key: /node.key
|
key: /node.key
|
||||||
attribute_0: Deployed:SelfHosted
|
attribute_0: Deployed:SelfHosted
|
||||||
attribute_1: User-Agent:NeoFS\/0.23
|
attribute_1: User-Agent:NeoFS\/0.24
|
||||||
|
|
||||||
metrics:
|
metrics:
|
||||||
address: 127.0.0.1:9090
|
address: 127.0.0.1:9090
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
version: "2.4"
|
version: "2.4"
|
||||||
services:
|
services:
|
||||||
storage01:
|
storage01:
|
||||||
image: nspccdev/neofs-storage-testnet:0.23.1
|
image: nspccdev/neofs-storage-testnet:0.24.0
|
||||||
container_name: neofs-testnet
|
container_name: neofs-testnet
|
||||||
env_file: node_config.env
|
env_file: node_config.env
|
||||||
network_mode: host
|
network_mode: host
|
||||||
|
|
Loading…
Reference in a new issue