chore(release): version packages (#19)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Joakim Carlstein 2023-11-24 16:04:55 +01:00 committed by GitHub
parent 672fae1729
commit 871fb47aac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
29 changed files with 78 additions and 112 deletions

View file

@ -1,5 +0,0 @@
---
'@emigrate/cli': patch
---
Return a non zero exit code in case a migration fails (or for a dry-run if there's a failed migration in the history)

View file

@ -1,5 +0,0 @@
---
'@emigrate/plugin-tools': minor
---
Pass the current command to the reporter

View file

@ -1,5 +0,0 @@
---
'@emigrate/cli': minor
---
Show any failed migration from the history in the "up" dry-run output

View file

@ -1,5 +0,0 @@
---
'@emigrate/cli': patch
---
The default reporter now prints the full command output once a command is done (in interactive mode) so that the full output is visible no matter the size of the terminal window.

View file

@ -1,5 +0,0 @@
---
'@emigrate/cli': minor
---
Enable source maps when running the Emigrate CLI

View file

@ -1,5 +0,0 @@
---
'@emigrate/cli': minor
---
Implement the "list" command for listing the full migration history and any pending migrations

View file

@ -1,5 +0,0 @@
---
'@emigrate/cli': patch
---
Don't pass the EmigrateError instance to the storage for each failed migration but only the real cause. This is so that errors from failed migrations are not wrapped twice in EmigrateError instances when presenting failed migrations during an "up" dry-run or the "list" command.

View file

@ -1,6 +0,0 @@
---
'@emigrate/plugin-tools': minor
'@emigrate/cli': minor
---
Move storages and reporters out from the plugin option into their own separate options (i.e. "--reporter" and "--storage" respectively). This makes it easier to change the interfaces of storages and reporters, and it's also more similar to other tools.

View file

@ -1,5 +0,0 @@
---
'@emigrate/cli': minor
---
Add "reporter" option for the "new" command and use it for improved logging

View file

@ -1,5 +0,0 @@
---
'@emigrate/cli': minor
---
Improve the looks of the "up" dry-run default output by showing pending migrations in a different color

View file

@ -1,5 +0,0 @@
---
'@emigrate/cli': patch
---
Ignore migration history entries not belonging to the current migration directory when considering what to list or execute. This way a project can have multiple folders with different kind of migration sets or multiple projects can share the same migration history without any of them conflicting or blocking each other in case of failed migrations.

View file

@ -1,5 +0,0 @@
---
'@emigrate/storage-fs': minor
---
Adapt to the new plugin structure and rename from "@emigrate/plugin-storage-fs" to just "@emigrate/storage-fs"

View file

@ -1,5 +0,0 @@
---
'@emigrate/plugin-tools': patch
---
Fix loading of lazy loaded plugins with default exports

View file

@ -1,5 +0,0 @@
---
'@emigrate/cli': patch
---
Only load the JavaScript loader plugin if necessary

View file

@ -1,5 +0,0 @@
---
'@emigrate/storage-fs': minor
---
Serialize errors recursively if they have a "cause" set to an Error instance

View file

@ -1,5 +0,0 @@
---
'@emigrate/plugin-tools': minor
---
Include "@emigrate/" in the plugin prefix list, i.e. when searching for the plugin "blaha" it will look for the packages "blaha", "@emigrate/blaha", "@emigrate/plugin-blaha" and "emigrate-plugin-blaha" and use the first of them that exists

View file

@ -1,7 +0,0 @@
---
'@emigrate/plugin-tools': minor
'@emigrate/storage-fs': minor
'@emigrate/cli': minor
---
Implement the "remove" command for removing migration entries from the history

View file

@ -1,5 +0,0 @@
---
'@emigrate/plugin-tools': patch
---
Keep upper cased letters in migration file names by default

View file

@ -1,5 +0,0 @@
---
'@emigrate/cli': patch
---
Remove the double period before the file extension when generating new migration files

View file

@ -1,5 +0,0 @@
---
'@emigrate/cli': minor
---
Include Emigrate error codes in the error names

View file

@ -1,5 +0,0 @@
---
'@emigrate/cli': minor
---
Allow running commands no matter of the provided command's letter casing

View file

@ -1,5 +1,35 @@
# @emigrate/cli # @emigrate/cli
## 0.5.0
### Minor Changes
- 8347fc1: Show any failed migration from the history in the "up" dry-run output
- cf17e48: Enable source maps when running the Emigrate CLI
- 53cdb23: Implement the "list" command for listing the full migration history and any pending migrations
- 8e87ade: Move storages and reporters out from the plugin option into their own separate options (i.e. "--reporter" and "--storage" respectively). This makes it easier to change the interfaces of storages and reporters, and it's also more similar to other tools.
- da1eee3: Add "reporter" option for the "new" command and use it for improved logging
- 8347fc1: Improve the looks of the "up" dry-run default output by showing pending migrations in a different color
- d8a6a24: Implement the "remove" command for removing migration entries from the history
- c68c6f0: Include Emigrate error codes in the error names
- 8f623ef: Allow running commands no matter of the provided command's letter casing
### Patch Changes
- 8347fc1: Return a non zero exit code in case a migration fails (or for a dry-run if there's a failed migration in the history)
- 570bd1f: The default reporter now prints the full command output once a command is done (in interactive mode) so that the full output is visible no matter the size of the terminal window.
- 8347fc1: Don't pass the EmigrateError instance to the storage for each failed migration but only the real cause. This is so that errors from failed migrations are not wrapped twice in EmigrateError instances when presenting failed migrations during an "up" dry-run or the "list" command.
- 9447d28: Ignore migration history entries not belonging to the current migration directory when considering what to list or execute. This way a project can have multiple folders with different kind of migration sets or multiple projects can share the same migration history without any of them conflicting or blocking each other in case of failed migrations.
- b57c86e: Only load the JavaScript loader plugin if necessary
- 1940885: Remove the double period before the file extension when generating new migration files
- Updated dependencies [5e8572b]
- Updated dependencies [8e87ade]
- Updated dependencies [60ae3b8]
- Updated dependencies [672fae1]
- Updated dependencies [d8a6a24]
- Updated dependencies [acb0b4f]
- @emigrate/plugin-tools@0.4.0
## 0.4.0 ## 0.4.0
### Minor Changes ### Minor Changes

View file

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

View file

@ -1,5 +1,17 @@
# @emigrate/plugin-generate-js # @emigrate/plugin-generate-js
## 0.2.2
### Patch Changes
- Updated dependencies [5e8572b]
- Updated dependencies [8e87ade]
- Updated dependencies [60ae3b8]
- Updated dependencies [672fae1]
- Updated dependencies [d8a6a24]
- Updated dependencies [acb0b4f]
- @emigrate/plugin-tools@0.4.0
## 0.2.1 ## 0.2.1
### Patch Changes ### Patch Changes

View file

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

View file

@ -1,5 +1,19 @@
# @emigrate/plugin-tools # @emigrate/plugin-tools
## 0.4.0
### Minor Changes
- 5e8572b: Pass the current command to the reporter
- 8e87ade: Move storages and reporters out from the plugin option into their own separate options (i.e. "--reporter" and "--storage" respectively). This makes it easier to change the interfaces of storages and reporters, and it's also more similar to other tools.
- 672fae1: Include "@emigrate/" in the plugin prefix list, i.e. when searching for the plugin "blaha" it will look for the packages "blaha", "@emigrate/blaha", "@emigrate/plugin-blaha" and "emigrate-plugin-blaha" and use the first of them that exists
- d8a6a24: Implement the "remove" command for removing migration entries from the history
### Patch Changes
- 60ae3b8: Fix loading of lazy loaded plugins with default exports
- acb0b4f: Keep upper cased letters in migration file names by default
## 0.3.0 ## 0.3.0
### Minor Changes ### Minor Changes

View file

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

View file

@ -1,5 +1,23 @@
# @emigrate/storage-fs # @emigrate/storage-fs
## 0.2.0
### Minor Changes
- 7d8ac9b: Adapt to the new plugin structure and rename from "@emigrate/plugin-storage-fs" to just "@emigrate/storage-fs"
- e79dd4b: Serialize errors recursively if they have a "cause" set to an Error instance
- d8a6a24: Implement the "remove" command for removing migration entries from the history
### Patch Changes
- Updated dependencies [5e8572b]
- Updated dependencies [8e87ade]
- Updated dependencies [60ae3b8]
- Updated dependencies [672fae1]
- Updated dependencies [d8a6a24]
- Updated dependencies [acb0b4f]
- @emigrate/plugin-tools@0.4.0
## 0.1.1 ## 0.1.1
### Patch Changes ### Patch Changes

View file

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