File tree Expand file tree Collapse file tree 13 files changed +36
-16
lines changed Expand file tree Collapse file tree 13 files changed +36
-16
lines changed Original file line number Diff line number Diff line change 11# Release Notes  
22
3+ # 9.15.0-beta.1 (2025-09-10)  
4+ 
5+ ## Highlights  
6+ This beta release includes a pre-production version of processing push notifications and hitless upgrades.
7+ 
8+ ### Hitless Upgrades  
9+ Hitless upgrades is a major new feature that allows for zero-downtime upgrades in Redis clusters.
10+ You can find more information in the [ Hitless Upgrades documentation] ( https://github.com/redis/go-redis/tree/master/hitless ) .
11+ 
12+ # Changes  
13+ 
14+ ## 🚀 New Features  
15+ -  [ CAE-1088]  & [ CAE-1072]  feat: RESP3 notifications support & Hitless notifications handling ([ #3418  ] ( https://github.com/redis/go-redis/pull/3418 ) )
16+ 
17+ ## Contributors  
18+ We'd like to thank all the contributors who worked on this release!
19+ 
20+ [ @ndyakov  ] ( https://github.com/ndyakov ) , [ @htemelski-redis  ] ( https://github.com/htemelski-redis ) , [ @ofekshenawa  ] ( https://github.com/ofekshenawa ) 
21+ 
22+ 
323# 9.14.0 (2025-09-10)  
424
525## Highlights  
Original file line number Diff line number Diff line change 55replace  github.com/redis/go-redis/v9  => ../.. 
66
77require  (
8- 	github.com/redis/go-redis/v9  v9.14.0  
8+ 	github.com/redis/go-redis/v9  v9.15.0-beta.1  
99	go.uber.org/zap  v1.24.0 
1010)
1111
Original file line number Diff line number Diff line change 44
55replace  github.com/redis/go-redis/v9  => ../.. 
66
7- require  github.com/redis/go-redis/v9  v9.14.0  
7+ require  github.com/redis/go-redis/v9  v9.15.0-beta.1  
88
99require  (
1010	github.com/cespare/xxhash/v2  v2.3.0  //  indirect
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ replace github.com/redis/go-redis/v9 => ../..
66
77require  (
88	github.com/davecgh/go-spew  v1.1.1 
9- 	github.com/redis/go-redis/v9  v9.14.0  
9+ 	github.com/redis/go-redis/v9  v9.15.0-beta.1  
1010)
1111
1212require  (
Original file line number Diff line number Diff line change 44
55replace  github.com/redis/go-redis/v9  => ../.. 
66
7- require  github.com/redis/go-redis/v9  v9.14.0  
7+ require  github.com/redis/go-redis/v9  v9.15.0-beta.1  
88
99require  (
1010	github.com/cespare/xxhash/v2  v2.3.0  //  indirect
Original file line number Diff line number Diff line change @@ -11,8 +11,8 @@ replace github.com/redis/go-redis/extra/redisotel/v9 => ../../extra/redisotel
1111replace  github.com/redis/go-redis/extra/rediscmd/v9  => ../../extra/rediscmd 
1212
1313require  (
14- 	github.com/redis/go-redis/extra/redisotel/v9  v9.14.0  
15- 	github.com/redis/go-redis/v9  v9.14.0  
14+ 	github.com/redis/go-redis/extra/redisotel/v9  v9.15.0-beta.1  
15+ 	github.com/redis/go-redis/v9  v9.15.0-beta.1  
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.14.0   //  indirect
28+ 	github.com/redis/go-redis/extra/rediscmd/v9  v9.15.0-beta.1   //  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
Original file line number Diff line number Diff line change 44
55replace  github.com/redis/go-redis/v9  => ../.. 
66
7- require  github.com/redis/go-redis/v9  v9.14.0  
7+ require  github.com/redis/go-redis/v9  v9.15.0-beta.1  
88
99require  (
1010	github.com/cespare/xxhash/v2  v2.3.0  //  indirect
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ replace github.com/redis/go-redis/v9 => ../..
66
77require  (
88	github.com/davecgh/go-spew  v1.1.1 
9- 	github.com/redis/go-redis/v9  v9.14.0  
9+ 	github.com/redis/go-redis/v9  v9.15.0-beta.1  
1010)
1111
1212require  (
Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ replace github.com/redis/go-redis/v9 => ../..
77replace  github.com/redis/go-redis/extra/rediscmd/v9  => ../rediscmd 
88
99require  (
10- 	github.com/redis/go-redis/extra/rediscmd/v9  v9.14.0  
11- 	github.com/redis/go-redis/v9  v9.14.0  
10+ 	github.com/redis/go-redis/extra/rediscmd/v9  v9.15.0-beta.1  
11+ 	github.com/redis/go-redis/v9  v9.15.0-beta.1  
1212	go.opencensus.io  v0.24.0 
1313)
1414
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ replace github.com/redis/go-redis/v9 => ../..
77require  (
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.14.0  
10+ 	github.com/redis/go-redis/v9  v9.15.0-beta.1  
1111)
1212
1313require  (
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments