chore: move pipelines change to breaking section

This commit is contained in:
Vladimir Mihailenco 2023-02-05 09:24:53 +02:00
parent a38f75b640
commit fc26460b78
1 changed files with 4 additions and 10 deletions

View File

@ -1,14 +1,9 @@
## [9.0.2](https://github.com/redis/go-redis/compare/v9.0.1...v9.0.2) (2023-02-01)
### Features
* upgrade OpenTelemetry, use the new metrics API. ([#2410](https://github.com/redis/go-redis/issues/2410)) ([e29e42c](https://github.com/redis/go-redis/commit/e29e42cde2755ab910d04185025dc43ce6f59c65))
## v9 2023-01-30
### Breaking
- Changed Pipelines to not be thread-safe any more.
### Added
- Added support for [RESP3](https://github.com/antirez/RESP3/blob/master/spec.md) protocol. It was
@ -39,7 +34,6 @@
- Removed `Pipeline.Close` since there is no real need to explicitly manage pipeline resources and
it can be safely reused via `sync.Pool` etc. `Pipeline.Discard` is still available if you want to
reset commands for some reason.
- Changed Pipelines to not be thread-safe any more.
### Fixed