v0.9.4
What's Changed
- build(core): upgrade to nest v11.1.6 (and other dependencies) by @acrosett in #123
- build(core): upgrade to mikro-orm v6.5.2 by @acrosett in #123
- feat(cli): ensure DB schema on startup in main.ts by @acrosett in #123
- fix(core): checkForId patch many bug by @acrosett in #123
- feat(core): better typing for CrudSecurity by @acrosett in #123
Full Changelog: v0.9.3...v0.9.4
https://www.npmjs.com/org/eicrud
馃挜Breaking changes:
For mongo users:
In CRUD methods, string representations of ObjectIDs passed in first depth level arrays are now casted to ObjectID mongo type (for query and update). You might need to migrate your Database and cast such string representations to actual ObjectIDs so that your application can continue working.
This applies to you if your application has fields such as
@Property()
@IsString()
mongoIds: string[];