Skip to content

Commit

Permalink
chore(release): v5.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
B4nan committed Feb 27, 2022
1 parent d183b50 commit 3c1441b
Show file tree
Hide file tree
Showing 28 changed files with 168 additions and 37 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,21 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [5.0.5](https://github.com/mikro-orm/mikro-orm/compare/v5.0.4...v5.0.5) (2022-02-27)


### Bug Fixes

* **core:** fix auto-joining multiple 1:1 properties ([0566e74](https://github.com/mikro-orm/mikro-orm/commit/0566e74b9587f28318bfbef384cb7ead8203aed9)), closes [#2821](https://github.com/mikro-orm/mikro-orm/issues/2821)
* **core:** respect `orphanRemoval` in 1:1 relations ([#2816](https://github.com/mikro-orm/mikro-orm/issues/2816)) ([55ff07b](https://github.com/mikro-orm/mikro-orm/commit/55ff07be3f781d2c6a788a463d26dec38570509c))
* **knex:** respect explicit transaction in `em.count()` ([#2818](https://github.com/mikro-orm/mikro-orm/issues/2818)) ([2d26a63](https://github.com/mikro-orm/mikro-orm/commit/2d26a631ebcc2bb1d1315f40f95594dca0abe9fc))
* **migrations:** ensure executedAt is a `Date` when listing executed migrations ([c8753ee](https://github.com/mikro-orm/mikro-orm/commit/c8753eec7b1130bf084d04ce32f9fe23aced7e21)), closes [#2817](https://github.com/mikro-orm/mikro-orm/issues/2817)
* **query-builder:** use paginate flag automatically based on to-many joins ([db9963f](https://github.com/mikro-orm/mikro-orm/commit/db9963fff8ceb980354b328f2d59353b9177aef3)), closes [#2823](https://github.com/mikro-orm/mikro-orm/issues/2823)





## [5.0.4](https://github.com/mikro-orm/mikro-orm/compare/v5.0.3...v5.0.4) (2022-02-22)


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": "5.0.4",
"version": "5.0.5",
"command": {
"version": {
"conventionalCommits": true,
Expand Down
8 changes: 8 additions & 0 deletions packages/better-sqlite/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.

## [5.0.5](https://github.com/mikro-orm/mikro-orm/compare/v5.0.4...v5.0.5) (2022-02-27)

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





## [5.0.4](https://github.com/mikro-orm/mikro-orm/compare/v5.0.3...v5.0.4) (2022-02-22)

**Note:** Version bump only for package @mikro-orm/better-sqlite
Expand Down
6 changes: 3 additions & 3 deletions packages/better-sqlite/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mikro-orm/better-sqlite",
"version": "5.0.4",
"version": "5.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",
"module": "dist/index.mjs",
Expand Down Expand Up @@ -56,13 +56,13 @@
"access": "public"
},
"dependencies": {
"@mikro-orm/knex": "^5.0.4",
"@mikro-orm/knex": "^5.0.5",
"better-sqlite3": "7.5.0",
"fs-extra": "10.0.1",
"sqlstring-sqlite": "0.1.1"
},
"devDependencies": {
"@mikro-orm/core": "^5.0.4"
"@mikro-orm/core": "^5.0.5"
},
"peerDependencies": {
"@mikro-orm/core": "^5.0.0",
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.

## [5.0.5](https://github.com/mikro-orm/mikro-orm/compare/v5.0.4...v5.0.5) (2022-02-27)

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





## [5.0.4](https://github.com/mikro-orm/mikro-orm/compare/v5.0.3...v5.0.4) (2022-02-22)

**Note:** Version bump only for package @mikro-orm/cli
Expand Down
12 changes: 6 additions & 6 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mikro-orm/cli",
"version": "5.0.4",
"version": "5.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",
"module": "dist/index.mjs",
Expand Down Expand Up @@ -59,17 +59,17 @@
"access": "public"
},
"dependencies": {
"@mikro-orm/core": "^5.0.4",
"@mikro-orm/knex": "^5.0.4",
"@mikro-orm/core": "^5.0.5",
"@mikro-orm/knex": "^5.0.5",
"fs-extra": "10.0.1",
"tsconfig-paths": "3.12.0",
"yargonaut": "1.1.4",
"yargs": "15.4.1"
},
"devDependencies": {
"@mikro-orm/entity-generator": "^5.0.4",
"@mikro-orm/migrations": "^5.0.4",
"@mikro-orm/seeder": "^5.0.4"
"@mikro-orm/entity-generator": "^5.0.5",
"@mikro-orm/migrations": "^5.0.5",
"@mikro-orm/seeder": "^5.0.5"
},
"peerDependencies": {
"@mikro-orm/better-sqlite": "^5.0.0",
Expand Down
12 changes: 12 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [5.0.5](https://github.com/mikro-orm/mikro-orm/compare/v5.0.4...v5.0.5) (2022-02-27)


### Bug Fixes

* **core:** respect `orphanRemoval` in 1:1 relations ([#2816](https://github.com/mikro-orm/mikro-orm/issues/2816)) ([55ff07b](https://github.com/mikro-orm/mikro-orm/commit/55ff07be3f781d2c6a788a463d26dec38570509c))
* **query-builder:** use paginate flag automatically based on to-many joins ([db9963f](https://github.com/mikro-orm/mikro-orm/commit/db9963fff8ceb980354b328f2d59353b9177aef3)), closes [#2823](https://github.com/mikro-orm/mikro-orm/issues/2823)





## [5.0.4](https://github.com/mikro-orm/mikro-orm/compare/v5.0.3...v5.0.4) (2022-02-22)


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": "5.0.4",
"version": "5.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",
"module": "dist/index.mjs",
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.

## [5.0.5](https://github.com/mikro-orm/mikro-orm/compare/v5.0.4...v5.0.5) (2022-02-27)

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





## [5.0.4](https://github.com/mikro-orm/mikro-orm/compare/v5.0.3...v5.0.4) (2022-02-22)

**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": "5.0.4",
"version": "5.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",
"module": "dist/index.mjs",
Expand Down Expand Up @@ -56,11 +56,11 @@
"access": "public"
},
"dependencies": {
"@mikro-orm/knex": "^5.0.4",
"@mikro-orm/knex": "^5.0.5",
"fs-extra": "10.0.1"
},
"devDependencies": {
"@mikro-orm/core": "^5.0.4"
"@mikro-orm/core": "^5.0.5"
},
"peerDependencies": {
"@mikro-orm/core": "^5.0.0"
Expand Down
13 changes: 13 additions & 0 deletions packages/knex/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,19 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [5.0.5](https://github.com/mikro-orm/mikro-orm/compare/v5.0.4...v5.0.5) (2022-02-27)


### Bug Fixes

* **core:** fix auto-joining multiple 1:1 properties ([0566e74](https://github.com/mikro-orm/mikro-orm/commit/0566e74b9587f28318bfbef384cb7ead8203aed9)), closes [#2821](https://github.com/mikro-orm/mikro-orm/issues/2821)
* **knex:** respect explicit transaction in `em.count()` ([#2818](https://github.com/mikro-orm/mikro-orm/issues/2818)) ([2d26a63](https://github.com/mikro-orm/mikro-orm/commit/2d26a631ebcc2bb1d1315f40f95594dca0abe9fc))
* **query-builder:** use paginate flag automatically based on to-many joins ([db9963f](https://github.com/mikro-orm/mikro-orm/commit/db9963fff8ceb980354b328f2d59353b9177aef3)), closes [#2823](https://github.com/mikro-orm/mikro-orm/issues/2823)





## [5.0.4](https://github.com/mikro-orm/mikro-orm/compare/v5.0.3...v5.0.4) (2022-02-22)


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": "5.0.4",
"version": "5.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",
"module": "dist/index.mjs",
Expand Down Expand Up @@ -61,7 +61,7 @@
"sqlstring": "2.3.2"
},
"devDependencies": {
"@mikro-orm/core": "^5.0.4"
"@mikro-orm/core": "^5.0.5"
},
"peerDependencies": {
"@mikro-orm/core": "^5.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.

## [5.0.5](https://github.com/mikro-orm/mikro-orm/compare/v5.0.4...v5.0.5) (2022-02-27)

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





## [5.0.4](https://github.com/mikro-orm/mikro-orm/compare/v5.0.3...v5.0.4) (2022-02-22)


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": "5.0.4",
"version": "5.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",
"module": "dist/index.mjs",
Expand Down Expand Up @@ -56,11 +56,11 @@
"access": "public"
},
"dependencies": {
"@mikro-orm/knex": "^5.0.4",
"@mikro-orm/knex": "^5.0.5",
"mariadb": "2.5.6"
},
"devDependencies": {
"@mikro-orm/core": "^5.0.4"
"@mikro-orm/core": "^5.0.5"
},
"peerDependencies": {
"@mikro-orm/core": "^5.0.0",
Expand Down
11 changes: 11 additions & 0 deletions packages/migrations/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.

## [5.0.5](https://github.com/mikro-orm/mikro-orm/compare/v5.0.4...v5.0.5) (2022-02-27)


### Bug Fixes

* **migrations:** ensure executedAt is a `Date` when listing executed migrations ([c8753ee](https://github.com/mikro-orm/mikro-orm/commit/c8753eec7b1130bf084d04ce32f9fe23aced7e21)), closes [#2817](https://github.com/mikro-orm/mikro-orm/issues/2817)





## [5.0.4](https://github.com/mikro-orm/mikro-orm/compare/v5.0.3...v5.0.4) (2022-02-22)

**Note:** Version bump only for package @mikro-orm/migrations
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": "5.0.4",
"version": "5.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",
"module": "dist/index.mjs",
Expand Down Expand Up @@ -56,13 +56,13 @@
"access": "public"
},
"dependencies": {
"@mikro-orm/knex": "^5.0.4",
"@mikro-orm/knex": "^5.0.5",
"fs-extra": "10.0.1",
"knex": "1.0.3",
"umzug": "3.0.0"
},
"devDependencies": {
"@mikro-orm/core": "^5.0.4"
"@mikro-orm/core": "^5.0.5"
},
"peerDependencies": {
"@mikro-orm/core": "^5.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.

## [5.0.5](https://github.com/mikro-orm/mikro-orm/compare/v5.0.4...v5.0.5) (2022-02-27)

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





## [5.0.4](https://github.com/mikro-orm/mikro-orm/compare/v5.0.3...v5.0.4) (2022-02-22)

**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": "5.0.4",
"version": "5.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",
"module": "dist/index.mjs",
Expand Down Expand Up @@ -60,7 +60,7 @@
"mongodb": "4.4.0"
},
"devDependencies": {
"@mikro-orm/core": "^5.0.4"
"@mikro-orm/core": "^5.0.5"
},
"peerDependencies": {
"@mikro-orm/core": "^5.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.

## [5.0.5](https://github.com/mikro-orm/mikro-orm/compare/v5.0.4...v5.0.5) (2022-02-27)

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





## [5.0.4](https://github.com/mikro-orm/mikro-orm/compare/v5.0.3...v5.0.4) (2022-02-22)


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": "5.0.4",
"version": "5.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",
"module": "dist/index.mjs",
Expand Down Expand Up @@ -56,11 +56,11 @@
"access": "public"
},
"dependencies": {
"@mikro-orm/knex": "^5.0.4",
"@mikro-orm/knex": "^5.0.5",
"mysql2": "2.3.3"
},
"devDependencies": {
"@mikro-orm/core": "^5.0.4"
"@mikro-orm/core": "^5.0.5"
},
"peerDependencies": {
"@mikro-orm/core": "^5.0.0",
Expand Down
8 changes: 8 additions & 0 deletions packages/postgresql/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.

## [5.0.5](https://github.com/mikro-orm/mikro-orm/compare/v5.0.4...v5.0.5) (2022-02-27)

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





## [5.0.4](https://github.com/mikro-orm/mikro-orm/compare/v5.0.3...v5.0.4) (2022-02-22)


Expand Down

0 comments on commit 3c1441b

Please sign in to comment.