v2.15.1
·
155 commits
to main
since this release
Patch Changes
-
#182
f3f2c4aThanks @abdipramana! - Preserve child property keys when lowering nested array selections. Queries such asAction.select(action => ({image: action.image.select(image => [image.contentUrl])}))now map the nested value toimage.contentUrlinstead of incorrectly returning it asimage.image. -
#183
81c7b56Thanks @abdipramana! - Preserve concrete nested shapes when serializing polymorphicpreloadFor()queries. A preload such asperson.pets.as(Dog).preloadFor(DogCard)now records theDogshape IRI on the wire, allowing fields defined only onDogto resolve correctly after client-server deserialization.