You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: changelog.md
+20Lines changed: 20 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,25 @@
1
1
# CHANGELOG
2
2
3
+
## 2.2.0
4
+
5
+
*`Feature` : Migrated from the jwt to the `jwtcfml` (https://forgebox.io/view/jwt-cfml) library to expand encoding/decoding capabilities to support `RS` and `ES` algorithms:
6
+
* HS256
7
+
* HS384
8
+
* HS512
9
+
* RS256
10
+
* RS384
11
+
* RS512
12
+
* ES256
13
+
* ES384
14
+
* ES512
15
+
*`Feature` : Added a new convenience method on the JWT Service: `isTokenInStorage( token )` to verify if a token still exists in the token storage
16
+
*`Feature` : If no jwt secret is given in the settings, we will dynamically generate one that will last for the duration of the application scope.
17
+
*`Feature` : New setting for `jwt` struct: `issuer`, you can now set the issuer of tokens string or if not set, then cbSecurity will use the home page URI as the issuer of authority string.
18
+
*`Feature` : All tokens will be validated that the same `iss` (Issuer) has granted the token
19
+
*`Improve` : Ability to have defaults for all JWT settings instead of always typing them in the configs
20
+
*`Improve` : More cfformating goodness!
21
+
*`Bug` : Invalidation of tokens was not happening due to not using the actual key for the storage
0 commit comments