## What's Changed
- Security updates and dependency upgrades
- Upgraded the build tools
## New Contributors
* @sarahraqueld made their first contribution in https://github.com/thoughtbot/fish...
It would be good to add this expectation in both the tests where we verify the type of the value in the created object.
```
expect(user.createdAt).toBeInstanceOf(DateTime);
```
It would be good to add a few more tests demonstrating how `DeepPartial` handles nested values.
```
type Company = {
name: string;
users: User[];
};
const companyFactory = Factory.def...