From 025f309ddbe4b7c442ca7d17369dc890e73f9149 Mon Sep 17 00:00:00 2001 From: atakavci Date: Tue, 25 Mar 2025 11:11:34 +0300 Subject: [PATCH 1/2] bump v10.0.0.-beta1 --- README.md | 5 +++-- src/NRedisStack/NRedisStack.csproj | 6 +++--- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 9160b238..e4f509c2 100644 --- a/README.md +++ b/README.md @@ -40,8 +40,9 @@ Each module has a command class with its own commands. The supported modules are [Search](https://redis.io/commands/?group=search), [JSON](https://redis.io/commands/?group=json), [TimeSeries](https://redis.io/commands/?group=timeseries), [Bloom Filter](https://redis.io/commands/?group=bf), [Cuckoo Filter](https://redis.io/commands/?group=cf), [T-Digest](https://redis.io/commands/?group=tdigest), [Count-min Sketch](https://redis.io/commands/?group=cms), and [Top-K](https://redis.io/commands/?group=topk). -**Note:** RedisGraph support has been deprecated starting from Redis Stack version 7.2. For more information, please refer to [this blog post](https://redis.com/blog/redisgraph-eol/). -**IMPORTANT:** NRedisStack will end the support for Graph functionalities with version 0.13.x +**Note:** RedisGraph support has been deprecated starting from Redis Stack version 7.2. For more information, please refer to [this blog post](https://redis.com/blog/redisgraph-eol/).
+**IMPORTANT:** NRedisStack will end the support for Graph functionalities with version 0.13.x
+**IMPORTANT:** Starting from version **1.0.0-beta1**, by default, the client now overrides the server-side dialect with version 2, automatically appending `DIALECT 2` to commands like **FT.AGGREGATE** and **FT.SEARCH**. Be aware that the query dialect may impact the results returned. If needed, you can revert to a different dialect version by configuring the client accordingly. Please see [release notes](https://github.com/redis/NRedisStack/releases/tag/v1.0.0-beta1). # Usage diff --git a/src/NRedisStack/NRedisStack.csproj b/src/NRedisStack/NRedisStack.csproj index dec3fc1a..ac31fad2 100644 --- a/src/NRedisStack/NRedisStack.csproj +++ b/src/NRedisStack/NRedisStack.csproj @@ -10,9 +10,9 @@ Redis OSS .Net Client for Redis Stack README.md - 0.13.1 - 0.13.1 - 0.13.1 + 1.0.0-beta1 + 1.0.0-beta1 + 1.0.0-beta1 From 5b6470f94fa3fa4e76ffb03908e6389fdeca7c7b Mon Sep 17 00:00:00 2001 From: atakavci Date: Tue, 8 Apr 2025 11:34:48 +0300 Subject: [PATCH 2/2] suggestion from @slorello89 Co-authored-by: Steve Lorello <42971704+slorello89@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e4f509c2..499b6663 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ The supported modules are [Search](https://redis.io/commands/?group=search), [JS **Note:** RedisGraph support has been deprecated starting from Redis Stack version 7.2. For more information, please refer to [this blog post](https://redis.com/blog/redisgraph-eol/).
**IMPORTANT:** NRedisStack will end the support for Graph functionalities with version 0.13.x
-**IMPORTANT:** Starting from version **1.0.0-beta1**, by default, the client now overrides the server-side dialect with version 2, automatically appending `DIALECT 2` to commands like **FT.AGGREGATE** and **FT.SEARCH**. Be aware that the query dialect may impact the results returned. If needed, you can revert to a different dialect version by configuring the client accordingly. Please see [release notes](https://github.com/redis/NRedisStack/releases/tag/v1.0.0-beta1). +**IMPORTANT:** Starting from version **1.0.0-beta1**, by default, the client now overrides the [server-side dialect](https://redis.io/docs/latest/develop/interact/search-and-query/advanced-concepts/dialects/) with version 2, automatically appending `DIALECT 2` to commands like **FT.AGGREGATE** and **FT.SEARCH**. Be aware that the query dialect may impact the results returned. If needed, you can revert to a different dialect version by configuring the client accordingly. Please see [release notes](https://github.com/redis/NRedisStack/releases/tag/v1.0.0-beta1). # Usage