chore(deps): update dependency stackexchange.redis to 2.11.8#4998
chore(deps): update dependency stackexchange.redis to 2.11.8#4998
Conversation
There was a problem hiding this comment.
Code Review: Dependency Update - StackExchange.Redis 2.11.3 → 2.11.8
This is a straightforward Renovate Bot patch update. The changes are clean and correct.
Summary of Changes
Directory.Packages.props: Central version bumped from2.11.3to2.11.8examples/CloudShop/CloudShop.Tests/CloudShop.Tests.csproj: Direct package reference also bumped
Notable Observations
Inconsistent version management: The project uses Directory.Packages.props for centralized package management (CPM), but CloudShop.Tests.csproj has a direct <PackageReference> with an explicit version rather than relying on the central version. With CPM enabled, all package versions should be defined centrally in Directory.Packages.props and child projects should omit the Version attribute on <PackageReference>. Having both results in two places to update per dependency bump (as evidenced by this PR needing to update both files).
Suggested fix: In examples/CloudShop/CloudShop.Tests/CloudShop.Tests.csproj, change:
<PackageReference Include="StackExchange.Redis" Version="2.11.8" />to:
<PackageReference Include="StackExchange.Redis" />This would let the central Directory.Packages.props be the single source of truth, reducing future maintenance burden. The reason this matters: with CPM, duplicate versioning can cause confusion, and Renovate has to patch two files instead of one, increasing the risk of drift.
Release Notes Review
The 2.11.3 → 2.11.8 range includes only bug fixes:
- Handling
-MOVEDerrors pointing to the same endpoint - Fixing time conversion errors in
HOTKEYS
No breaking changes; safe to merge.
Verdict: Approve with the minor suggestion above to clean up the version management inconsistency.
This PR contains the following updates:
2.11.3→2.11.8Release Notes
StackExchange/StackExchange.Redis (StackExchange.Redis)
v2.11.8Compare Source
What's Changed
-MOVEDerror pointing to same endpoint. by @barshaul in #3003HOTKEYSby @mgravell in #3017-MOVEDtest by @mgravell in #3020New Contributors
Full Changelog: StackExchange/StackExchange.Redis@2.11.3...2.11.8
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Renovate Bot.