Skip to content

Commit a2aa6b7

Browse files
authored
Version 9.0.3 (#2518)
1 parent a388a63 commit a2aa6b7

File tree

7 files changed

+64
-8
lines changed

7 files changed

+64
-8
lines changed

Diff for: CHANGELOG.md

+56
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,59 @@
1+
## [9.0.3](https://github.com/redis/go-redis/compare/v9.0.2...v9.0.3) (2023-04-02)
2+
3+
### New Features
4+
5+
- feat(scan): scan time.Time sets the default decoding (#2413)
6+
- Add support for CLUSTER LINKS command (#2504)
7+
- Add support for acl dryrun command (#2502)
8+
- Add support for COMMAND GETKEYS & COMMAND GETKEYSANDFLAGS (#2500)
9+
- Add support for LCS Command (#2480)
10+
- Add support for BZMPOP (#2456)
11+
- Adding support for ZMPOP command (#2408)
12+
- Add support for LMPOP (#2440)
13+
- feat: remove pool unused fields (#2438)
14+
- Expiretime and PExpireTime (#2426)
15+
- Implement `FUNCTION` group of commands (#2475)
16+
- feat(zadd): add ZAddLT and ZAddGT (#2429)
17+
- Add: Support for COMMAND LIST command (#2491)
18+
- Add support for BLMPOP (#2442)
19+
- feat: check pipeline.Do to prevent confusion with Exec (#2517)
20+
- Function stats, function kill, fcall and fcall_ro (#2486)
21+
- feat: Add support for CLUSTER SHARDS command (#2507)
22+
- feat(cmd): support for adding byte,bit parameters to the bitpos command (#2498)
23+
24+
### Fixed
25+
26+
- fix: eval api cmd.SetFirstKeyPos (#2501)
27+
- fix: limit the number of connections created (#2441)
28+
- fixed #2462 v9 continue support dragonfly, it's Hello command return "NOAUTH Authentication required" error (#2479)
29+
- Fix for internal/hscan/structmap.go:89:23: undefined: reflect.Pointer (#2458)
30+
- fix: group lag can be null (#2448)
31+
32+
### Maintenance
33+
34+
- Updating to the latest version of redis (#2508)
35+
- Allowing for running tests on a port other than the fixed 6380 (#2466)
36+
- redis 7.0.8 in tests (#2450)
37+
- docs: Update redisotel example for v9 (#2425)
38+
- chore: update go mod, Upgrade golang.org/x/net version to 0.7.0 (#2476)
39+
- chore: add Chinese translation (#2436)
40+
- chore(deps): bump github.com/bsm/gomega from 1.20.0 to 1.26.0 (#2421)
41+
- chore(deps): bump github.com/bsm/ginkgo/v2 from 2.5.0 to 2.7.0 (#2420)
42+
- chore(deps): bump actions/setup-go from 3 to 4 (#2495)
43+
- docs: add instructions for the HSet api (#2503)
44+
- docs: add reading lag field comment (#2451)
45+
- test: update go mod before testing(go mod tidy) (#2423)
46+
- docs: fix comment typo (#2505)
47+
- test: remove testify (#2463)
48+
- refactor: change ListElementCmd to KeyValuesCmd. (#2443)
49+
- fix(appendArg): appendArg case special type (#2489)
50+
51+
## [9.0.2](https://github.com/redis/go-redis/compare/v9.0.1...v9.0.2) (2023-02-01)
52+
53+
### Features
54+
55+
* 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))
56+
157
## v9 2023-01-30
258

359
### Breaking

Diff for: extra/rediscensus/go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ replace github.com/redis/go-redis/extra/rediscmd/v9 => ../rediscmd
88

99
require (
1010
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
11-
github.com/redis/go-redis/extra/rediscmd/v9 v9.0.2
12-
github.com/redis/go-redis/v9 v9.0.2
11+
github.com/redis/go-redis/extra/rediscmd/v9 v9.0.3
12+
github.com/redis/go-redis/v9 v9.0.3
1313
go.opencensus.io v0.24.0
1414
)

Diff for: extra/rediscmd/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ replace github.com/redis/go-redis/v9 => ../..
77
require (
88
github.com/bsm/ginkgo/v2 v2.7.0
99
github.com/bsm/gomega v1.26.0
10-
github.com/redis/go-redis/v9 v9.0.2
10+
github.com/redis/go-redis/v9 v9.0.3
1111
)

Diff for: extra/redisotel/go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ replace github.com/redis/go-redis/v9 => ../..
77
replace github.com/redis/go-redis/extra/rediscmd/v9 => ../rediscmd
88

99
require (
10-
github.com/redis/go-redis/extra/rediscmd/v9 v9.0.2
11-
github.com/redis/go-redis/v9 v9.0.2
10+
github.com/redis/go-redis/extra/rediscmd/v9 v9.0.3
11+
github.com/redis/go-redis/v9 v9.0.3
1212
go.opentelemetry.io/otel v1.12.0
1313
go.opentelemetry.io/otel/metric v0.35.0
1414
go.opentelemetry.io/otel/sdk v1.12.0

Diff for: extra/redisprometheus/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ replace github.com/redis/go-redis/v9 => ../..
66

77
require (
88
github.com/prometheus/client_golang v1.14.0
9-
github.com/redis/go-redis/v9 v9.0.2
9+
github.com/redis/go-redis/v9 v9.0.3
1010
)
1111

1212
require (

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "redis",
3-
"version": "9.0.2",
3+
"version": "9.0.3",
44
"main": "index.js",
55
"repository": "[email protected]:redis/go-redis.git",
66
"author": "Vladimir Mihailenco <[email protected]>",

Diff for: version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ package redis
22

33
// Version is the current release version.
44
func Version() string {
5-
return "9.0.2"
5+
return "9.0.3"
66
}

0 commit comments

Comments
 (0)