Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CHANGELOG: release 0.30.1 #967

Merged
merged 2 commits into from
Jun 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 24 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.30.0
v0.30.1
2 changes: 1 addition & 1 deletion cmd/s3-gw/app_settings.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) {}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

My bad

}

l, err := c.Build(
Expand Down
Loading