From 67afef50aca186e67e3376bbfdb845a57408232c Mon Sep 17 00:00:00 2001 From: "David W. Dougherty" Date: Tue, 30 Sep 2025 11:47:27 -0700 Subject: [PATCH 1/2] DEV: update what's new page for 3Q2025 --- content/develop/whats-new/_index.md | 48 +++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/content/develop/whats-new/_index.md b/content/develop/whats-new/_index.md index 6e95ea843..f037231ae 100644 --- a/content/develop/whats-new/_index.md +++ b/content/develop/whats-new/_index.md @@ -11,6 +11,54 @@ linkTitle: What's new? hideListLinks: true weight: 10 --- +## Q3 2025 (July - September) Updates + +### Tools + +- Added [redis-cli installation instructions]({{< relref "/develop/tools/cli" >}}) + +--- + +### Redis AI & Vectors + +- Updated [vector types documentation]({{< relref "/develop/ai/search-and-query/vectors/_index" >}}) for INT8 and UINT8 +- Added [GEO search precision information]({{< relref "/develop/ai/search-and-query/indexing/geoindex" >}}) +- Enhanced [LangCache SDK]({{< relref "/develop/ai/langcache/_index" >}}) with savings calculator and improved API documentation + +--- + +### Data Types + +- [Bitmaps]({{< relref "/develop/data-types/bitmaps" >}}): + - Added BITOP documentation with Python testable code examples + - Added bit operation diagrams + +--- + +### Client Libraries + +#### Java (Jedis) +- Added [vector set embedding examples]({{< relref "/develop/clients/jedis/vecsets" >}}) + +#### .NET (NRedisStack) +- Added [vector set embedding examples]({{< relref "/develop/clients/dotnet/vecsets" >}}) +- Enabled C#-Sync client variant with async examples + +#### Rust (NEW) +- Added initial [Rust client documentation]({{< relref "/develop/clients/rust/_index" >}}) +- Enabled Rust-Sync and Rust-Async client variants +- Added testable code examples for Rust + +--- + +### Documentation Updates + +- Added [close/quit details]({{< relref "/develop/clients/_index" >}}) to client landing pages +- Added [redlock-universal]({{< relref "/develop/clients/patterns/distributed-locks" >}}) to Redlock implementations list +- Fixed [keyspace notifications]({{< relref "/develop/pubsub/keyspace-notifications" >}}) typo +- Updated Unicode quotes to ASCII throughout documentation +- Fixed broken links and improved cross-references + ## Q2 2025 (April - June) Updates ### Tools From 28473a0c86e9785ae92b40643f6423ef0df54c0e Mon Sep 17 00:00:00 2001 From: David Dougherty Date: Wed, 1 Oct 2025 06:27:14 -0700 Subject: [PATCH 2/2] Apply suggestions from code review Co-authored-by: andy-stark-redis <164213578+andy-stark-redis@users.noreply.github.com> --- content/develop/whats-new/_index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/develop/whats-new/_index.md b/content/develop/whats-new/_index.md index f037231ae..d7382fbd3 100644 --- a/content/develop/whats-new/_index.md +++ b/content/develop/whats-new/_index.md @@ -42,12 +42,12 @@ weight: 10 #### .NET (NRedisStack) - Added [vector set embedding examples]({{< relref "/develop/clients/dotnet/vecsets" >}}) -- Enabled C#-Sync client variant with async examples +- Enabled C#-Sync and C#-Async client variants with async examples on the landing page #### Rust (NEW) - Added initial [Rust client documentation]({{< relref "/develop/clients/rust/_index" >}}) - Enabled Rust-Sync and Rust-Async client variants -- Added testable code examples for Rust +- Landing page code examples for Rust ---