chore(release): version packages (#43)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
cae6d11d53
commit
987374dbd5
20 changed files with 82 additions and 38 deletions
|
|
@ -1,5 +1,21 @@
|
|||
# @emigrate/cli
|
||||
|
||||
## 0.10.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- cae6d11: Make Emigrate Error instances deserializable using the serialize-error package, and also switch to its serializeError method
|
||||
- cae6d11: Adapt to the new discriminating union types in @emigrate/types
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- cae6d11: Shutdown the storage correctly in case of directory or file reading errors
|
||||
- Updated dependencies [cae6d11]
|
||||
- Updated dependencies [cae6d11]
|
||||
- Updated dependencies [cae6d11]
|
||||
- @emigrate/types@0.8.0
|
||||
- @emigrate/plugin-tools@0.8.0
|
||||
|
||||
## 0.9.0
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@emigrate/cli",
|
||||
"version": "0.9.0",
|
||||
"version": "0.10.0",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -1,5 +1,15 @@
|
|||
# @emigrate/mysql
|
||||
|
||||
## 0.1.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [cae6d11]
|
||||
- Updated dependencies [cae6d11]
|
||||
- Updated dependencies [cae6d11]
|
||||
- @emigrate/types@0.8.0
|
||||
- @emigrate/plugin-tools@0.8.0
|
||||
|
||||
## 0.1.2
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@emigrate/mysql",
|
||||
"version": "0.1.2",
|
||||
"version": "0.1.3",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -1,5 +1,15 @@
|
|||
# @emigrate/plugin-generate-js
|
||||
|
||||
## 0.2.7
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [cae6d11]
|
||||
- Updated dependencies [cae6d11]
|
||||
- Updated dependencies [cae6d11]
|
||||
- @emigrate/types@0.8.0
|
||||
- @emigrate/plugin-tools@0.8.0
|
||||
|
||||
## 0.2.6
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@emigrate/plugin-generate-js",
|
||||
"version": "0.2.6",
|
||||
"version": "0.2.7",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -1,5 +1,18 @@
|
|||
# @emigrate/plugin-tools
|
||||
|
||||
## 0.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- cae6d11: Move the Emigrate plugin types to a separate package for fewer version bumps in plugins hopefully
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [cae6d11]
|
||||
- Updated dependencies [cae6d11]
|
||||
- Updated dependencies [cae6d11]
|
||||
- @emigrate/types@0.8.0
|
||||
|
||||
## 0.7.0
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@emigrate/plugin-tools",
|
||||
"version": "0.7.0",
|
||||
"version": "0.8.0",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -1,5 +1,14 @@
|
|||
# @emigrate/reporter-pino
|
||||
|
||||
## 0.3.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [cae6d11]
|
||||
- Updated dependencies [cae6d11]
|
||||
- Updated dependencies [cae6d11]
|
||||
- @emigrate/types@0.8.0
|
||||
|
||||
## 0.3.0
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@emigrate/reporter-pino",
|
||||
"version": "0.3.0",
|
||||
"version": "0.3.1",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -1,5 +1,14 @@
|
|||
# @emigrate/storage-fs
|
||||
|
||||
## 0.3.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [cae6d11]
|
||||
- Updated dependencies [cae6d11]
|
||||
- Updated dependencies [cae6d11]
|
||||
- @emigrate/types@0.8.0
|
||||
|
||||
## 0.3.2
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@emigrate/storage-fs",
|
||||
"version": "0.3.2",
|
||||
"version": "0.3.3",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -1,5 +1,13 @@
|
|||
# @emigrate/types
|
||||
|
||||
## 0.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- cae6d11: Use discriminating union types for migration types for easier error handling and such
|
||||
- cae6d11: Move the Emigrate plugin types to a separate package for fewer version bumps in plugins hopefully
|
||||
- cae6d11: Make it easier for storage plugins by serializing errors passed to the onError method and let it respond with serialized errors in the getHistory method
|
||||
|
||||
## 0.7.0
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@emigrate/types",
|
||||
"version": "0.7.0",
|
||||
"version": "0.8.0",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue