Releases: BitzArt/Blazor.Cookies
Releases · BitzArt/Blazor.Cookies
🍪 Blazor.Cookies v1.2
What's Changed
- 🧠 Smarter pending cookies by @YuriyDurov in #12
- ⬆️ Add target to dotnet 9; update nuget packages by @gaelj in #17
- 🔒 Add HttpOnly and Secure flags by @YuriyDurov in #19
- 🔒 SameSite Cookies by @YuriyDurov in #21
New Contributors
Full Changelog: Cookies-v1.1.0...Cookies-v1.2.0
🍪 Blazor.Cookies v1.1
Bugfixes
- Fixed cookies being attached twice to the HTTP response after
ICookieService.SetAsync
method called repeatedly for the same cookie. NowICookieService
is keeping track of already attached response cookies and will be updating the existing cookie when an attempt to set a cookie with the same key is made.