chore(release): version packages (#30)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Joakim Carlstein 2023-12-08 13:10:41 +01:00 committed by GitHub
parent 703e6f028a
commit 3db7e995d7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
22 changed files with 71 additions and 56 deletions

View file

@ -1,5 +0,0 @@
---
'@emigrate/mysql': minor
---
Implement the first version of the MySQL plugin package. It's three plugins in one: a storage plugin for storing migration history in a MySQL database, a loader plugin for executing migration files written in plain sql and a generator plugin for generating migration file skeletons with the .sql extension.

View file

@ -1,5 +0,0 @@
---
'@emigrate/plugin-tools': minor
---
Add "end" method to storage plugins so they can cleanup resources when a command is finished

View file

@ -1,5 +0,0 @@
---
'@emigrate/mysql': patch
---
Fix issue with closing the connection pool too early

View file

@ -1,5 +0,0 @@
---
'@emigrate/storage-fs': minor
---
Handle the serialized errors coming from Emigrate, so no need to serialize errors ourselves

View file

@ -1,5 +0,0 @@
---
'@emigrate/plugin-tools': minor
---
Add serializeError utility function for serializing Error instances

View file

@ -1,5 +0,0 @@
---
'@emigrate/storage-fs': minor
---
Implement an empty "end" method for cleaning up

View file

@ -1,5 +0,0 @@
---
'@emigrate/cli': patch
---
Handle storage initialization errors in the "list" and "remove" commands

View file

@ -1,5 +0,0 @@
---
'@emigrate/cli': minor
---
Handle storage initialization errors and show missing loader plugin errors in a better way

View file

@ -1,5 +0,0 @@
---
'@emigrate/cli': minor
---
Serialize errors before passing them to the storage so that storage plugins doesn't have to care about serialization of errors

View file

@ -1,5 +0,0 @@
---
'@emigrate/cli': minor
---
Call storage.end() to cleanup resources when a command has finished