Skip to content

prepare to release 5.0.4 #220

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

Merged
merged 1 commit into from
Jan 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/release_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ Below is a summary of the the main features/bug fixes in the most recent release

## Session State Provider Release Notes

### v5.0.4

Remove empty catch swallowing serialization errors.

### v5.0.3

This version fixes a bug in v5.0.2 where the null check during deserialization was not sufficient. We added a try-catch back to the method.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<SignAssembly Condition=" '$(EnableCodeSigning)' == 'true' ">true</SignAssembly>
<DelaySign Condition=" '$(EnableCodeSigning)' == 'true' ">true</DelaySign>
<AssemblyOriginatorKeyFile Condition=" '$(EnableCodeSigning)' == 'true' ">dummy.snk</AssemblyOriginatorKeyFile>
<VersionPrefix>5.0.3</VersionPrefix>
<VersionPrefix>5.0.4</VersionPrefix>
<authors>Microsoft</authors>
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
<Description>Custom session state provider for redis cache.</Description>
Expand Down