Skip to content

Commit 63d3248

Browse files
committed
chore(release): v5.0.0
1 parent c11da0c commit 63d3248

File tree

8 files changed

+28
-7
lines changed

8 files changed

+28
-7
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,25 @@
11

2+
# [5.0.0](https://github.com/TriPSs/nestjs-query/compare/v4.4.0...v5.0.0) (2024-01-19)
3+
4+
5+
### Bug Fixes
6+
7+
* **query-graphql:** Fixed relations not respecting the given name ([24aeca7](https://github.com/TriPSs/nestjs-query/commit/24aeca7e26eb13c02970d7fb9b1c16ca277595c0)), closes [#217](https://github.com/TriPSs/nestjs-query/issues/217)
8+
9+
10+
### Features
11+
12+
* Make assemblers `convert*` methods async ([9f9af3b](https://github.com/TriPSs/nestjs-query/commit/9f9af3ba233be5faa25c95e713aa39e2c3110578)), closes [#215](https://github.com/TriPSs/nestjs-query/issues/215)
13+
14+
15+
### BREAKING CHANGES
16+
17+
* **query-graphql:** Relation names are no longer automatically pluralized and respect the given name
18+
* All `convert*` methods are now async.
19+
`convertAsyncTo*` methods are dropped in favor of async `convertTo`.
20+
21+
22+
223
# [4.4.0](https://github.com/TriPSs/nestjs-query/compare/v5.0.0-alpha.0...v4.4.0) (2024-01-11)
324

425

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nestjs-query",
3-
"version": "4.4.0",
3+
"version": "5.0.0",
44
"private": true,
55
"workspaces": [
66
"packages/**"

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ptc-org/nestjs-query-core",
3-
"version": "4.4.0",
3+
"version": "5.0.0",
44
"description": "Base query package",
55
"author": "doug-martin <[email protected]>",
66
"homepage": "https://github.com/tripss/nestjs-query#readme",

packages/query-graphql/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ptc-org/nestjs-query-graphql",
3-
"version": "4.4.0",
3+
"version": "5.0.0",
44
"description": "Nestjs graphql query adapter",
55
"author": "doug-martin <[email protected]>",
66
"homepage": "https://github.com/tripss/nestjs-query#readme",

packages/query-mongoose/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ptc-org/nestjs-query-mongoose",
3-
"version": "4.4.0",
3+
"version": "5.0.0",
44
"description": "Mongoose adapter for @ptc-org/nestjs-query-core",
55
"author": "doug-martin <[email protected]>",
66
"homepage": "https://github.com/tripss/nestjs-query#readme",

packages/query-sequelize/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ptc-org/nestjs-query-sequelize",
3-
"version": "4.4.0",
3+
"version": "5.0.0",
44
"description": "Sequelize adapter for @ptc-org/nestjs-query-core",
55
"author": "doug-martin <[email protected]>",
66
"homepage": "https://github.com/tripss/nestjs-query#readme",

packages/query-typegoose/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ptc-org/nestjs-query-typegoose",
3-
"version": "4.4.0",
3+
"version": "5.0.0",
44
"description": "Typegoose adapter for @ptc-org/nestjs-query-core",
55
"author": "john mcinall<[email protected]>",
66
"homepage": "https://github.com/tripss/nestjs-query#readme",

packages/query-typeorm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ptc-org/nestjs-query-typeorm",
3-
"version": "4.4.0",
3+
"version": "5.0.0",
44
"description": "Typeorm adapter for @ptc-org/nestjs-query-core",
55
"author": "doug-martin <[email protected]>",
66
"homepage": "https://github.com/tripss/nestjs-query#readme",

0 commit comments

Comments
 (0)