Skip to content

Commit b3d7a4b

Browse files
committed
release(go-redis): v9.9.0
- Add release notes - Update dependencies and version.go
1 parent 86d418f commit b3d7a4b

File tree

13 files changed

+65
-16
lines changed

13 files changed

+65
-16
lines changed

RELEASE-NOTES.md

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,54 @@
11
# Release Notes
22

3+
# 9.9.0 (2024-03-21)
4+
5+
## 🚀 Highlights
6+
- **Token-based Authentication**: Added `StreamingCredentialsProvider` for dynamic credential updates
7+
- Can be used with [go-redis-entraid](https://github.com/redis/go-redis-entraid) for Azure AD authentication
8+
- **Connection Statistics**: Added connection waiting statistics for better monitoring
9+
- **Failover Improvements**: Added `ParseFailoverURL` for easier failover configuration
10+
11+
## ✨ New Features
12+
- Added `StreamingCredentialsProvider` for token-based authentication (#3320)
13+
- Supports dynamic credential updates
14+
- Includes connection close hooks
15+
- Note: Currently marked as experimental
16+
- Added `ParseFailoverURL` for parsing failover URLs (#3362)
17+
- Added connection waiting statistics (#2804)
18+
- Added new utility functions:
19+
- `ParseFloat` and `MustParseFloat` in public utils package (#3371)
20+
- Unit tests for `Atoi`, `ParseInt`, `ParseUint`, and `ParseFloat` (#3377)
21+
22+
## 🐛 Bug Fixes
23+
- Fixed routing reads to loading slave nodes (#3370)
24+
- Added support for nil lag in XINFO GROUPS (#3369)
25+
- Fixed pool acquisition timeout issues (#3381)
26+
- Optimized unnecessary copy operations (#3376)
27+
28+
## 📚 Documentation
29+
- Updated documentation for XINFO GROUPS with nil lag support (#3369)
30+
- Added package-level comments for new features
31+
32+
## ⚡ Performance and Reliability
33+
- Optimized `ReplaceSpaces` function (#3383)
34+
- Set default value for `options.protocol` in `init()` (#3387)
35+
- Exported pool errors for public consumption (#3380)
36+
37+
## 🔧 Dependencies and Infrastructure
38+
- Updated Redis CI to version 8.0.1 (#3372)
39+
- Updated spellcheck GitHub Actions (#3389)
40+
- Removed unused parameters (#3382, #3384)
41+
42+
## 🧪 Testing
43+
- Added unit tests for pool acquisition timeout (#3381)
44+
- Added unit tests for utility functions (#3377)
45+
46+
## 👥 Contributors
47+
48+
We would like to thank all the contributors who made this release possible:
49+
50+
[@ndyakov](https://github.com/ndyakov), [@ofekshenawa](https://github.com/ofekshenawa), [@LINKIWI](https://github.com/LINKIWI), [@iamamirsalehi](https://github.com/iamamirsalehi), [@fukua95](https://github.com/fukua95), [@lzakharov](https://github.com/lzakharov)
51+
352
# 9.8.0 (2025-04-30)
453

554
## 🚀 Highlights

example/del-keys-without-ttl/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.18
55
replace github.com/redis/go-redis/v9 => ../..
66

77
require (
8-
github.com/redis/go-redis/v9 v9.8.0
8+
github.com/redis/go-redis/v9 v9.9.0
99
go.uber.org/zap v1.24.0
1010
)
1111

example/hll/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.18
44

55
replace github.com/redis/go-redis/v9 => ../..
66

7-
require github.com/redis/go-redis/v9 v9.8.0
7+
require github.com/redis/go-redis/v9 v9.9.0
88

99
require (
1010
github.com/cespare/xxhash/v2 v2.3.0 // indirect

example/hset-struct/go.mod

Lines changed: 1 addition & 1 deletion
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/davecgh/go-spew v1.1.1
9-
github.com/redis/go-redis/v9 v9.8.0
9+
github.com/redis/go-redis/v9 v9.9.0
1010
)
1111

1212
require (

example/lua-scripting/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.18
44

55
replace github.com/redis/go-redis/v9 => ../..
66

7-
require github.com/redis/go-redis/v9 v9.8.0
7+
require github.com/redis/go-redis/v9 v9.9.0
88

99
require (
1010
github.com/cespare/xxhash/v2 v2.3.0 // indirect

example/otel/go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ replace github.com/redis/go-redis/extra/redisotel/v9 => ../../extra/redisotel
1111
replace github.com/redis/go-redis/extra/rediscmd/v9 => ../../extra/rediscmd
1212

1313
require (
14-
github.com/redis/go-redis/extra/redisotel/v9 v9.8.0
15-
github.com/redis/go-redis/v9 v9.8.0
14+
github.com/redis/go-redis/extra/redisotel/v9 v9.9.0
15+
github.com/redis/go-redis/v9 v9.9.0
1616
github.com/uptrace/uptrace-go v1.21.0
1717
go.opentelemetry.io/otel v1.22.0
1818
)
@@ -25,7 +25,7 @@ require (
2525
github.com/go-logr/stdr v1.2.2 // indirect
2626
github.com/golang/protobuf v1.5.3 // indirect
2727
github.com/grpc-ecosystem/grpc-gateway/v2 v2.19.0 // indirect
28-
github.com/redis/go-redis/extra/rediscmd/v9 v9.8.0 // indirect
28+
github.com/redis/go-redis/extra/rediscmd/v9 v9.9.0 // indirect
2929
go.opentelemetry.io/contrib/instrumentation/runtime v0.46.1 // indirect
3030
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v0.44.0 // indirect
3131
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.21.0 // indirect

example/redis-bloom/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.18
44

55
replace github.com/redis/go-redis/v9 => ../..
66

7-
require github.com/redis/go-redis/v9 v9.8.0
7+
require github.com/redis/go-redis/v9 v9.9.0
88

99
require (
1010
github.com/cespare/xxhash/v2 v2.3.0 // indirect

example/scan-struct/go.mod

Lines changed: 1 addition & 1 deletion
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/davecgh/go-spew v1.1.1
9-
github.com/redis/go-redis/v9 v9.8.0
9+
github.com/redis/go-redis/v9 v9.9.0
1010
)
1111

1212
require (

extra/rediscensus/go.mod

Lines changed: 2 additions & 2 deletions
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.8.0
11-
github.com/redis/go-redis/v9 v9.8.0
10+
github.com/redis/go-redis/extra/rediscmd/v9 v9.9.0
11+
github.com/redis/go-redis/v9 v9.9.0
1212
go.opencensus.io v0.24.0
1313
)
1414

extra/rediscmd/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ replace github.com/redis/go-redis/v9 => ../..
77
require (
88
github.com/bsm/ginkgo/v2 v2.12.0
99
github.com/bsm/gomega v1.27.10
10-
github.com/redis/go-redis/v9 v9.8.0
10+
github.com/redis/go-redis/v9 v9.9.0
1111
)
1212

1313
require (

extra/redisotel/go.mod

Lines changed: 2 additions & 2 deletions
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.8.0
11-
github.com/redis/go-redis/v9 v9.8.0
10+
github.com/redis/go-redis/extra/rediscmd/v9 v9.9.0
11+
github.com/redis/go-redis/v9 v9.9.0
1212
go.opentelemetry.io/otel v1.22.0
1313
go.opentelemetry.io/otel/metric v1.22.0
1414
go.opentelemetry.io/otel/sdk v1.22.0

extra/redisprometheus/go.mod

Lines changed: 1 addition & 1 deletion
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.8.0
9+
github.com/redis/go-redis/v9 v9.9.0
1010
)
1111

1212
require (

version.go

Lines changed: 1 addition & 1 deletion
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.8.0"
5+
return "9.9.0"
66
}

0 commit comments

Comments
 (0)