Releases: TeslaGov/ngx-http-auth-jwt-module
Releases · TeslaGov/ngx-http-auth-jwt-module
2.4.0
2.3.2
2.3.1
2.2.0
What's Changed
- build custom SSL images; add SSL tests by @JoshMcCullough in #126
 - case-insenitive Bearer check #134 by @JoshMcCullough in #135
 
Full Changelog: 2.1.0...2.2.0
2.1.0
- #117 (PR: #118) -- thanks @swaeberle!
 - Build Date: 
2024-03-18 16:33:41+00:00 - Commit: 032fa5c
 
2.0.3
2.0.2
2.0.1
2.0.0
This release applies a number of feature adjustments, some of which may require small adjustments to your NGINX config. The goals of this release were cleanup and to remove places where we hard-coded a few things, allowing for greater flexibility.
- Breaking Change: Renamed directive 
auth_jwt_extract_subtoauth_jwt_validate_suband it no longer extracts the sub, it only validates that it is non-empty (as the name suggests). Note that this is off by default. - Breaking Change: Removed directive 
auth_jwt_validate_email-- useauth_jwt_extract_*_claimsinstead (see below). - Breaking Change: Renamed directive 
auth_jwt_validation_typetoauth_jwt_locationfor clarity (see below). - New Feature: Added 
auth_jwt_extract_request_claimsandauth_jwt_extract_response_claimswhich can be used to extract one or more claims from the JWT and place them on request or response cookies, and also access them by variable. See the README for more information. - New Feature: You may now specify a custom header which contains the JWT. Use the 
auth_jwt_locationdirective to do so, e.g.auth_jwt_location: HEADER=Auth-Token. You may optionally prefix the JWT with "Bearer ". (#72) - Fix: #82 -- Compatibility with nginx 1.23.0+
 - Cleanup: Some of the build process has been cleaned up and refactored, as well as the actual C code for the module.
 - Cleanup: The README has been cleaned up and reorganized.
 
1.2.0
- Updated to not respond with a "Location" header when redirects are disabled (#74)
 - Updated the README.
 - Fixed some tests.
 - Renamed variables for clarity.
 - Added support for higher-bit HS/RS algorithms (#80).
 - Fixed link with jansson (#63).
 - Fixed the 
cp_binfunction. - Fixed issues compiling on Ubuntu 22.04.