chore(release): version packages (#12)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Joakim Carlstein 2023-11-16 12:59:28 +01:00 committed by GitHub
parent 30a448b4cf
commit b61072a3b6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
23 changed files with 77 additions and 83 deletions

View file

@ -1,5 +0,0 @@
---
'@emigrate/plugin-tools': patch
---
Add missing types and utility methods related to the new "loader" plugins

View file

@ -1,5 +0,0 @@
---
'@emigrate/cli': minor
---
Support migration functions using the old NodeJS callback style API, i.e. accepting a callback as a single parameter which in turns takes any error as its first parameter (any other parameters are ignored)

View file

@ -1,5 +0,0 @@
---
'@emigrate/cli': patch
---
Don't run any migrations if there's a failed migration in the migration history

View file

@ -1,7 +0,0 @@
---
'@emigrate/plugin-generate-js': patch
'@emigrate/plugin-tools': patch
'@emigrate/cli': patch
---
Specify files to include in published NPM package

View file

@ -1,5 +0,0 @@
---
'@emigrate/plugin-tools': minor
---
Add the convenience functions `getOrLoadPlugin` and `getOrLoadPlugins`

View file

@ -1,5 +0,0 @@
---
'@emigrate/cli': minor
---
Handle file extensions with or without a leading period, i.e. `emigrate new -e .js ...` is now the same as `emigrate new -e js ...`

View file

@ -1,5 +0,0 @@
---
'@emigrate/cli': minor
---
Implement the "up" command with support for "storage" and "loader" plugins

View file

@ -1,5 +0,0 @@
---
'@emigrate/cli': minor
---
Rename the "emigrate" package to "@emigrate/cli" to mimic other tools

View file

@ -1,5 +0,0 @@
---
'@emigrate/plugin-storage-fs': minor
---
Implement a first version of the File System Storage plugin for simple migration setups

View file

@ -1,5 +0,0 @@
---
'@emigrate/plugin-tools': minor
---
Add more properties to the MigrationMetadata type to ease writing "loader" plugins

View file

@ -1,5 +0,0 @@
---
'@emigrate/plugin-tools': minor
---
Prepare for supporting "loader" plugins. A loader plugin is used to transform a migration file of a given type (file extension) to a function that will execute the actual migration.

View file

@ -1,5 +0,0 @@
---
'@emigrate/cli': minor
---
Improve error handling by making more granular custom Error instances

View file

@ -1,5 +0,0 @@
---
'@emigrate/cli': minor
---
Implement a default "loader" plugin for JavaScript files (supports `.js`, `.cjs` and `.mjs` file extensions)

View file

@ -1,5 +0,0 @@
---
'@emigrate/cli': patch
---
Fix a logical error that didn't allow creating new migration files with only the "extension" option

View file

@ -1,7 +0,0 @@
---
'@emigrate/plugin-generate-js': minor
'@emigrate/plugin-tools': minor
'@emigrate/cli': minor
---
Simplify plugin interfaces by getting rid of the "type" string, in preparation for having packages that contains multiple different plugins