Skip to content

Releases: aboviq/emigrate

@emigrate/postgres@0.2.4

22 Jan 10:33
Compare
Choose a tag to compare

Patch Changes

  • Updated dependencies [ce15648]
    • @emigrate/types@0.11.0
    • @emigrate/plugin-tools@0.9.4

@emigrate/plugin-tools@0.9.4

22 Jan 10:33
Compare
Choose a tag to compare

Patch Changes

  • Updated dependencies [ce15648]
    • @emigrate/types@0.11.0

@emigrate/plugin-generate-js@0.3.4

22 Jan 10:33
Compare
Choose a tag to compare

Patch Changes

  • Updated dependencies [ce15648]
    • @emigrate/types@0.11.0
    • @emigrate/plugin-tools@0.9.4

@emigrate/mysql@0.2.4

22 Jan 10:33
Compare
Choose a tag to compare

Patch Changes

  • Updated dependencies [ce15648]
    • @emigrate/types@0.11.0
    • @emigrate/plugin-tools@0.9.4

@emigrate/cli@0.16.1

22 Jan 12:50
Compare
Choose a tag to compare

Patch Changes

  • 121492b: Sort migration files lexicographically correctly by using the default Array.sort implementation

@emigrate/cli@0.16.0

22 Jan 10:33
Compare
Choose a tag to compare

Minor Changes

  • a4da353: Handle process interruptions gracefully, e.g. due to receiving a SIGINT or SIGTERM signal. If a migration is currently running when the process is about to shutdown it will have a maximum of 10 more seconds to finish before being deserted (there's no way to cancel a promise sadly, and many database queries are not easy to abort either). The 10 second respite length can be customized using the --abort-respite CLI option or the abortRespite config.

Patch Changes

  • Updated dependencies [ce15648]
    • @emigrate/types@0.11.0
    • @emigrate/plugin-tools@0.9.4

@emigrate/cli@0.15.0

19 Jan 12:49
Compare
Choose a tag to compare

Minor Changes

  • f515c8a: Add support for the --no-execution option to the "up" command to be able to log migrations as successful without actually running them. Can for instance be used for baselining a database or logging manually run migrations as successful.
  • 9ef0fa2: Add --from and --to CLI options to control which migrations to include or skip when executing migrations.
  • 02c142e: Add --limit option to the "up" command, for limiting the number of migrations to run

Patch Changes

  • bf4d596: Clarify which cli options that needs parameters
  • 98adcda: Use better wording in the header in the console output from the default reporter

@emigrate/cli@0.14.1

18 Jan 14:26
Compare
Choose a tag to compare

Patch Changes

  • 73a8a42: Support stored migration histories that have only stored the migration file names without file extension and assume it's .js files in that case. This is to be compatible with a migration history generated by Immigration.

@emigrate/cli@0.14.0

18 Jan 13:53
Compare
Choose a tag to compare

Minor Changes

  • b083e88: Upgrade cosmiconfig to 9.0.0

@emigrate/cli@0.13.1

18 Jan 10:15
Compare
Choose a tag to compare

Patch Changes

  • 83dc618: Remove the --enable-source-maps flag from the shebang for better NodeJS compatibility