Releases: Naoray/nova-json
Releases · Naoray/nova-json
v3.1.0
What's Changed
- Laravel 11.x Compatibility by @laravel-shift in #17
New Contributors
- @laravel-shift made their first contribution in #17
Full Changelog: v3.0.0...v3.1.0
3.0.0
What's Changed
- Allow Nova 4 by @gisostallenberg in #15
New Contributors
- @gisostallenberg made their first contribution in #14
Full Changelog: v2.0.0...v3.0.0
2.0.0
1.3.1
1.2.3
1.2.2
1.2.1
Fixed
- bug where nested JSON structures would return only partly resolved with
->
instead of having an array structure.
$incoming = [
'field_name->foo' => 'bar',
'field_name->bar->blub' => 'fooBar'
];
// previously resolved to
[
'foo' => 'bar',
'bar->blub' => 'fooBar'
]
// now resolved to
[
'foo' => 'bar',
'bar' => ['blub' => 'fooBar']
]