2.4.2
- Pass meteor methods down the inheritance tree #596
- Allow casting array elements for embedded field names
const user = new User();
// Now casting works also for array elements
user.set('phones.0', '123456789', {
cast: true
});
const user = new User();
// Now casting works also for array elements
user.set('phones.0', '123456789', {
cast: true
});