From c33da978943b8c783ec4254220ca8a7bd47375c9 Mon Sep 17 00:00:00 2001 From: Hristo Temelski Date: Wed, 10 Sep 2025 13:45:09 +0300 Subject: [PATCH] chore(release): v9.14.0 --- RELEASE-NOTES.md | 26 ++++++++++++++++++++++++++ example/hll/go.mod | 2 +- example/hset-struct/go.mod | 2 +- example/lua-scripting/go.mod | 2 +- example/otel/go.mod | 2 +- example/redis-bloom/go.mod | 2 +- example/scan-struct/go.mod | 2 +- extra/rediscensus/go.mod | 2 +- extra/rediscmd/go.mod | 2 +- extra/redisotel/go.mod | 2 +- extra/redisprometheus/go.mod | 2 +- version.go | 2 +- 12 files changed, 37 insertions(+), 11 deletions(-) diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index c073466768..7121bd7e2b 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -1,5 +1,31 @@ # Release Notes +# 9.14.0 (2025-09-10) + +## Highlights +- Added batch process method to the pipeline ([#3510](https://github.com/redis/go-redis/pull/3510)) + +# Changes + +## 🚀 New Features + +- Added batch process method to the pipeline ([#3510](https://github.com/redis/go-redis/pull/3510)) + +## 🐛 Bug Fixes + +- fix: SetErr on Cmd if the command cannot be queued correctly in multi/exec ([#3509](https://github.com/redis/go-redis/pull/3509)) + +## 🧰 Maintenance + +- Updates release drafter config to exclude dependabot ([#3511](https://github.com/redis/go-redis/pull/3511)) +- chore(deps): bump actions/setup-go from 5 to 6 ([#3504](https://github.com/redis/go-redis/pull/3504)) + +## Contributors +We'd like to thank all the contributors who worked on this release! + +[@elena-kolevska](https://github.com/elena-kolevksa), [@htemelski-redis](https://github.com/htemelski-redis) and [@ndyakov](https://github.com/ndyakov) + + # 9.13.0 (2025-09-03) ## Highlights diff --git a/example/hll/go.mod b/example/hll/go.mod index 9b7619f7eb..3e7daab206 100644 --- a/example/hll/go.mod +++ b/example/hll/go.mod @@ -4,7 +4,7 @@ go 1.18 replace github.com/redis/go-redis/v9 => ../.. -require github.com/redis/go-redis/v9 v9.13.0 +require github.com/redis/go-redis/v9 v9.14.0 require ( github.com/cespare/xxhash/v2 v2.3.0 // indirect diff --git a/example/hset-struct/go.mod b/example/hset-struct/go.mod index 545cb65cfe..9728405f31 100644 --- a/example/hset-struct/go.mod +++ b/example/hset-struct/go.mod @@ -6,7 +6,7 @@ replace github.com/redis/go-redis/v9 => ../.. require ( github.com/davecgh/go-spew v1.1.1 - github.com/redis/go-redis/v9 v9.13.0 + github.com/redis/go-redis/v9 v9.14.0 ) require ( diff --git a/example/lua-scripting/go.mod b/example/lua-scripting/go.mod index 95de892562..5a0f446b14 100644 --- a/example/lua-scripting/go.mod +++ b/example/lua-scripting/go.mod @@ -4,7 +4,7 @@ go 1.18 replace github.com/redis/go-redis/v9 => ../.. -require github.com/redis/go-redis/v9 v9.13.0 +require github.com/redis/go-redis/v9 v9.14.0 require ( github.com/cespare/xxhash/v2 v2.3.0 // indirect diff --git a/example/otel/go.mod b/example/otel/go.mod index 1df58720bd..e5c4e49c45 100644 --- a/example/otel/go.mod +++ b/example/otel/go.mod @@ -12,7 +12,7 @@ replace github.com/redis/go-redis/extra/rediscmd/v9 => ../../extra/rediscmd require ( github.com/redis/go-redis/extra/redisotel/v9 v9.13.0 - github.com/redis/go-redis/v9 v9.13.0 + github.com/redis/go-redis/v9 v9.14.0 github.com/uptrace/uptrace-go v1.21.0 go.opentelemetry.io/otel v1.22.0 ) diff --git a/example/redis-bloom/go.mod b/example/redis-bloom/go.mod index e33b0c0104..b411c87c00 100644 --- a/example/redis-bloom/go.mod +++ b/example/redis-bloom/go.mod @@ -4,7 +4,7 @@ go 1.18 replace github.com/redis/go-redis/v9 => ../.. -require github.com/redis/go-redis/v9 v9.13.0 +require github.com/redis/go-redis/v9 v9.14.0 require ( github.com/cespare/xxhash/v2 v2.3.0 // indirect diff --git a/example/scan-struct/go.mod b/example/scan-struct/go.mod index 545cb65cfe..9728405f31 100644 --- a/example/scan-struct/go.mod +++ b/example/scan-struct/go.mod @@ -6,7 +6,7 @@ replace github.com/redis/go-redis/v9 => ../.. require ( github.com/davecgh/go-spew v1.1.1 - github.com/redis/go-redis/v9 v9.13.0 + github.com/redis/go-redis/v9 v9.14.0 ) require ( diff --git a/extra/rediscensus/go.mod b/extra/rediscensus/go.mod index fd43d6569e..2d0a612ed3 100644 --- a/extra/rediscensus/go.mod +++ b/extra/rediscensus/go.mod @@ -8,7 +8,7 @@ replace github.com/redis/go-redis/extra/rediscmd/v9 => ../rediscmd require ( github.com/redis/go-redis/extra/rediscmd/v9 v9.13.0 - github.com/redis/go-redis/v9 v9.13.0 + github.com/redis/go-redis/v9 v9.14.0 go.opencensus.io v0.24.0 ) diff --git a/extra/rediscmd/go.mod b/extra/rediscmd/go.mod index 10423895e9..be4ee30d34 100644 --- a/extra/rediscmd/go.mod +++ b/extra/rediscmd/go.mod @@ -7,7 +7,7 @@ replace github.com/redis/go-redis/v9 => ../.. require ( github.com/bsm/ginkgo/v2 v2.12.0 github.com/bsm/gomega v1.27.10 - github.com/redis/go-redis/v9 v9.13.0 + github.com/redis/go-redis/v9 v9.14.0 ) require ( diff --git a/extra/redisotel/go.mod b/extra/redisotel/go.mod index 6f1aa876c9..aa8fac5b03 100644 --- a/extra/redisotel/go.mod +++ b/extra/redisotel/go.mod @@ -8,7 +8,7 @@ replace github.com/redis/go-redis/extra/rediscmd/v9 => ../rediscmd require ( github.com/redis/go-redis/extra/rediscmd/v9 v9.13.0 - github.com/redis/go-redis/v9 v9.13.0 + github.com/redis/go-redis/v9 v9.14.0 go.opentelemetry.io/otel v1.22.0 go.opentelemetry.io/otel/metric v1.22.0 go.opentelemetry.io/otel/sdk v1.22.0 diff --git a/extra/redisprometheus/go.mod b/extra/redisprometheus/go.mod index e0c0083f99..23f8bd3f24 100644 --- a/extra/redisprometheus/go.mod +++ b/extra/redisprometheus/go.mod @@ -6,7 +6,7 @@ replace github.com/redis/go-redis/v9 => ../.. require ( github.com/prometheus/client_golang v1.14.0 - github.com/redis/go-redis/v9 v9.13.0 + github.com/redis/go-redis/v9 v9.14.0 ) require ( diff --git a/version.go b/version.go index bbbf7e9e05..eab15118f1 100644 --- a/version.go +++ b/version.go @@ -2,5 +2,5 @@ package redis // Version is the current release version. func Version() string { - return "9.13.0" + return "9.14.0" }