Releases: evgomes/jwt-api
Releases · evgomes/jwt-api
3.1.2
- Updated .NET version to .NET 7.
- Updated all packages to match the new framework version.
- Enabled nullable types.
- Refactored API resources to use record types.
- Updated password hash implementation due to deprecated constructor in the previous version.
3.1.1
- Code refactoring to better organize project structure.
- Performance improvements.
- Added Global Using feature to reduce namespace imports.
3.1.0
- Fix security issues related to refreshing access tokens and revoking refresh tokens (see issue #14 for details).
3.0.0
- Updated .NET version from .NET Core 3.1 to .NET 6.
- Updated all packages to match the new version.
2.0.1
- Changed signing key validation to avoid issues when validating tokens between potential API crashes.
This fixes issues when you are running the API and some access tokens are sent to client applications.
If the API crashes or becomes unavailable for some time, it needs to be restarted. Once the application restarts, the signing configuration will be the same. This way, tokens sent before the API restart are still valid.
On previous implementations, there was an issue with the signing key, and tokens became invalid after API restarts.
2.0.0
- Fixed compile-time issues;
- Updated API to ASP.NET Core 3.1;
- Added Swagger;
- Updated README.
1.0.1
Fixed issues related to IIS integration and Visual Studio 2017. Updated SDK version to 2.1 and all packages references.