Skip to content

Latest commit

 

History

History
210 lines (90 loc) · 9.02 KB

CHANGELOG.md

File metadata and controls

210 lines (90 loc) · 9.02 KB

Changelog

0.6.0 (2021-03-23)

Bug Fixes

0.5.0 (2021-03-15)

Features

0.4.1 (2021-03-04)

Bug Fixes

  • do not put templates in subdirectories (a7e2a34)

0.4.0 (2021-02-23)

Features

  • add authentication provider using model (8fb56a7)

Bug Fixes

  • abort migration transaction in case of error (#47) (8a46ef1)
  • correctly handle already running migrations in migrate command (b6efc7c)

0.3.6 (2021-01-08)

Bug Fixes

  • remove peer dependency on adonis core (fa35ba6)

0.3.5 (2020-11-02)

Bug Fixes

0.3.4 (2020-10-14)

Bug Fixes

  • in-memory typescript keeps migrations as TS files (#36) (7f4fd20)
  • rename handle with run (#34) (70c1b53)

0.3.3 (2020-10-14)

Bug Fixes

  • migration: correctly extract name from migrations and check for dups (7c6dec1)

0.3.2 (2020-10-12)

Bug Fixes

0.3.1 (2020-10-07)

Features

  • add merge and fill methods (#23) (0b9d3ef)
  • support instantiating models before saving (#17) (25d194a)

0.3.0 (2020-09-29)

Features

  • migrations paths can be configured in the config file (#8) (fb8934d)
  • pass session on object instantiation (#16) (1395ba0)

0.2.2 (2020-09-09)

Bug Fixes

  • correct incremental id in AutoIncrementModel (8a20201)
  • do not create a config subfolder (#4) (a86e79b)
  • show accurate information in status command (6580db9)

0.2.1 (2020-09-02)

0.2.0 (2020-09-02)

Bug Fixes

  • correct migration batch number (66af888)
  • don't log description twice (923048f)
  • only use transaction when creating indexes if collection does not exist (94fa3fb)
  • use original type on id getter (78317c1)

Features

  • add command show migration status (0ef66d2)

  • add defer method to migration module (ff7c60a)

  • add incremental model (e7574f6)

  • allow to add description to migration (7c075e7)

  • execute all pending migrations in one transaction (1581854)

  • rename migrate command (c6ce51b)

BREAKING CHANGES

  • do not convert to string in id getter
  • Model is no longer a default export but a named export
  • renamed the migrate command to match how lucid names migration commands

0.1.7 (2020-04-14)

0.1.6 (2020-01-13)

Bug Fixes

  • skip lib checks (7fd8507)
  • commands: inject db in handle method (303fdf1)

0.1.5 (2019-12-06)

Bug Fixes

  • actually execute the up() method (3d8740f)

0.1.4 (2019-12-03)

Bug Fixes

  • enable emitDecoratorMetadata (407554e)

0.1.3 (2019-12-03)

Bug Fixes

  • transpile optional properties (d22d8d1)

0.1.2 (2019-12-03)

Bug Fixes

  • really correctly read templates (ad4c812)

0.1.1 (2019-12-03)

Bug Fixes

  • correctly refer to template directory (dab86ad)

0.1.0 (2019-12-03)

Bug Fixes

  • rename types from .d.ts to .ts (4a0cd71)

Features