Skip to content

Commit 3acfe18

Browse files
committed
chore(release): publish v0.24.0
1 parent 217d6cc commit 3acfe18

File tree

16 files changed

+119
-22
lines changed

16 files changed

+119
-22
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,23 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.24.0](https://github.com/doug-martin/nestjs-query/compare/v0.23.1...v0.24.0) (2021-03-15)
7+
8+
9+
### Bug Fixes
10+
11+
* **deps:** update dependency apollo-server-express to v2.21.1 ([cb43994](https://github.com/doug-martin/nestjs-query/commit/cb43994ed6f0bf998c0365cc5193bf80b8162d3f))
12+
13+
14+
### Features
15+
16+
* **graphql:** Allow disabling `and`/`or` filters ([c20fdbd](https://github.com/doug-martin/nestjs-query/commit/c20fdbd9774a541cf4ada8df1c5981e12ede7e8d))
17+
* **typegoose:** Add typegoose package ([#846](https://github.com/doug-martin/nestjs-query/issues/846)) ([73cf5cd](https://github.com/doug-martin/nestjs-query/commit/73cf5cdbf11496ad3a3ce3f6bb69975510de26e2))
18+
19+
20+
21+
22+
623
## [0.23.1](https://github.com/doug-martin/nestjs-query/compare/v0.23.0...v0.23.1) (2021-02-26)
724

825

examples/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.24.0](https://github.com/doug-martin/nestjs-query/compare/v0.23.1...v0.24.0) (2021-03-15)
7+
8+
9+
### Bug Fixes
10+
11+
* **deps:** update dependency apollo-server-express to v2.21.1 ([cb43994](https://github.com/doug-martin/nestjs-query/commit/cb43994ed6f0bf998c0365cc5193bf80b8162d3f))
12+
13+
14+
### Features
15+
16+
* **typegoose:** Add typegoose package ([#846](https://github.com/doug-martin/nestjs-query/issues/846)) ([73cf5cd](https://github.com/doug-martin/nestjs-query/commit/73cf5cdbf11496ad3a3ce3f6bb69975510de26e2))
17+
18+
19+
20+
21+
622
## [0.23.1](https://github.com/doug-martin/nestjs-query/compare/v0.23.0...v0.23.1) (2021-02-26)
723

824
**Note:** Version bump only for package nestjs-query-examples

examples/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nestjs-query-examples",
3-
"version": "0.23.1",
3+
"version": "0.24.0",
44
"description": "",
55
"author": "",
66
"private": true,
@@ -12,12 +12,12 @@
1212
"start": "nest start --watch"
1313
},
1414
"dependencies": {
15-
"@nestjs-query/core": "0.23.0",
16-
"@nestjs-query/query-graphql": "0.23.0",
17-
"@nestjs-query/query-mongoose": "0.23.1",
18-
"@nestjs-query/query-sequelize": "0.23.0",
19-
"@nestjs-query/query-typeorm": "0.23.1",
20-
"@nestjs-query/query-typegoose": "0.23.0",
15+
"@nestjs-query/core": "0.24.0",
16+
"@nestjs-query/query-graphql": "0.24.0",
17+
"@nestjs-query/query-mongoose": "0.24.0",
18+
"@nestjs-query/query-sequelize": "0.24.0",
19+
"@nestjs-query/query-typegoose": "0.24.0",
20+
"@nestjs-query/query-typeorm": "0.24.0",
2121
"@nestjs/common": "7.6.14",
2222
"@nestjs/core": "7.6.14",
2323
"@nestjs/graphql": "7.9.11",

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@
1616
"hoist": true
1717
}
1818
},
19-
"version": "0.23.1"
19+
"version": "0.24.0"
2020
}

packages/core/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.24.0](https://github.com/doug-martin/nestjs-query/compare/v0.23.1...v0.24.0) (2021-03-15)
7+
8+
9+
### Features
10+
11+
* **typegoose:** Add typegoose package ([#846](https://github.com/doug-martin/nestjs-query/issues/846)) ([73cf5cd](https://github.com/doug-martin/nestjs-query/commit/73cf5cdbf11496ad3a3ce3f6bb69975510de26e2))
12+
13+
14+
15+
16+
617
# [0.23.0](https://github.com/doug-martin/nestjs-query/compare/v0.22.0...v0.23.0) (2021-02-26)
718

819
**Note:** Version bump only for package @nestjs-query/core

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": "@nestjs-query/core",
3-
"version": "0.23.0",
3+
"version": "0.24.0",
44
"description": "Base query package",
55
"author": "doug-martin <[email protected]>",
66
"homepage": "https://github.com/doug-martin/nestjs-query#readme",

packages/query-graphql/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.24.0](https://github.com/doug-martin/nestjs-query/compare/v0.23.1...v0.24.0) (2021-03-15)
7+
8+
9+
### Features
10+
11+
* **graphql:** Allow disabling `and`/`or` filters ([c20fdbd](https://github.com/doug-martin/nestjs-query/commit/c20fdbd9774a541cf4ada8df1c5981e12ede7e8d))
12+
* **typegoose:** Add typegoose package ([#846](https://github.com/doug-martin/nestjs-query/issues/846)) ([73cf5cd](https://github.com/doug-martin/nestjs-query/commit/73cf5cdbf11496ad3a3ce3f6bb69975510de26e2))
13+
14+
15+
16+
17+
618
# [0.23.0](https://github.com/doug-martin/nestjs-query/compare/v0.22.0...v0.23.0) (2021-02-26)
719

820

packages/query-graphql/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nestjs-query/query-graphql",
3-
"version": "0.23.0",
3+
"version": "0.24.0",
44
"description": "Nestjs graphql query adapter",
55
"author": "doug-martin <[email protected]>",
66
"homepage": "https://github.com/doug-martin/nestjs-query#readme",
@@ -38,7 +38,7 @@
3838
"url": "https://github.com/doug-martin/nestjs-query/issues"
3939
},
4040
"dependencies": {
41-
"@nestjs-query/core": "0.23.0",
41+
"@nestjs-query/core": "0.24.0",
4242
"graphql-fields": "^2.0.3",
4343
"lodash.omit": "^4.5.0",
4444
"lower-case-first": "^2.0.1",

packages/query-mongoose/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.24.0](https://github.com/doug-martin/nestjs-query/compare/v0.23.1...v0.24.0) (2021-03-15)
7+
8+
9+
### Features
10+
11+
* **typegoose:** Add typegoose package ([#846](https://github.com/doug-martin/nestjs-query/issues/846)) ([73cf5cd](https://github.com/doug-martin/nestjs-query/commit/73cf5cdbf11496ad3a3ce3f6bb69975510de26e2))
12+
13+
14+
15+
16+
617
## [0.23.1](https://github.com/doug-martin/nestjs-query/compare/v0.23.0...v0.23.1) (2021-02-26)
718

819
**Note:** Version bump only for package @nestjs-query/query-mongoose

packages/query-mongoose/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nestjs-query/query-mongoose",
3-
"version": "0.23.1",
3+
"version": "0.24.0",
44
"description": "Mongoose adapter for @nestjs-query/core",
55
"author": "doug-martin <[email protected]>",
66
"homepage": "https://github.com/doug-martin/nestjs-query#readme",
@@ -18,7 +18,7 @@
1818
"access": "public"
1919
},
2020
"dependencies": {
21-
"@nestjs-query/core": "0.23.0",
21+
"@nestjs-query/core": "0.24.0",
2222
"lodash.escaperegexp": "^4.1.2",
2323
"lodash.merge": "^4.6.2"
2424
},

0 commit comments

Comments
 (0)