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 16, 2023
1 parent 30a448b commit 03f570a
Show file tree
Hide file tree
Showing 23 changed files with 77 additions and 83 deletions.
5 changes: 0 additions & 5 deletions .changeset/angry-houses-chew.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/blue-steaks-hide.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/clean-balloons-run.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/cold-nails-film.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/eight-baboons-press.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fuzzy-panthers-bake.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/happy-toys-smash.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/healthy-bulldogs-sell.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/olive-phones-heal.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/small-snakes-explode.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/spicy-seahorses-listen.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/strange-bags-complain.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tame-fans-clap.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/unlucky-files-swim.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/yellow-students-compare.md

This file was deleted.

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

## 0.3.0

### Minor Changes

- 8dadfe9: Support migration functions using the old NodeJS callback style API, i.e. accepting a callback as a single parameter which in turns takes any error as its first parameter (any other parameters are ignored)
- a058ebf: Handle file extensions with or without a leading period, i.e. `emigrate new -e .js ...` is now the same as `emigrate new -e js ...`
- b56794a: Implement the "up" command with support for "storage" and "loader" plugins
- 0b78d5c: Rename the "emigrate" package to "@emigrate/cli" to mimic other tools
- 30a448b: Improve error handling by making more granular custom Error instances
- 3b36b3d: Implement a default "loader" plugin for JavaScript files (supports `.js`, `.cjs` and `.mjs` file extensions)
- 9f5abf7: Simplify plugin interfaces by getting rid of the "type" string, in preparation for having packages that contains multiple different plugins

### Patch Changes

- 46b9104: Don't run any migrations if there's a failed migration in the migration history
- 3e0ff07: Specify files to include in published NPM package
- a1debba: Fix a logical error that didn't allow creating new migration files with only the "extension" option
- Updated dependencies [1799b6e]
- Updated dependencies [3e0ff07]
- Updated dependencies [23a323c]
- Updated dependencies [62bd5a4]
- Updated dependencies [81fde2e]
- Updated dependencies [9f5abf7]
- @emigrate/plugin-tools@0.2.0

## 0.2.1

### Patch 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.2.1",
"version": "0.3.0",
"publishConfig": {
"access": "public"
},
Expand Down
17 changes: 17 additions & 0 deletions packages/plugin-generate-js/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# @emigrate/plugin-generate-js

## 0.2.0

### Minor Changes

- 9f5abf7: Simplify plugin interfaces by getting rid of the "type" string, in preparation for having packages that contains multiple different plugins

### Patch Changes

- 3e0ff07: Specify files to include in published NPM package
- Updated dependencies [1799b6e]
- Updated dependencies [3e0ff07]
- Updated dependencies [23a323c]
- Updated dependencies [62bd5a4]
- Updated dependencies [81fde2e]
- Updated dependencies [9f5abf7]
- @emigrate/plugin-tools@0.2.0

## 0.1.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.1.1",
"version": "0.2.0",
"publishConfig": {
"access": "public"
},
Expand Down
17 changes: 17 additions & 0 deletions packages/plugin-storage-fs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# @emigrate/plugin-storage-fs

## 0.1.0

### Minor Changes

- 0c49249: Implement a first version of the File System Storage plugin for simple migration setups

### Patch Changes

- Updated dependencies [1799b6e]
- Updated dependencies [3e0ff07]
- Updated dependencies [23a323c]
- Updated dependencies [62bd5a4]
- Updated dependencies [81fde2e]
- Updated dependencies [9f5abf7]
- @emigrate/plugin-tools@0.2.0
2 changes: 1 addition & 1 deletion packages/plugin-storage-fs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@emigrate/plugin-storage-fs",
"version": "0.0.0",
"version": "0.1.0",
"publishConfig": {
"access": "public"
},
Expand Down
14 changes: 14 additions & 0 deletions packages/plugin-tools/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# @emigrate/plugin-tools

## 0.2.0

### Minor Changes

- 23a323c: Add the convenience functions `getOrLoadPlugin` and `getOrLoadPlugins`
- 62bd5a4: Add more properties to the MigrationMetadata type to ease writing "loader" plugins
- 81fde2e: Prepare for supporting "loader" plugins. A loader plugin is used to transform a migration file of a given type (file extension) to a function that will execute the actual migration.
- 9f5abf7: Simplify plugin interfaces by getting rid of the "type" string, in preparation for having packages that contains multiple different plugins

### Patch Changes

- 1799b6e: Add missing types and utility methods related to the new "loader" plugins
- 3e0ff07: Specify files to include in published NPM package

## 0.1.1

### Patch 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.1.1",
"version": "0.2.0",
"publishConfig": {
"access": "public"
},
Expand Down

0 comments on commit 03f570a

Please sign in to comment.