Skip to content

Commit

Permalink
chore(release): v4.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
B4nan committed Sep 21, 2020
1 parent f57b457 commit 881d0c1
Show file tree
Hide file tree
Showing 28 changed files with 179 additions and 40 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,23 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [4.0.5](https://github.com/mikro-orm/mikro-orm/compare/v4.0.4...v4.0.5) (2020-09-21)


### Bug Fixes

* **core:** fix merging results from QB to existing entity ([218098a](https://github.com/mikro-orm/mikro-orm/commit/218098ababb47dc3ad3e441d631cab5615251a0e))
* **schema:** defer creating of composite indexes + implement diffing ([f57b457](https://github.com/mikro-orm/mikro-orm/commit/f57b4571feb2aea7c955c5f7eb7470530133271e)), closes [#850](https://github.com/mikro-orm/mikro-orm/issues/850)


### Features

* **mapping:** make `@Unique` and `@Index` (optionally) typesafe ([afe6801](https://github.com/mikro-orm/mikro-orm/commit/afe68015765478d40fbab6701c11661d74e2cf77)), closes [#850](https://github.com/mikro-orm/mikro-orm/issues/850)





## [4.0.4](https://github.com/mikro-orm/mikro-orm/compare/v4.0.3...v4.0.4) (2020-09-19)


Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"packages": [
"packages/*"
],
"version": "4.0.4",
"version": "4.0.5",
"command": {
"version": {
"conventionalCommits": true,
Expand Down
8 changes: 8 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [4.0.5](https://github.com/mikro-orm/mikro-orm/compare/v4.0.4...v4.0.5) (2020-09-21)

**Note:** Version bump only for package @mikro-orm/cli





## [4.0.4](https://github.com/mikro-orm/mikro-orm/compare/v4.0.3...v4.0.4) (2020-09-19)

**Note:** Version bump only for package @mikro-orm/cli
Expand Down
10 changes: 5 additions & 5 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mikro-orm/cli",
"version": "4.0.4",
"version": "4.0.5",
"description": "TypeScript ORM for Node.js based on Data Mapper, Unit of Work and Identity Map patterns. Supports MongoDB, MySQL, PostgreSQL and SQLite databases as well as usage with vanilla JavaScript.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
Expand Down Expand Up @@ -50,10 +50,10 @@
"access": "public"
},
"dependencies": {
"@mikro-orm/core": "^4.0.4",
"@mikro-orm/entity-generator": "^4.0.4",
"@mikro-orm/knex": "^4.0.4",
"@mikro-orm/migrations": "^4.0.4",
"@mikro-orm/core": "^4.0.5",
"@mikro-orm/entity-generator": "^4.0.5",
"@mikro-orm/knex": "^4.0.5",
"@mikro-orm/migrations": "^4.0.5",
"ansi-colors": "^4.1.1",
"cli-table3": "^0.6.0",
"fs-extra": "^9.0.1",
Expand Down
17 changes: 17 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,23 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [4.0.5](https://github.com/mikro-orm/mikro-orm/compare/v4.0.4...v4.0.5) (2020-09-21)


### Bug Fixes

* **core:** fix merging results from QB to existing entity ([218098a](https://github.com/mikro-orm/mikro-orm/commit/218098ababb47dc3ad3e441d631cab5615251a0e))
* **schema:** defer creating of composite indexes + implement diffing ([f57b457](https://github.com/mikro-orm/mikro-orm/commit/f57b4571feb2aea7c955c5f7eb7470530133271e)), closes [#850](https://github.com/mikro-orm/mikro-orm/issues/850)


### Features

* **mapping:** make `@Unique` and `@Index` (optionally) typesafe ([afe6801](https://github.com/mikro-orm/mikro-orm/commit/afe68015765478d40fbab6701c11661d74e2cf77)), closes [#850](https://github.com/mikro-orm/mikro-orm/issues/850)





## [4.0.4](https://github.com/mikro-orm/mikro-orm/compare/v4.0.3...v4.0.4) (2020-09-19)


Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mikro-orm/core",
"version": "4.0.4",
"version": "4.0.5",
"description": "TypeScript ORM for Node.js based on Data Mapper, Unit of Work and Identity Map patterns. Supports MongoDB, MySQL, PostgreSQL and SQLite databases as well as usage with vanilla JavaScript.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
Expand Down
8 changes: 8 additions & 0 deletions packages/entity-generator/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [4.0.5](https://github.com/mikro-orm/mikro-orm/compare/v4.0.4...v4.0.5) (2020-09-21)

**Note:** Version bump only for package @mikro-orm/entity-generator





## [4.0.4](https://github.com/mikro-orm/mikro-orm/compare/v4.0.3...v4.0.4) (2020-09-19)

**Note:** Version bump only for package @mikro-orm/entity-generator
Expand Down
6 changes: 3 additions & 3 deletions packages/entity-generator/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mikro-orm/entity-generator",
"version": "4.0.4",
"version": "4.0.5",
"description": "TypeScript ORM for Node.js based on Data Mapper, Unit of Work and Identity Map patterns. Supports MongoDB, MySQL, PostgreSQL and SQLite databases as well as usage with vanilla JavaScript.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
Expand Down Expand Up @@ -47,11 +47,11 @@
"access": "public"
},
"dependencies": {
"@mikro-orm/knex": "^4.0.4",
"@mikro-orm/knex": "^4.0.5",
"fs-extra": "^9.0.1"
},
"devDependencies": {
"@mikro-orm/core": "^4.0.4"
"@mikro-orm/core": "^4.0.5"
},
"peerDependencies": {
"@mikro-orm/core": "^4.0.0"
Expand Down
11 changes: 11 additions & 0 deletions packages/knex/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [4.0.5](https://github.com/mikro-orm/mikro-orm/compare/v4.0.4...v4.0.5) (2020-09-21)


### Bug Fixes

* **schema:** defer creating of composite indexes + implement diffing ([f57b457](https://github.com/mikro-orm/mikro-orm/commit/f57b4571feb2aea7c955c5f7eb7470530133271e)), closes [#850](https://github.com/mikro-orm/mikro-orm/issues/850)





## [4.0.4](https://github.com/mikro-orm/mikro-orm/compare/v4.0.3...v4.0.4) (2020-09-19)


Expand Down
4 changes: 2 additions & 2 deletions packages/knex/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mikro-orm/knex",
"version": "4.0.4",
"version": "4.0.5",
"description": "TypeScript ORM for Node.js based on Data Mapper, Unit of Work and Identity Map patterns. Supports MongoDB, MySQL, PostgreSQL and SQLite databases as well as usage with vanilla JavaScript.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
Expand Down Expand Up @@ -51,7 +51,7 @@
"knex": "^0.21.1"
},
"devDependencies": {
"@mikro-orm/core": "^4.0.4"
"@mikro-orm/core": "^4.0.5"
},
"peerDependencies": {
"@mikro-orm/core": "^4.0.0",
Expand Down
8 changes: 8 additions & 0 deletions packages/mariadb/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [4.0.5](https://github.com/mikro-orm/mikro-orm/compare/v4.0.4...v4.0.5) (2020-09-21)

**Note:** Version bump only for package @mikro-orm/mariadb





## [4.0.4](https://github.com/mikro-orm/mikro-orm/compare/v4.0.3...v4.0.4) (2020-09-19)

**Note:** Version bump only for package @mikro-orm/mariadb
Expand Down
6 changes: 3 additions & 3 deletions packages/mariadb/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mikro-orm/mariadb",
"version": "4.0.4",
"version": "4.0.5",
"description": "TypeScript ORM for Node.js based on Data Mapper, Unit of Work and Identity Map patterns. Supports MongoDB, MySQL, PostgreSQL and SQLite databases as well as usage with vanilla JavaScript.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
Expand Down Expand Up @@ -47,11 +47,11 @@
"access": "public"
},
"dependencies": {
"@mikro-orm/mysql-base": "^4.0.4",
"@mikro-orm/mysql-base": "^4.0.5",
"mariadb": "^2.4.0"
},
"devDependencies": {
"@mikro-orm/core": "^4.0.4"
"@mikro-orm/core": "^4.0.5"
},
"peerDependencies": {
"@mikro-orm/core": "^4.0.0"
Expand Down
8 changes: 8 additions & 0 deletions packages/migrations/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [4.0.5](https://github.com/mikro-orm/mikro-orm/compare/v4.0.4...v4.0.5) (2020-09-21)

**Note:** Version bump only for package @mikro-orm/migrations





## [4.0.4](https://github.com/mikro-orm/mikro-orm/compare/v4.0.3...v4.0.4) (2020-09-19)


Expand Down
6 changes: 3 additions & 3 deletions packages/migrations/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mikro-orm/migrations",
"version": "4.0.4",
"version": "4.0.5",
"description": "TypeScript ORM for Node.js based on Data Mapper, Unit of Work and Identity Map patterns. Supports MongoDB, MySQL, PostgreSQL and SQLite databases as well as usage with vanilla JavaScript.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
Expand Down Expand Up @@ -47,13 +47,13 @@
"access": "public"
},
"dependencies": {
"@mikro-orm/knex": "^4.0.4",
"@mikro-orm/knex": "^4.0.5",
"@types/umzug": "^2.2.3",
"fs-extra": "^9.0.1",
"umzug": "^2.3.0"
},
"devDependencies": {
"@mikro-orm/core": "^4.0.4"
"@mikro-orm/core": "^4.0.5"
},
"peerDependencies": {
"@mikro-orm/core": "^4.0.0"
Expand Down
8 changes: 8 additions & 0 deletions packages/mikro-orm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [4.0.5](https://github.com/mikro-orm/mikro-orm/compare/v4.0.4...v4.0.5) (2020-09-21)

**Note:** Version bump only for package mikro-orm





## [4.0.4](https://github.com/mikro-orm/mikro-orm/compare/v4.0.3...v4.0.4) (2020-09-19)

**Note:** Version bump only for package mikro-orm
Expand Down
12 changes: 6 additions & 6 deletions packages/mikro-orm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mikro-orm",
"version": "4.0.4",
"version": "4.0.5",
"description": "TypeScript ORM for Node.js based on Data Mapper, Unit of Work and Identity Map patterns. Supports MongoDB, MySQL, PostgreSQL and SQLite databases as well as usage with vanilla JavaScript.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
Expand Down Expand Up @@ -47,11 +47,11 @@
"access": "public"
},
"dependencies": {
"@mikro-orm/cli": "^4.0.4",
"@mikro-orm/core": "^4.0.4",
"@mikro-orm/entity-generator": "^4.0.4",
"@mikro-orm/migrations": "^4.0.4",
"@mikro-orm/reflection": "^4.0.4"
"@mikro-orm/cli": "^4.0.5",
"@mikro-orm/core": "^4.0.5",
"@mikro-orm/entity-generator": "^4.0.5",
"@mikro-orm/migrations": "^4.0.5",
"@mikro-orm/reflection": "^4.0.5"
},
"peerDependencies": {
"@mikro-orm/mariadb": "^4.0.0",
Expand Down
8 changes: 8 additions & 0 deletions packages/mongodb/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [4.0.5](https://github.com/mikro-orm/mikro-orm/compare/v4.0.4...v4.0.5) (2020-09-21)

**Note:** Version bump only for package @mikro-orm/mongodb





## [4.0.4](https://github.com/mikro-orm/mikro-orm/compare/v4.0.3...v4.0.4) (2020-09-19)

**Note:** Version bump only for package @mikro-orm/mongodb
Expand Down
4 changes: 2 additions & 2 deletions packages/mongodb/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mikro-orm/mongodb",
"version": "4.0.4",
"version": "4.0.5",
"description": "TypeScript ORM for Node.js based on Data Mapper, Unit of Work and Identity Map patterns. Supports MongoDB, MySQL, PostgreSQL and SQLite databases as well as usage with vanilla JavaScript.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
Expand Down Expand Up @@ -51,7 +51,7 @@
"mongodb": "^3.6.0"
},
"devDependencies": {
"@mikro-orm/core": "^4.0.4"
"@mikro-orm/core": "^4.0.5"
},
"peerDependencies": {
"@mikro-orm/core": "^4.0.0"
Expand Down
8 changes: 8 additions & 0 deletions packages/mysql-base/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [4.0.5](https://github.com/mikro-orm/mikro-orm/compare/v4.0.4...v4.0.5) (2020-09-21)

**Note:** Version bump only for package @mikro-orm/mysql-base





## [4.0.4](https://github.com/mikro-orm/mikro-orm/compare/v4.0.3...v4.0.4) (2020-09-19)

**Note:** Version bump only for package @mikro-orm/mysql-base
Expand Down
6 changes: 3 additions & 3 deletions packages/mysql-base/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mikro-orm/mysql-base",
"version": "4.0.4",
"version": "4.0.5",
"description": "TypeScript ORM for Node.js based on Data Mapper, Unit of Work and Identity Map patterns. Supports MongoDB, MySQL, PostgreSQL and SQLite databases as well as usage with vanilla JavaScript.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
Expand Down Expand Up @@ -47,10 +47,10 @@
"access": "public"
},
"dependencies": {
"@mikro-orm/knex": "^4.0.4"
"@mikro-orm/knex": "^4.0.5"
},
"devDependencies": {
"@mikro-orm/core": "^4.0.4"
"@mikro-orm/core": "^4.0.5"
},
"peerDependencies": {
"@mikro-orm/core": "^4.0.0",
Expand Down
8 changes: 8 additions & 0 deletions packages/mysql/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [4.0.5](https://github.com/mikro-orm/mikro-orm/compare/v4.0.4...v4.0.5) (2020-09-21)

**Note:** Version bump only for package @mikro-orm/mysql





## [4.0.4](https://github.com/mikro-orm/mikro-orm/compare/v4.0.3...v4.0.4) (2020-09-19)

**Note:** Version bump only for package @mikro-orm/mysql
Expand Down
6 changes: 3 additions & 3 deletions packages/mysql/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mikro-orm/mysql",
"version": "4.0.4",
"version": "4.0.5",
"description": "TypeScript ORM for Node.js based on Data Mapper, Unit of Work and Identity Map patterns. Supports MongoDB, MySQL, PostgreSQL and SQLite databases as well as usage with vanilla JavaScript.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
Expand Down Expand Up @@ -47,11 +47,11 @@
"access": "public"
},
"dependencies": {
"@mikro-orm/mysql-base": "^4.0.4",
"@mikro-orm/mysql-base": "^4.0.5",
"mysql2": "sidorares/node-mysql2#master"
},
"devDependencies": {
"@mikro-orm/core": "^4.0.4"
"@mikro-orm/core": "^4.0.5"
},
"peerDependencies": {
"@mikro-orm/core": "^4.0.0"
Expand Down
Loading

0 comments on commit 881d0c1

Please sign in to comment.