Skip to content

Commit

Permalink
chore(release): version packages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Nov 22, 2023
1 parent 8347fc1 commit 9917645
Show file tree
Hide file tree
Showing 24 changed files with 62 additions and 85 deletions.
5 changes: 0 additions & 5 deletions .changeset/angry-chicken-thank.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/brown-cheetahs-notice.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/cold-points-rule.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/cool-badgers-allow.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/four-zoos-kiss.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/giant-files-serve.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/gold-eggs-argue.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/gorgeous-falcons-train.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/happy-yaks-impress.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/heavy-toes-cheer.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/large-berries-marry.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/olive-wolves-remember.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/shiny-penguins-kneel.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/smart-colts-fix.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/three-ravens-cheat.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/twelve-mice-fetch.md

This file was deleted.

24 changes: 24 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# @emigrate/cli

## 0.5.0

### Minor Changes

- 8347fc1: Show any failed migration from the history in the "up" dry-run output
- 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
- 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.
- 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]
- @emigrate/plugin-tools@0.4.0

## 0.4.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@emigrate/cli",
"version": "0.4.0",
"version": "0.5.0",
"publishConfig": {
"access": "public"
},
Expand Down
9 changes: 9 additions & 0 deletions packages/plugin-generate-js/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @emigrate/plugin-generate-js

## 0.2.2

### Patch Changes

- Updated dependencies [5e8572b]
- Updated dependencies [8e87ade]
- Updated dependencies [60ae3b8]
- @emigrate/plugin-tools@0.4.0

## 0.2.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-generate-js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@emigrate/plugin-generate-js",
"version": "0.2.1",
"version": "0.2.2",
"publishConfig": {
"access": "public"
},
Expand Down
11 changes: 11 additions & 0 deletions packages/plugin-tools/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @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.

### Patch Changes

- 60ae3b8: Fix loading of lazy loaded plugins with default exports

## 0.3.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-tools/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@emigrate/plugin-tools",
"version": "0.3.0",
"version": "0.4.0",
"publishConfig": {
"access": "public"
},
Expand Down
14 changes: 14 additions & 0 deletions packages/storage-fs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# @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

### Patch Changes

- Updated dependencies [5e8572b]
- Updated dependencies [8e87ade]
- Updated dependencies [60ae3b8]
- @emigrate/plugin-tools@0.4.0

## 0.1.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/storage-fs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@emigrate/storage-fs",
"version": "0.1.1",
"version": "0.2.0",
"publishConfig": {
"access": "public"
},
Expand Down

0 comments on commit 9917645

Please sign in to comment.