When you use reducers with a body that uses a link that should return a single result, you will now get the object, not an array with a single element.
SimpleSchema has been completely removed and it will no longer extend your Collection's schema automatically, therefore, if you have configured links you have to manually add them.
For example the following link:
```js
Users.addLinks({
post: {
type: 'one',
collection: Posts,
field: 'postId'
}
});
```
Requires the respective field in your Collection's schema: