Skip to content

Latest commit

 

History

History
192 lines (84 loc) · 6.53 KB

CHANGELOG.md

File metadata and controls

192 lines (84 loc) · 6.53 KB

6.0.1 (2024-05-19)

Bug Fixes

  • reuse single MikroORM instance (3656eaf)
  • improve support for driver specific imports (a71c354)

6.0.0 (2024-05-19)

Features

Bug Fixes

  • await useFactory resolution when registering MikroORM with forRootAsync (#166) (ae637bd)

BREAKING CHANGES

5.2.3 (2023-08-23)

Features

  • defer automatic clear call on autoLoadEntities cache done on shutdown (8b670eb)

5.2.2 (2023-08-23)

Features

  • clear the autoLoadEntities cache automatically on app shutdown (#4733) (aca7c01)

5.2.1 (2023-08-16)

Bug Fixes

  • fix weird bugs when vitest is used with autoLoadEntities (cd7767a), closes #134

Features

5.2.0 (2023-06-24)

  • support NestJS 10

5.1.8 (2023-03-29)

  • support TS 5

5.1.7 (2023-02-12)

  • support custom repositories in v6
  • export MikroORMs provider (#88)

5.1.6 (2023-01-09)

  • tries to fix issue with async useFactory
  • tries to fix issue with autoLoadEntities and repeatable init/close calls

5.1.5 (2022-12-19)

  • fixes some edge cases after the fix from 5.1.3

5.1.4 (2022-12-19)

  • removes yarn v3 constraint from package.json engines

5.1.3 (2022-12-18)

  • this version uses different mechanism for registering the EntityManager flavours (e.g. SqlEntityManager), which should also help with pnpm dependency resolution issues

5.1.2 (2022-09-13)

  • this version adds all ORM packages as optional peer dependencies, which might help with PNPM dependency resolution (#81)

5.1.1 (2022-08-14)

Bug Fixes

  • make the forFeature type more loose and accept any EntitySchema (c0012c9)
  • return same EM fork for EM from core and driver packages (#82) (d6789f6)

5.1.0 (2022-07-08)

Features

5.0.2 (2022-05-09)

Bug Fixes

  • ensure correct application shutdown with forRootAsync and multiple databases (#75) (91b6faf)
  • ensure correct contextName in forRootAsync (#74) (4609e5d)

5.0.1 (2022-03-11)

Bug Fixes

  • multiple database connection with autoLoadEntities (#62) (7dfc097)

5.0.0 (2022-02-20)

Bug Fixes

  • use constant imports for webpack bundling (47f56ff), closes #57

Features

  • support multiple database connections (#56) (df4725b)
  • return value from UseRequestContext callback (#28) (4bf5b0f)

BREAKING CHANGES

4.3.0 (2021-08-19)

Features

4.2.0 (2020-09-25)

Features

  • core: allow setting a custom scope for the EntityManager provider (#9) (c11e0ea), closes #2

4.1.0 (2020-09-23)

Features

  • core: add @UseRequestContext() decorator (7aeac9d), closes #5
  • core: add autoLoadEntities option (ceaf16e), closes #8

4.0.0 (2020-09-08)

Features

  • support for MikroORM 4
  • call orm.close() on app shutdown (63a5c3f)
  • support fastify (5365e26)
  • support forRoot() without options (dfbfbcf)