[#239] Remove deprecated linters
Signed-off-by: Denis Kirillov <denis@nspcc.ru>
This commit is contained in:
parent
278376643a
commit
f4fbd936bc
2 changed files with 10 additions and 12 deletions
|
@ -32,15 +32,12 @@ linters:
|
||||||
- revive
|
- revive
|
||||||
|
|
||||||
# some default golangci-lint linters
|
# some default golangci-lint linters
|
||||||
- deadcode
|
|
||||||
- errcheck
|
- errcheck
|
||||||
- gosimple
|
- gosimple
|
||||||
- ineffassign
|
- ineffassign
|
||||||
- staticcheck
|
- staticcheck
|
||||||
- structcheck
|
|
||||||
- typecheck
|
- typecheck
|
||||||
- unused
|
- unused
|
||||||
- varcheck
|
|
||||||
|
|
||||||
# extra linters
|
# extra linters
|
||||||
- exhaustive
|
- exhaustive
|
||||||
|
|
19
CHANGELOG.md
19
CHANGELOG.md
|
@ -4,9 +4,19 @@ This document outlines major changes between releases.
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Download zip archive when `FilePath` is invalid (#222)
|
||||||
|
- Only one peer must be healthy to init pool (#233)
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
- Support the `Date` header on upload (#214)
|
||||||
|
- Add error response on attribute duplicates (#221)
|
||||||
|
- Timeout for individual operations in streaming RPC (#234)
|
||||||
- Multiple server listeners (#228)
|
- Multiple server listeners (#228)
|
||||||
|
|
||||||
|
### Removed
|
||||||
|
- Deprecated linters (#239)
|
||||||
|
|
||||||
### Updating from v0.25.0
|
### Updating from v0.25.0
|
||||||
Make sure your configuration is valid:
|
Make sure your configuration is valid:
|
||||||
|
|
||||||
|
@ -20,15 +30,6 @@ If you configure application using `.yaml` file change:
|
||||||
* `tls.cert_file` -> `server.0.tls.cert_file` (and set `server.0.tls.enabled: true`)
|
* `tls.cert_file` -> `server.0.tls.cert_file` (and set `server.0.tls.enabled: true`)
|
||||||
* `tls.key_file` -> `server.0.tls.key_file` (and set `server.0.tls.enabled: true`)
|
* `tls.key_file` -> `server.0.tls.key_file` (and set `server.0.tls.enabled: true`)
|
||||||
|
|
||||||
### Fixed
|
|
||||||
- Download zip archive when `FilePath` is invalid (#222)
|
|
||||||
- Only one peer must be healthy to init pool (#233)
|
|
||||||
|
|
||||||
### Added
|
|
||||||
- Support the `Date` header on upload (#214)
|
|
||||||
- Add error response on attribute duplicates (#221)
|
|
||||||
- Timeout for individual operations in streaming RPC (#234)
|
|
||||||
|
|
||||||
## [0.25.0] - 2022-10-31
|
## [0.25.0] - 2022-10-31
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
Loading…
Reference in a new issue