-
Notifications
You must be signed in to change notification settings - Fork 184
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,24 @@ | ||
2024-09-01 Christian Weiske <[email protected]> | ||
|
||
* BC break: Enforce bStrictObjectTypeChecking on arrays | ||
by @dktapps | ||
https://github.com/cweiske/jsonmapper/pull/225 | ||
* BC break: Only objects implementing both ArrayAccess and Traversable | ||
are handled as arrays now. | ||
Previously classes implementing only ArrayAccess were used as arrays, | ||
which broke non-traversable objects providing array access. | ||
by @daniser | ||
https://github.com/cweiske/jsonmapper/pull/224 | ||
* BC break: Reject NULL values in arrays unless explicitly allowed | ||
Set $bStrictNullTypesInArrays to get old behavior back. | ||
by @cweiske | ||
https://github.com/cweiske/jsonmapper/issues/233 | ||
* BC break: Default $bStrictObjectTypeChecking to true | ||
Class constructors are not called automatically anymore. | ||
by @cweiske | ||
https://github.com/cweiske/jsonmapper/issues/226 | ||
* Version 5.0.0 | ||
|
||
2024-09-08 Christian Weiske <[email protected]> | ||
|
||
* Add support "?type" syntax for nullable types | ||
|