chore(release): version packages (#30)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
703e6f028a
commit
3db7e995d7
22 changed files with 71 additions and 56 deletions
|
|
@ -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.
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'@emigrate/plugin-tools': minor
|
|
||||||
---
|
|
||||||
|
|
||||||
Add "end" method to storage plugins so they can cleanup resources when a command is finished
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'@emigrate/mysql': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Fix issue with closing the connection pool too early
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'@emigrate/storage-fs': minor
|
|
||||||
---
|
|
||||||
|
|
||||||
Handle the serialized errors coming from Emigrate, so no need to serialize errors ourselves
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'@emigrate/plugin-tools': minor
|
|
||||||
---
|
|
||||||
|
|
||||||
Add serializeError utility function for serializing Error instances
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'@emigrate/storage-fs': minor
|
|
||||||
---
|
|
||||||
|
|
||||||
Implement an empty "end" method for cleaning up
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'@emigrate/cli': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Handle storage initialization errors in the "list" and "remove" commands
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'@emigrate/cli': minor
|
|
||||||
---
|
|
||||||
|
|
||||||
Handle storage initialization errors and show missing loader plugin errors in a better way
|
|
||||||
|
|
@ -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
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'@emigrate/cli': minor
|
|
||||||
---
|
|
||||||
|
|
||||||
Call storage.end() to cleanup resources when a command has finished
|
|
||||||
|
|
@ -1,5 +1,20 @@
|
||||||
# @emigrate/cli
|
# @emigrate/cli
|
||||||
|
|
||||||
|
## 0.6.0
|
||||||
|
|
||||||
|
### Minor Changes
|
||||||
|
|
||||||
|
- a8db226: Handle storage initialization errors and show missing loader plugin errors in a better way
|
||||||
|
- c1d5597: Serialize errors before passing them to the storage so that storage plugins doesn't have to care about serialization of errors
|
||||||
|
- 703e6f0: Call storage.end() to cleanup resources when a command has finished
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- 703e6f0: Handle storage initialization errors in the "list" and "remove" commands
|
||||||
|
- Updated dependencies [703e6f0]
|
||||||
|
- Updated dependencies [c1d5597]
|
||||||
|
- @emigrate/plugin-tools@0.5.0
|
||||||
|
|
||||||
## 0.5.1
|
## 0.5.1
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@emigrate/cli",
|
"name": "@emigrate/cli",
|
||||||
"version": "0.5.1",
|
"version": "0.6.0",
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
14
packages/mysql/CHANGELOG.md
Normal file
14
packages/mysql/CHANGELOG.md
Normal file
|
|
@ -0,0 +1,14 @@
|
||||||
|
# @emigrate/mysql
|
||||||
|
|
||||||
|
## 0.1.0
|
||||||
|
|
||||||
|
### Minor Changes
|
||||||
|
|
||||||
|
- 334e209: 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.
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- 703e6f0: Fix issue with closing the connection pool too early
|
||||||
|
- Updated dependencies [703e6f0]
|
||||||
|
- Updated dependencies [c1d5597]
|
||||||
|
- @emigrate/plugin-tools@0.5.0
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@emigrate/mysql",
|
"name": "@emigrate/mysql",
|
||||||
"version": "0.0.0",
|
"version": "0.1.0",
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,13 @@
|
||||||
# @emigrate/plugin-generate-js
|
# @emigrate/plugin-generate-js
|
||||||
|
|
||||||
|
## 0.2.4
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [703e6f0]
|
||||||
|
- Updated dependencies [c1d5597]
|
||||||
|
- @emigrate/plugin-tools@0.5.0
|
||||||
|
|
||||||
## 0.2.3
|
## 0.2.3
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@emigrate/plugin-generate-js",
|
"name": "@emigrate/plugin-generate-js",
|
||||||
"version": "0.2.3",
|
"version": "0.2.4",
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,12 @@
|
||||||
# @emigrate/plugin-tools
|
# @emigrate/plugin-tools
|
||||||
|
|
||||||
|
## 0.5.0
|
||||||
|
|
||||||
|
### Minor Changes
|
||||||
|
|
||||||
|
- 703e6f0: Add "end" method to storage plugins so they can cleanup resources when a command is finished
|
||||||
|
- c1d5597: Add serializeError utility function for serializing Error instances
|
||||||
|
|
||||||
## 0.4.1
|
## 0.4.1
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@emigrate/plugin-tools",
|
"name": "@emigrate/plugin-tools",
|
||||||
"version": "0.4.1",
|
"version": "0.5.0",
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,13 @@
|
||||||
# @emigrate/reporter-pino
|
# @emigrate/reporter-pino
|
||||||
|
|
||||||
|
## 0.1.1
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [703e6f0]
|
||||||
|
- Updated dependencies [c1d5597]
|
||||||
|
- @emigrate/plugin-tools@0.5.0
|
||||||
|
|
||||||
## 0.1.0
|
## 0.1.0
|
||||||
|
|
||||||
### Minor Changes
|
### Minor Changes
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@emigrate/reporter-pino",
|
"name": "@emigrate/reporter-pino",
|
||||||
"version": "0.1.0",
|
"version": "0.1.1",
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,18 @@
|
||||||
# @emigrate/storage-fs
|
# @emigrate/storage-fs
|
||||||
|
|
||||||
|
## 0.3.0
|
||||||
|
|
||||||
|
### Minor Changes
|
||||||
|
|
||||||
|
- c1d5597: Handle the serialized errors coming from Emigrate, so no need to serialize errors ourselves
|
||||||
|
- 703e6f0: Implement an empty "end" method for cleaning up
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [703e6f0]
|
||||||
|
- Updated dependencies [c1d5597]
|
||||||
|
- @emigrate/plugin-tools@0.5.0
|
||||||
|
|
||||||
## 0.2.1
|
## 0.2.1
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@emigrate/storage-fs",
|
"name": "@emigrate/storage-fs",
|
||||||
"version": "0.2.1",
|
"version": "0.3.0",
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue