From 0360d0b82ffab3e2df537428a18b958960a0cf78 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 9 Feb 2024 13:01:02 +0000 Subject: [PATCH] chore(release): version packages --- .changeset/breezy-sheep-yawn.md | 5 ----- .changeset/cool-spies-behave.md | 5 ----- .changeset/cyan-cows-cheer.md | 5 ----- .changeset/famous-elephants-fail.md | 5 ----- .changeset/pink-bobcats-prove.md | 5 ----- .changeset/shy-nails-refuse.md | 5 ----- .changeset/slimy-tomatoes-taste.md | 5 ----- .changeset/spotty-singers-shake.md | 5 ----- .changeset/tidy-shrimps-hide.md | 5 ----- docs/CHANGELOG.md | 12 ++++++++++++ docs/package.json | 2 +- packages/cli/CHANGELOG.md | 12 ++++++++++++ packages/cli/package.json | 2 +- packages/mysql/CHANGELOG.md | 6 ++++++ packages/mysql/package.json | 2 +- 15 files changed, 33 insertions(+), 48 deletions(-) delete mode 100644 .changeset/breezy-sheep-yawn.md delete mode 100644 .changeset/cool-spies-behave.md delete mode 100644 .changeset/cyan-cows-cheer.md delete mode 100644 .changeset/famous-elephants-fail.md delete mode 100644 .changeset/pink-bobcats-prove.md delete mode 100644 .changeset/shy-nails-refuse.md delete mode 100644 .changeset/slimy-tomatoes-taste.md delete mode 100644 .changeset/spotty-singers-shake.md delete mode 100644 .changeset/tidy-shrimps-hide.md diff --git a/.changeset/breezy-sheep-yawn.md b/.changeset/breezy-sheep-yawn.md deleted file mode 100644 index 1fc9664..0000000 --- a/.changeset/breezy-sheep-yawn.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@emigrate/cli': minor ---- - -Make it possible to write the Emigrate configuration file in TypeScript and load it using `tsx` in a NodeJS environment by importing packages provided using the `--import` CLI option before loading the configuration file. This makes it possible to run Emigrate in production with a configuration file written in TypeScript without having the `typescript` package installed. diff --git a/.changeset/cool-spies-behave.md b/.changeset/cool-spies-behave.md deleted file mode 100644 index 8efe0e7..0000000 --- a/.changeset/cool-spies-behave.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@emigrate/docs': patch ---- - -Add note on how to write Emigrate's config using TypeScript in a production environment without having `typescript` installed. diff --git a/.changeset/cyan-cows-cheer.md b/.changeset/cyan-cows-cheer.md deleted file mode 100644 index ed85812..0000000 --- a/.changeset/cyan-cows-cheer.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@emigrate/docs': minor ---- - -Add documentation for the built-in "json" reporter diff --git a/.changeset/famous-elephants-fail.md b/.changeset/famous-elephants-fail.md deleted file mode 100644 index b97a70a..0000000 --- a/.changeset/famous-elephants-fail.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@emigrate/cli': minor ---- - -Add a built-in "json" reporter for outputting a single JSON object diff --git a/.changeset/pink-bobcats-prove.md b/.changeset/pink-bobcats-prove.md deleted file mode 100644 index fbefd77..0000000 --- a/.changeset/pink-bobcats-prove.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@emigrate/docs': minor ---- - -The "default" reporter is now named "pretty" diff --git a/.changeset/shy-nails-refuse.md b/.changeset/shy-nails-refuse.md deleted file mode 100644 index 0099677..0000000 --- a/.changeset/shy-nails-refuse.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@emigrate/docs': minor ---- - -Add note in FAQ on using Emigrate for existing databases diff --git a/.changeset/slimy-tomatoes-taste.md b/.changeset/slimy-tomatoes-taste.md deleted file mode 100644 index 1f3b288..0000000 --- a/.changeset/slimy-tomatoes-taste.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@emigrate/cli': minor ---- - -Rename the "default" reporter to "pretty" and make it possible to specify it using the `--reporter` CLI option or in the configuration file diff --git a/.changeset/spotty-singers-shake.md b/.changeset/spotty-singers-shake.md deleted file mode 100644 index 6fe0f77..0000000 --- a/.changeset/spotty-singers-shake.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@emigrate/mysql': patch ---- - -Unreference all connections automatically so that they don't hinder the process from exiting. This is especially needed in Bun environments as it seems to handle sockets differently regarding this matter than NodeJS. diff --git a/.changeset/tidy-shrimps-hide.md b/.changeset/tidy-shrimps-hide.md deleted file mode 100644 index 3d86eaf..0000000 --- a/.changeset/tidy-shrimps-hide.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@emigrate/cli': patch ---- - -Don't use the `typescript` package for loading an Emigrate configuration file written in TypeScript in a Bun or Deno environment diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 25808b5..676bea6 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,5 +1,17 @@ # @emigrate/docs +## 0.4.0 + +### Minor Changes + +- b62c692: Add documentation for the built-in "json" reporter +- b62c692: The "default" reporter is now named "pretty" +- e7ec75d: Add note in FAQ on using Emigrate for existing databases + +### Patch Changes + +- c838ffb: Add note on how to write Emigrate's config using TypeScript in a production environment without having `typescript` installed. + ## 0.3.0 ### Minor Changes diff --git a/docs/package.json b/docs/package.json index 8cde013..2313a81 100644 --- a/docs/package.json +++ b/docs/package.json @@ -2,7 +2,7 @@ "name": "@emigrate/docs", "private": true, "type": "module", - "version": "0.3.0", + "version": "0.4.0", "scripts": { "dev": "astro dev", "start": "astro dev", diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 5610be2..dd7de8e 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,17 @@ # @emigrate/cli +## 0.18.0 + +### Minor Changes + +- c838ffb: Make it possible to write the Emigrate configuration file in TypeScript and load it using `tsx` in a NodeJS environment by importing packages provided using the `--import` CLI option before loading the configuration file. This makes it possible to run Emigrate in production with a configuration file written in TypeScript without having the `typescript` package installed. +- 18382ce: Add a built-in "json" reporter for outputting a single JSON object +- 18382ce: Rename the "default" reporter to "pretty" and make it possible to specify it using the `--reporter` CLI option or in the configuration file + +### Patch Changes + +- c838ffb: Don't use the `typescript` package for loading an Emigrate configuration file written in TypeScript in a Bun or Deno environment + ## 0.17.2 ### Patch Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index 9f0c34f..27817a8 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@emigrate/cli", - "version": "0.17.2", + "version": "0.18.0", "publishConfig": { "access": "public", "provenance": true diff --git a/packages/mysql/CHANGELOG.md b/packages/mysql/CHANGELOG.md index 4a2a3ee..3742eba 100644 --- a/packages/mysql/CHANGELOG.md +++ b/packages/mysql/CHANGELOG.md @@ -1,5 +1,11 @@ # @emigrate/mysql +## 0.2.7 + +### Patch Changes + +- 198aa54: Unreference all connections automatically so that they don't hinder the process from exiting. This is especially needed in Bun environments as it seems to handle sockets differently regarding this matter than NodeJS. + ## 0.2.6 ### Patch Changes diff --git a/packages/mysql/package.json b/packages/mysql/package.json index 32e5988..310f6c5 100644 --- a/packages/mysql/package.json +++ b/packages/mysql/package.json @@ -1,6 +1,6 @@ { "name": "@emigrate/mysql", - "version": "0.2.6", + "version": "0.2.7", "publishConfig": { "access": "public", "provenance": true