chore(release): version packages (#43)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Joakim Carlstein 2023-12-15 14:43:10 +01:00 committed by GitHub
parent cae6d11d53
commit 987374dbd5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
20 changed files with 82 additions and 38 deletions

View file

@ -1,5 +0,0 @@
---
'@emigrate/cli': minor
---
Make Emigrate Error instances deserializable using the serialize-error package, and also switch to its serializeError method

View file

@ -1,5 +0,0 @@
---
'@emigrate/cli': patch
---
Shutdown the storage correctly in case of directory or file reading errors

View file

@ -1,5 +0,0 @@
---
'@emigrate/types': minor
---
Use discriminating union types for migration types for easier error handling and such

View file

@ -1,6 +0,0 @@
---
'@emigrate/plugin-tools': minor
'@emigrate/types': minor
---
Move the Emigrate plugin types to a separate package for fewer version bumps in plugins hopefully

View file

@ -1,5 +0,0 @@
---
'@emigrate/cli': minor
---
Adapt to the new discriminating union types in @emigrate/types

View file

@ -1,5 +0,0 @@
---
'@emigrate/types': minor
---
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

View file

@ -1,5 +1,21 @@
# @emigrate/cli # @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 ## 0.9.0
### Minor Changes ### Minor Changes

View file

@ -1,6 +1,6 @@
{ {
"name": "@emigrate/cli", "name": "@emigrate/cli",
"version": "0.9.0", "version": "0.10.0",
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"
}, },

View file

@ -1,5 +1,15 @@
# @emigrate/mysql # @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 ## 0.1.2
### Patch Changes ### Patch Changes

View file

@ -1,6 +1,6 @@
{ {
"name": "@emigrate/mysql", "name": "@emigrate/mysql",
"version": "0.1.2", "version": "0.1.3",
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"
}, },

View file

@ -1,5 +1,15 @@
# @emigrate/plugin-generate-js # @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 ## 0.2.6
### Patch Changes ### Patch Changes

View file

@ -1,6 +1,6 @@
{ {
"name": "@emigrate/plugin-generate-js", "name": "@emigrate/plugin-generate-js",
"version": "0.2.6", "version": "0.2.7",
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"
}, },

View file

@ -1,5 +1,18 @@
# @emigrate/plugin-tools # @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 ## 0.7.0
### Minor Changes ### Minor Changes

View file

@ -1,6 +1,6 @@
{ {
"name": "@emigrate/plugin-tools", "name": "@emigrate/plugin-tools",
"version": "0.7.0", "version": "0.8.0",
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"
}, },

View file

@ -1,5 +1,14 @@
# @emigrate/reporter-pino # @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 ## 0.3.0
### Minor Changes ### Minor Changes

View file

@ -1,6 +1,6 @@
{ {
"name": "@emigrate/reporter-pino", "name": "@emigrate/reporter-pino",
"version": "0.3.0", "version": "0.3.1",
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"
}, },

View file

@ -1,5 +1,14 @@
# @emigrate/storage-fs # @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 ## 0.3.2
### Patch Changes ### Patch Changes

View file

@ -1,6 +1,6 @@
{ {
"name": "@emigrate/storage-fs", "name": "@emigrate/storage-fs",
"version": "0.3.2", "version": "0.3.3",
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"
}, },

View file

@ -1,5 +1,13 @@
# @emigrate/types # @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 ## 0.7.0
### Minor Changes ### Minor Changes

View file

@ -1,6 +1,6 @@
{ {
"name": "@emigrate/types", "name": "@emigrate/types",
"version": "0.7.0", "version": "0.8.0",
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"
}, },