Skip to content

Releases: redis/NRedisStack

1.0.0-beta1

24 Mar 15:38
76465cc
Compare
Choose a tag to compare
1.0.0-beta1 Pre-release
Pre-release

Changes

This release introduces a client-side default dialect for Redis’ search and query capabilities. 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.

Important: 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.

        IDatabase db = ConnectionMultiplexer.Connect("localhost:6379").GetDatabase();
        var ft = db.FT();
        ft.SetDefaultDialect(1);
        var searcResults = ft.Search("myIndex", new Query());

You can find further details in the query dialect documentation.

This release also removes support for both RedisGraph and Triggers & Functions(aka RedisGears v2).

🔥 Breaking Changes

  • Set DIALECT 2 as default configurable dialect version (#355)
  • Bump System.Text.Json from 7.0.2 to 9.0.1 (#371)
  • Handle FT.PROFILE response (impacted with Coordinator) processing with "ProfilingInformation" (#373)
  • Fix default dialect settings (#374)
  • Drop RedisGraph support (#394)
  • Drop RedisGears support (#397)

🚀 New Features

  • Make FieldName Properties Public (#353)

🐛 Bug Fixes

  • Fix nested batch issue when initial command is within a pipeline (#402)
  • Fix default dialect settings (#374)
  • Fix failing docuement.load in query results with an expired doc (#357)
  • Handle INDEXEMPTY and INDEXMISSING in FT.INFO response (#356)

🧰 Maintenance

  • Bump 8.0 CE version to M4-pre (#389)
  • Test for supporting INT8 and UINT8 vector types (#399)
  • Bump Redis 8.0 version in pipeline (#400)
  • Bump System.Text.Json from 9.0.1 to 9.0.2 (#398)
  • Enable doc tests with new test infra (#391)
  • Bump BouncyCastle.Cryptography from 2.5.0 to 2.5.1 (#396)
  • Bump xunit.runner.visualstudio from 3.0.1 to 3.0.2 (#395)
  • Adding notes on REDIS_VERSION (#393)
  • Auto set version in csproj (#392)
  • CONFIG and INFO command releated changes with Redis CE 8.0 (#387)
  • Changing behaviours in Redis CE 8.0 (#388)
  • Fix formatting issues (#386)
  • Fix failing tests for CLIENT INFO on 8.0 (#382)
  • Migrate xunit 2.9.3 (#385)
  • Bump xunit.assert from 2.4.1 to 2.9.3 (#367)
  • Bump coverlet.msbuild from 6.0.3 to 6.0.4 (#377)
  • Bump coverlet.collector from 6.0.3 to 6.0.4 (#378)
  • Bump Validation and Xunit.SkippableFact (#384)
  • Handle "Xunit.SkipException" in tests discoverer (#383)
  • Fix CI windows test (#381)
  • Enable testing against CE 8.0-M2 and M3 (#380)
  • Revamp tests (#350)
  • DOC-4448 code examples for hgetall and hvals (#370)
  • Piipeline fix for dotnet versions in ubuntu-latest (#372)
  • Bump xunit.runner.visualstudio from 3.0.0 to 3.0.1 (#369)
  • Bump coverlet.collector from 3.2.0 to 6.0.3 (#366)
  • Bump Microsoft.NET.Test.Sdk from 17.10.0 to 17.12.0 (#364)
  • Bump dotenv.net from 3.1.3 to 3.2.1 (#363)
  • Bump StackExchange.Redis from 2.8.16 to 2.8.24 (#362)
  • Bump coverlet.msbuild from 6.0.2 to 6.0.3 (#360)
  • Bump xunit.runner.visualstudio from 2.8.2 to 3.0.0 (#359)
  • Bump BouncyCastle.Cryptography from 2.3.1 to 2.5.0 (#358)
  • Bump xunit.runner.visualstudio from 2.4.3 to 2.8.2 (#321)
  • Bump Microsoft.NET.Test.Sdk from 16.11.0 to 17.10.0 (#299)
  • Bump BouncyCastle.Cryptography from 2.2.0 to 2.3.1 in /tests/NRedisStack.Tests in the nuget group across 1 directory (#298)
  • Azure EntraID (Token Based Authentication) integration tests (#344)

Contributors

We'd like to thank all the contributors who worked on this release!

@andy-stark-redis, @atakavci, @uglide and @zhskay

0.13.2

07 Feb 10:45
Compare
Choose a tag to compare

Changes

  • Fixes the bug with FT.INFO response among other small improvements listed below

🚀 New Features

  • Make FieldName Properties Public (#353)

🐛 Bug Fixes

  • Handle INDEXEMPTY and INDEXMISSING in FT.INFO response (#356)

🧰 Maintenance

  • Auto set version in csproj (#392)
  • Azure EntraID (Token Based Authentication) integration tests (#344)

Contributors

We'd like to thank all the contributors who worked on this release!

@atakavci, @uglide and @zhskay

0.13.1

22 Nov 10:14
15fd7d2
Compare
Choose a tag to compare

🚀 New Features

Till version 1.8, only the sum, min, and max could be used as reducer types.
It is now possible, for example, to calculate the maximal temperature per timeframe for each sensor and then report the average temperature (avg reducer) over groups of sensors (grouped by a given label's value).
This can be specified with the new reducer types (TS.MRANGE and TS.MREVRANGE: avg, range, count, std.p, std.s, var.p, and var.s.

🐛 Bug Fixes

  • Fix for 'toList' reducer results empty (#346)

🧰 Maintenance

  • Load Redis test endpoints from config file or env vars (#294)
  • Deprecate Triggers and Functions (#343)

Contributors

We'd like to thank all the contributors who worked on this release!

@andy-stark-redis, @atakavci and @uglide

0.13.0

13 Sep 13:21
7aedb1c
Compare
Choose a tag to compare

Redis 7.4 support

This release is based on SE.Redis 2.8.16, with Redis 7.4 support, including:

🔥 Breaking Changes

  • Change InfoResult::Attributes Returned Value to Array of Arrays (#295)

🚀 New Features

  • Verify library support for float16 and bfloat15 types in vector fields (#317)
  • Support for index and search with missing / empty values (#315)
  • Time-series insertion filters that allow ignoring close-by samples (#303)

🐛 Bug Fixes

  • Fix ts.create UNCOMPRESSED set to false explicitly (#329)
  • Change InfoResult::Attributes Returned Value to Array of Arrays (#295)
  • Set initial client info with first 'transaction' creation (#290)

🧰 Maintenance

  • Update to SE.Redis 2.8.16 (#335)
  • Add GithubActionsTestLogger to CI (#311)
  • Switch to use of "docker compose" instead of "docker-compose" on CI (#328)
  • Apply avoiding assembly level parallelism for enterprise redis and windows tests on CI (#327)
  • Fix failing doc tests by avoiding parallelization at assembly level (#326)
  • Fix parser for new reponse in FT.PROFILE #306 (#307)
  • Update StackExchange.Redis Version to 2.7.33 (#278)
  • Bump dotenv.net from 3.1.2 to 3.1.3 (#270)
  • Bump coverlet.msbuild from 3.2.0 to 6.0.2 (#268)
  • Create dependabot.yml (#266)
  • Updating the release drafter to the latest standard (#264)
  • Enhance code readability (#241)

Contributors

We'd like to thank all the contributors who worked on this release!

@andy-stark-redis, @atakavci, @chayim, @dependabot, @dependabot[bot], @nimanikoo and @shacharPash

0.12.0

12 Mar 10:53
ccd74b5
Compare
Choose a tag to compare

Changes

🔥 Breaking Changes

  • Changing AggregationRequest to generate based on provided argument order (#259)

🚀 New Features

  • Add support for blocking XREAD and XREADGROUP (#256)
  • Async blocking commands (#257)
  • Adding LATEST arg support for TS.MRANGE (#236)
  • Add support for BZMPOP, BZPOPMIN and BZPOPMAX (#240)
  • Add more blocking commands (#253)

🐛 Bug Fixes

  • Changing AggregationRequest to generate based on provided argument order (#259)

🧰 Maintenance

  • Update Version to 0.12.0 (#263)
  • Test binary package in CI (#252)
  • Switch to public Redis Enterprise for CI (#261)
  • Testing against Redis Enterprise in CI (#229)
  • Use redisFixture in all tests (#244)
  • Fix dotnet version testing (#242)
  • Add code snippet for Sorted Sets (#246)

Contributors

We'd like to thank all the contributors who worked on this release!

@atmuccio, @gerzse and @shacharPash

0.11.0

19 Dec 09:15
cbbfaae
Compare
Choose a tag to compare

🚀 New Features

  • Fix SETINFO Format (#203)
  • Added JsonSerializerOptions parameter to Set and SetAsync methods. (#223)

🐛 Bug Fixes

  • Fix timestamp cast to datetime (#226)
  • Add null check to Json.Get (#199)

🧰 Maintenance

  • Update Version to 0.11.0 (#228)
  • Changing TimeStamp to a value type in order to reduce unnecessary heap allocations (#225)
  • Bumped spellcheck action to latest version, since 0.23.0 is EOL (#206)
  • dotnet 8 CI (#205)

Contributors

We'd like to thank all the contributors who worked on this release!

@AmirShitrit, @RickyLin, @chayim, @jonasbn and @shacharPash

0.10.1

22 Oct 11:41
e32b6b6
Compare
Choose a tag to compare

Changes

🐛 Bug Fixes

  • Fix library versioning: reading version from assembly (#196)

🧰 Maintenance

  • set_tutorial snippets (#197)

Contributors

We'd like to thank all the contributors who worked on this release!

@slorello89

0.10.0

19 Oct 14:44
01e823c
Compare
Choose a tag to compare

Changes

🚀 New Features

  • Support CLIENT SETINFO Command (#180)
  • Pass in JsonSerializerOptions to generic methods (#187)
  • Support GEOSHAPE field type in RediSearch (#191)
  • Initial support for OSS Cluster API (#170)

🧰 Maintenance

  • Version 0.10.0 (#194)
  • Linking to Redis learning resources (#193)
  • Creating CODEOWNERS for documentation (#192)
  • Lint checks in CI runs (#183)
  • Disabling multiple runs of a PR based on commit (#189)
  • Clean warnings (#184)
  • Update README (#182)

Contributors

We'd like to thank all the contributors who worked on this release!

@MichaelDeutschCoding, @chayim and @shacharPash

0.9.0

03 Sep 13:17
627c89b
Compare
Choose a tag to compare

Changes

  • Version 0.9.0 (#181)

🧪 Experimental Features

  • Split TFCALL to TFCALL and TFCALLASYNC (#178)

🐛 Bug Fixes

  • Move SORTABLE to the end of the build command (#176)

🧰 Maintenance

  • Deprecate RedisGraph (#177)
  • Add devcontainer development environment (#169)

Contributors

We'd like to thank all the contributors who worked on this release!

@chayim, @haysch and @shacharPash

0.8.1

16 Aug 12:40
80ec286
Compare
Choose a tag to compare

What's new?

Triggers and Functions support (#145)

Triggers and Functions allow you to execute server-side functions triggered when key values are modified or created in Redis, a stream entry arrival, or explicitly calling them. Simply put, you can replace Lua scripts with easy-to-develop JavaScript or TypeScript code. Move your business logic closer to the data to ensure a lower latency, and forget about updating dependent key values manually in your code.
Try it for yourself with Quick start

Add support for extended search commands (#151)

Add support for FT.SPELLCHECK, FT.PROFILE and Auto-suggest Command.

🐛 Bug Fixes

  • Introduce procedure mode selection for RedisGraph (#162)

🧰 Maintenance

  • Removing Moq as a dependency for mock unit tests (#168)
  • Updating CI to latest redis versions (#163)
  • Add SkipIfRedisVersion Attribute to skip tests depending on the Redis version (#163)
  • Updating client license to clearly be MIT (#167)
  • Adding Hash Examples (#159)

Contributors

We'd like to thank all the contributors who worked on this release!

@chayim, @haysch, @shacharPash and @slorello89