-
Notifications
You must be signed in to change notification settings - Fork 60
Bump StackExchange.Redis from 3.0.25 to 3.1.0 #541
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -12,7 +12,7 @@ | |
| <!-- primary library --> | ||
| <PackageVersion Include="NetTopologySuite" Version="2.6.0" /> | ||
| <PackageVersion Include="System.Text.Json" Version="10.0.10" /> | ||
| <PackageVersion Include="StackExchange.Redis" Version="3.0.25" /> | ||
| <PackageVersion Include="StackExchange.Redis" Version="3.1.0" /> | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
With StackExchange.Redis 3.1.0, callers can pass a retry-wrapped database from Useful? React with 👍 / 👎. |
||
| <!-- tests, etc --> | ||
| <PackageVersion Include="BouncyCastle.Cryptography" Version="2.7.0" /> | ||
| <PackageVersion Include="coverlet.collector" Version="10.0.1" /> | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This central version is consumed by
src/NRedisStack/NRedisStack.csproj, so packages built from the library now require StackExchange.Redis >= 3.1.0 instead of keeping the documented 3.0.x compatibility floor. The retry-category code explicitly avoids referencing the 3.1.0-only enum names so older 3.0.x consumers still work (src/NRedisStack/RedisStackCommands/CommandCategories.cs:11-13), and the tests already useVersionOverride="3.1.0"specifically to check those names while staying ahead of the library floor (tests/NRedisStack.Tests/NRedisStack.Tests.csproj:39-42). Consumers that remain on StackExchange.Redis 3.0.x therefore lose compatibility without a code need for the library itself to raise the floor.Useful? React with 👍 / 👎.