diff --git a/CHANGELOG.md b/CHANGELOG.md index 00f87cda..20f5bb50 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,28 @@ This document outlines major changes between releases. ## [Unreleased] +## [0.30.1] - 2024-06-19 + +### Added +- ARM64 and Darwin binaries (#949) + +### Changed +- Split object scheme for multipart uploads to v2 scheme (#957) +- Timestamp is hidden if program is not running in TTY (#965) + +### Fixed +- Inability to use "*" in ACLs (#958) +- Useless EACL record (#961) +- Incorrect owner returned for versioned/multipart objects (#957) +- Incorrect size retured for encrypted objects (#957) +- OPTIONS handling for pre-auth requests (#964) + +### Updated +- Documentation (#946) +- NeoFS SDK to RC12 (#943, #940, #960) +- golang.org/x/net dependency from 0.21.0 to 0.23.0 (#948) +- NeoGo dependency to 0.106.2 (#956, #960, #963) + ## [0.30.0] - 2024-03-27 ### Added @@ -543,4 +565,5 @@ releases. [0.28.2]: https://github.com/nspcc-dev/neofs-s3-gw/compare/v0.28.1...v0.28.2 [0.29.0]: https://github.com/nspcc-dev/neofs-s3-gw/compare/v0.28.2...v0.29.0 [0.30.0]: https://github.com/nspcc-dev/neofs-s3-gw/compare/v0.29.0...v0.30.0 -[Unreleased]: https://github.com/nspcc-dev/neofs-s3-gw/compare/v0.30.0...master +[0.30.1]: https://github.com/nspcc-dev/neofs-s3-gw/compare/v0.30.0...v0.30.1 +[Unreleased]: https://github.com/nspcc-dev/neofs-s3-gw/compare/v0.30.1...master diff --git a/VERSION b/VERSION index 9388ecbd..c173e42d 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -v0.30.0 +v0.30.1 diff --git a/cmd/s3-gw/app_settings.go b/cmd/s3-gw/app_settings.go index 64514a6c..e77ea302 100644 --- a/cmd/s3-gw/app_settings.go +++ b/cmd/s3-gw/app_settings.go @@ -408,7 +408,7 @@ func newLogger(v *viper.Viper) *Logger { if term.IsTerminal(int(os.Stdout.Fd())) { c.EncoderConfig.EncodeTime = zapcore.ISO8601TimeEncoder } else { - c.EncoderConfig.EncodeTime = func(t time.Time, encoder zapcore.PrimitiveArrayEncoder) {} + c.EncoderConfig.EncodeTime = func(_ time.Time, _ zapcore.PrimitiveArrayEncoder) {} } l, err := c.Build(