Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
### v4.3.1 (2026-02-23)
* * *

### Bug Fixes:
* Fixed `JsonUtil` to only extract top-level keys from JSON objects. Previously, regex-based matching could return values from nested objects or arrays (e.g., `id` or `amount` inside `line_items`) instead of the correct root-level value.
* Custom fields (`cf_*`) are now correctly extracted from the root level only and no longer leak from nested objects or arrays.
* Numeric parsing methods (`getLong`, `getInteger`, `getDouble`, `getBigDecimal`) now return `null` instead of throwing `NumberFormatException` on malformed or overflow values.

### v4.3.0 (2026-02-20)
* * *

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.3.0
4.3.1
Loading