Skip to content

Commit

Permalink
chore(release): v6.2.3 [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
B4nan committed Apr 24, 2024
1 parent 7d2bed6 commit 99dfb8b
Show file tree
Hide file tree
Showing 37 changed files with 246 additions and 85 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,20 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [6.2.3](https://github.com/mikro-orm/mikro-orm/compare/v6.2.2...v6.2.3) (2024-04-24)


### Bug Fixes

* **core:** fix handling of `first/last: 0` with cursor-based pagination ([508389e](https://github.com/mikro-orm/mikro-orm/commit/508389ea71cf63f4965d42b74a993572f388092b)), closes [#5501](https://github.com/mikro-orm/mikro-orm/issues/5501)
* **core:** ignore upsert with inlined embedded properties ([7d2bed6](https://github.com/mikro-orm/mikro-orm/commit/7d2bed627ef0ed65206b59c4d5143eff9fe0326b)), closes [#5500](https://github.com/mikro-orm/mikro-orm/issues/5500)
* **migrations:** fix reading migration snapshot ([096dcee](https://github.com/mikro-orm/mikro-orm/commit/096dcee04994d9c53f7e1bef6a6edf16589dddd4)), closes [#5497](https://github.com/mikro-orm/mikro-orm/issues/5497)
* **query-builder:** do not prune join branches when paginating and there are raw fragments in select clause ([4d0fe15](https://github.com/mikro-orm/mikro-orm/commit/4d0fe152c1ca9479668b6a8bf9a5019575388917)), closes [#5490](https://github.com/mikro-orm/mikro-orm/issues/5490)





## [6.2.2](https://github.com/mikro-orm/mikro-orm/compare/v6.2.1...v6.2.2) (2024-04-20)


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": "6.2.2",
"version": "6.2.3",
"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.

## [6.2.3](https://github.com/mikro-orm/mikro-orm/compare/v6.2.2...v6.2.3) (2024-04-24)

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





## [6.2.2](https://github.com/mikro-orm/mikro-orm/compare/v6.2.1...v6.2.2) (2024-04-20)

**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": "6.2.2",
"version": "6.2.3",
"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 @@ -58,13 +58,13 @@
"access": "public"
},
"dependencies": {
"@mikro-orm/knex": "6.2.2",
"@mikro-orm/knex": "^6.2.3",
"better-sqlite3": "9.5.0",
"fs-extra": "11.2.0",
"sqlstring-sqlite": "0.1.1"
},
"devDependencies": {
"@mikro-orm/core": "^6.2.2"
"@mikro-orm/core": "^6.2.3"
},
"peerDependencies": {
"@mikro-orm/core": "^6.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.

## [6.2.3](https://github.com/mikro-orm/mikro-orm/compare/v6.2.2...v6.2.3) (2024-04-24)

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





## [6.2.2](https://github.com/mikro-orm/mikro-orm/compare/v6.2.1...v6.2.2) (2024-04-20)

**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": "6.2.2",
"version": "6.2.3",
"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 @@ -63,15 +63,15 @@
},
"dependencies": {
"@jercle/yargonaut": "1.1.5",
"@mikro-orm/core": "6.2.2",
"@mikro-orm/knex": "6.2.2",
"@mikro-orm/core": "^6.2.3",
"@mikro-orm/knex": "^6.2.3",
"fs-extra": "11.2.0",
"tsconfig-paths": "4.2.0",
"yargs": "17.7.2"
},
"devDependencies": {
"@mikro-orm/entity-generator": "^6.2.2",
"@mikro-orm/migrations": "^6.2.2",
"@mikro-orm/seeder": "^6.2.2"
"@mikro-orm/entity-generator": "^6.2.3",
"@mikro-orm/migrations": "^6.2.3",
"@mikro-orm/seeder": "^6.2.3"
}
}
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.

## [6.2.3](https://github.com/mikro-orm/mikro-orm/compare/v6.2.2...v6.2.3) (2024-04-24)


### Bug Fixes

* **core:** fix handling of `first/last: 0` with cursor-based pagination ([508389e](https://github.com/mikro-orm/mikro-orm/commit/508389ea71cf63f4965d42b74a993572f388092b)), closes [#5501](https://github.com/mikro-orm/mikro-orm/issues/5501)
* **core:** ignore upsert with inlined embedded properties ([7d2bed6](https://github.com/mikro-orm/mikro-orm/commit/7d2bed627ef0ed65206b59c4d5143eff9fe0326b)), closes [#5500](https://github.com/mikro-orm/mikro-orm/issues/5500)





## [6.2.2](https://github.com/mikro-orm/mikro-orm/compare/v6.2.1...v6.2.2) (2024-04-20)


Expand Down
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mikro-orm/core",
"version": "6.2.2",
"version": "6.2.3",
"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 @@ -64,7 +64,7 @@
"esprima": "4.0.1",
"fs-extra": "11.2.0",
"globby": "11.1.0",
"mikro-orm": "6.2.2",
"mikro-orm": "^6.2.3",
"reflect-metadata": "0.2.2"
}
}
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.

## [6.2.3](https://github.com/mikro-orm/mikro-orm/compare/v6.2.2...v6.2.3) (2024-04-24)

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





## [6.2.2](https://github.com/mikro-orm/mikro-orm/compare/v6.2.1...v6.2.2) (2024-04-20)


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": "6.2.2",
"version": "6.2.3",
"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 @@ -58,11 +58,11 @@
"access": "public"
},
"dependencies": {
"@mikro-orm/knex": "6.2.2",
"@mikro-orm/knex": "^6.2.3",
"fs-extra": "11.2.0"
},
"devDependencies": {
"@mikro-orm/core": "^6.2.2"
"@mikro-orm/core": "^6.2.3"
},
"peerDependencies": {
"@mikro-orm/core": "^6.0.0"
Expand Down
12 changes: 12 additions & 0 deletions packages/knex/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.

## [6.2.3](https://github.com/mikro-orm/mikro-orm/compare/v6.2.2...v6.2.3) (2024-04-24)


### Bug Fixes

* **core:** ignore upsert with inlined embedded properties ([7d2bed6](https://github.com/mikro-orm/mikro-orm/commit/7d2bed627ef0ed65206b59c4d5143eff9fe0326b)), closes [#5500](https://github.com/mikro-orm/mikro-orm/issues/5500)
* **query-builder:** do not prune join branches when paginating and there are raw fragments in select clause ([4d0fe15](https://github.com/mikro-orm/mikro-orm/commit/4d0fe152c1ca9479668b6a8bf9a5019575388917)), closes [#5490](https://github.com/mikro-orm/mikro-orm/issues/5490)





## [6.2.2](https://github.com/mikro-orm/mikro-orm/compare/v6.2.1...v6.2.2) (2024-04-20)


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": "6.2.2",
"version": "6.2.3",
"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 @@ -63,7 +63,7 @@
"sqlstring": "2.3.3"
},
"devDependencies": {
"@mikro-orm/core": "^6.2.2"
"@mikro-orm/core": "^6.2.3"
},
"peerDependencies": {
"@mikro-orm/core": "^6.0.0"
Expand Down
8 changes: 8 additions & 0 deletions packages/libsql/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.

## [6.2.3](https://github.com/mikro-orm/mikro-orm/compare/v6.2.2...v6.2.3) (2024-04-24)

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





## [6.2.2](https://github.com/mikro-orm/mikro-orm/compare/v6.2.1...v6.2.2) (2024-04-20)

**Note:** Version bump only for package @mikro-orm/libsql
Expand Down
6 changes: 3 additions & 3 deletions packages/libsql/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mikro-orm/libsql",
"version": "6.2.2",
"version": "6.2.3",
"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 @@ -58,13 +58,13 @@
"access": "public"
},
"dependencies": {
"@mikro-orm/knex": "6.2.2",
"@mikro-orm/knex": "^6.2.3",
"fs-extra": "11.2.0",
"libsql": "0.3.16",
"sqlstring-sqlite": "0.1.1"
},
"devDependencies": {
"@mikro-orm/core": "^6.2.2"
"@mikro-orm/core": "^6.2.3"
},
"peerDependencies": {
"@mikro-orm/core": "^6.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.

## [6.2.3](https://github.com/mikro-orm/mikro-orm/compare/v6.2.2...v6.2.3) (2024-04-24)

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





## [6.2.2](https://github.com/mikro-orm/mikro-orm/compare/v6.2.1...v6.2.2) (2024-04-20)


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": "6.2.2",
"version": "6.2.3",
"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 @@ -58,11 +58,11 @@
"access": "public"
},
"dependencies": {
"@mikro-orm/knex": "6.2.2",
"@mikro-orm/knex": "^6.2.3",
"mariadb": "3.3.0"
},
"devDependencies": {
"@mikro-orm/core": "^6.2.2"
"@mikro-orm/core": "^6.2.3"
},
"peerDependencies": {
"@mikro-orm/core": "^6.0.0"
Expand Down
8 changes: 8 additions & 0 deletions packages/migrations-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.

## [6.2.3](https://github.com/mikro-orm/mikro-orm/compare/v6.2.2...v6.2.3) (2024-04-24)

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





## [6.2.2](https://github.com/mikro-orm/mikro-orm/compare/v6.2.1...v6.2.2) (2024-04-20)

**Note:** Version bump only for package @mikro-orm/migrations-mongodb
Expand Down
6 changes: 3 additions & 3 deletions packages/migrations-mongodb/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mikro-orm/migrations-mongodb",
"version": "6.2.2",
"version": "6.2.3",
"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 @@ -58,13 +58,13 @@
"access": "public"
},
"dependencies": {
"@mikro-orm/mongodb": "6.2.2",
"@mikro-orm/mongodb": "^6.2.3",
"fs-extra": "11.2.0",
"mongodb": "6.5.0",
"umzug": "3.8.0"
},
"devDependencies": {
"@mikro-orm/core": "^6.2.2"
"@mikro-orm/core": "^6.2.3"
},
"peerDependencies": {
"@mikro-orm/core": "^6.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.

## [6.2.3](https://github.com/mikro-orm/mikro-orm/compare/v6.2.2...v6.2.3) (2024-04-24)


### Bug Fixes

* **migrations:** fix reading migration snapshot ([096dcee](https://github.com/mikro-orm/mikro-orm/commit/096dcee04994d9c53f7e1bef6a6edf16589dddd4)), closes [#5497](https://github.com/mikro-orm/mikro-orm/issues/5497)





## [6.2.2](https://github.com/mikro-orm/mikro-orm/compare/v6.2.1...v6.2.2) (2024-04-20)


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": "6.2.2",
"version": "6.2.3",
"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 @@ -58,12 +58,12 @@
"access": "public"
},
"dependencies": {
"@mikro-orm/knex": "6.2.2",
"@mikro-orm/knex": "^6.2.3",
"fs-extra": "11.2.0",
"umzug": "3.8.0"
},
"devDependencies": {
"@mikro-orm/core": "^6.2.2"
"@mikro-orm/core": "^6.2.3"
},
"peerDependencies": {
"@mikro-orm/core": "^6.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.

## [6.2.3](https://github.com/mikro-orm/mikro-orm/compare/v6.2.2...v6.2.3) (2024-04-24)

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





## [6.2.2](https://github.com/mikro-orm/mikro-orm/compare/v6.2.1...v6.2.2) (2024-04-20)

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

0 comments on commit 99dfb8b

Please sign in to comment.