You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support for the RedisJSON Module can be enabled by specifying "json" as a feature in your Cargo.toml.
162
162
163
-
`redis = { version = "0.23.3", features = ["json"] }`
163
+
`redis = { version = "0.23.4", features = ["json"] }`
164
164
165
165
Then you can simply import the `JsonCommands` trait which will add the `json` commands to all Redis Connections (not to be confused with just `Commands` which only adds the default commands)
* Move response policy into multi-node routing. ([#952](https://github.com/redis-rs/redis-rs/pull/952))
25
+
* Added functions that allow tests to check version. ([#963](https://github.com/redis-rs/redis-rs/pull/963))
26
+
* Fix XREADGROUP command ordering as per Redis Docs, and compatibility with Upstash Redis ([#960](https://github.com/redis-rs/redis-rs/pull/960)@prabhpreet)
27
+
* Optimize make_pipeline_results by pre-allocate memory ([#957](https://github.com/redis-rs/redis-rs/pull/957)@PureWhiteWu)
28
+
* Run module tests sequentially. ([#956](https://github.com/redis-rs/redis-rs/pull/956))
29
+
* Log cluster creation output in tests. ([#955](https://github.com/redis-rs/redis-rs/pull/955))
30
+
* CI: Update and use better maintained github actions. ([#954](https://github.com/redis-rs/redis-rs/pull/954))
31
+
* Call CLIENT SETINFO on new connections. ([#945](https://github.com/redis-rs/redis-rs/pull/945))
32
+
* Deprecate functions that erroneously use `tokio` in their name. ([#913](https://github.com/redis-rs/redis-rs/pull/913))
33
+
* CI: Increase timeouts and use newer redis. ([#949](https://github.com/redis-rs/redis-rs/pull/949))
34
+
* Remove redis version from redis-test. ([#943](https://github.com/redis-rs/redis-rs/pull/943))
35
+
36
+
37
+
### 0.23.4 (2023-09-01)
2
38
3
39
Note that this release fixes a small regression in async Redis Cluster handling of the `PING` command.
4
40
Based on updated response aggregation logic in [#888](https://github.com/redis-rs/redis-rs/pull/888), it
@@ -8,6 +44,7 @@ will again return a single response instead of an array.
0 commit comments