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
+19Lines changed: 19 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
9
10
10
## [Unreleased]
11
11
12
+
### Changed
13
+
14
+
- Increased VARCHAR field sizes in `DBLogger` table schema to accommodate longer URLs and user agent strings. Fields `host`, `path`, `queryString`, `referer`, and `userAgent` now use VARCHAR(1024) to prevent truncation of data.
15
+
- Updated `DBLogger` insert statements to truncate `host`, `path`, `queryString`, `referer`, and `userAgent` values to 1024 characters using `left()` function to prevent database errors.
16
+
17
+
### Fixed
18
+
19
+
- Allow for sub-modules to load AFTER cbsecurity loads.
20
+
- Make sure the jwt token is not null when doing discovery in the JwtService.
21
+
- Fixed `isSafeRedirectUrl()` host comparison for non-default ports by stripping port from host before comparing with URI host.
22
+
- ACF Compatibility: Fixed `dateTimeFormat` usage for `logDate` in activity view to prevent conversion errors in Adobe ColdFusion.
23
+
24
+
### Added
25
+
26
+
- Added `TokenRejectionException` handling in JWT handler to properly handle token rejection errors.
27
+
- Updated JWT handler error message calls to match specification.
28
+
- Added test cases for non-default port scenarios in `isSafeRedirectUrl()` validation.
29
+
- Added test validation for JWT response messages.
0 commit comments