Skip to content

Commit c587e0a

Browse files
committed
chore: merge
2 parents 8f688b1 + 91e866a commit c587e0a

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## [8.1.2](https://github.com/NetDevPack/Security.Jwt/compare/v8.1.1...v8.1.2) (2024-04-18)
2+
3+
4+
### Bug Fixes
5+
6+
* revoke reason to EF store ([3e99b2d](https://github.com/NetDevPack/Security.Jwt/commit/3e99b2d6791b884b5e081b3e95d337e116034a6a))
7+
8+
## [8.1.1](https://github.com/NetDevPack/Security.Jwt/compare/v8.1.0...v8.1.1) (2024-02-08)
9+
10+
11+
### Bug Fixes
12+
13+
* dotnet 8 release ([35c407b](https://github.com/NetDevPack/Security.Jwt/commit/35c407bac77d4b07d0f8aec9619207b32b1b0522))
14+
115
# [8.1.0](https://github.com/NetDevPack/Security.Jwt/compare/v8.0.0...v8.1.0) (2023-12-01)
216

317

src/NetDevPack.Security.Jwt.Store.EntityFrameworkCore/DatabaseJsonWebKeyStore.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ public async Task Revoke(KeyMaterial securityKeyWithPrivate, string reason = nul
108108
if (securityKeyWithPrivate == null)
109109
return;
110110

111-
securityKeyWithPrivate.Revoke();
111+
securityKeyWithPrivate.Revoke(reason);
112112
_context.Attach(securityKeyWithPrivate);
113113
_context.SecurityKeys.Update(securityKeyWithPrivate);
114114
await _context.SaveChangesAsync();

0 commit comments

Comments
 (0)