chore(release): version packages
This commit is contained in:
parent
c838ffb7f3
commit
0360d0b82f
15 changed files with 33 additions and 48 deletions
|
|
@ -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.
|
|
||||||
|
|
@ -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.
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'@emigrate/docs': minor
|
|
||||||
---
|
|
||||||
|
|
||||||
Add documentation for the built-in "json" reporter
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'@emigrate/cli': minor
|
|
||||||
---
|
|
||||||
|
|
||||||
Add a built-in "json" reporter for outputting a single JSON object
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'@emigrate/docs': minor
|
|
||||||
---
|
|
||||||
|
|
||||||
The "default" reporter is now named "pretty"
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'@emigrate/docs': minor
|
|
||||||
---
|
|
||||||
|
|
||||||
Add note in FAQ on using Emigrate for existing databases
|
|
||||||
|
|
@ -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
|
|
||||||
|
|
@ -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.
|
|
||||||
|
|
@ -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
|
|
||||||
|
|
@ -1,5 +1,17 @@
|
||||||
# @emigrate/docs
|
# @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
|
## 0.3.0
|
||||||
|
|
||||||
### Minor Changes
|
### Minor Changes
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
"name": "@emigrate/docs",
|
"name": "@emigrate/docs",
|
||||||
"private": true,
|
"private": true,
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "0.3.0",
|
"version": "0.4.0",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "astro dev",
|
"dev": "astro dev",
|
||||||
"start": "astro dev",
|
"start": "astro dev",
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,17 @@
|
||||||
# @emigrate/cli
|
# @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
|
## 0.17.2
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@emigrate/cli",
|
"name": "@emigrate/cli",
|
||||||
"version": "0.17.2",
|
"version": "0.18.0",
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public",
|
"access": "public",
|
||||||
"provenance": true
|
"provenance": true
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,11 @@
|
||||||
# @emigrate/mysql
|
# @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
|
## 0.2.6
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@emigrate/mysql",
|
"name": "@emigrate/mysql",
|
||||||
"version": "0.2.6",
|
"version": "0.2.7",
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public",
|
"access": "public",
|
||||||
"provenance": true
|
"provenance": true
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue