Skip to content

Commit dfac67c

Browse files
committed
chore(release): publish v0.28.1
1 parent 37e1303 commit dfac67c

File tree

16 files changed

+104
-20
lines changed

16 files changed

+104
-20
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,24 @@
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.28.1](https://github.com/doug-martin/nestjs-query/compare/v0.28.0...v0.28.1) (2021-07-27)
7+
8+
9+
### Bug Fixes
10+
11+
* **deps:** update docusaurus monorepo to v2.0.0-beta.3 ([65bafa7](https://github.com/doug-martin/nestjs-query/commit/65bafa7222044d2631d2fd91c2ed8c406e6abafa))
12+
* **query-typegoose:** ignore undefined id field in creation dto ([#1165](https://github.com/doug-martin/nestjs-query/issues/1165)) ([db5bf44](https://github.com/doug-martin/nestjs-query/commit/db5bf447bdf0095b01791b694785ecd3fb723c0f))
13+
* **typegoose:** allow undefined id field when updating or creating ([c2031aa](https://github.com/doug-martin/nestjs-query/commit/c2031aaf8c65fe7f2440f5b434329662c02296e4))
14+
15+
16+
### Features
17+
18+
* **graphql,#958,#1160:** Enable authorizers on subscriptions ([d2f857f](https://github.com/doug-martin/nestjs-query/commit/d2f857f73540ee400f5dcc79cbb25dfba81c2963)), closes [#958](https://github.com/doug-martin/nestjs-query/issues/958) [#1160](https://github.com/doug-martin/nestjs-query/issues/1160)
19+
20+
21+
22+
23+
624
# [0.28.0](https://github.com/doug-martin/nestjs-query/compare/v0.27.0...v0.28.0) (2021-07-19)
725

826

examples/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.28.1](https://github.com/doug-martin/nestjs-query/compare/v0.28.0...v0.28.1) (2021-07-27)
7+
8+
9+
### Features
10+
11+
* **graphql,#958,#1160:** Enable authorizers on subscriptions ([d2f857f](https://github.com/doug-martin/nestjs-query/commit/d2f857f73540ee400f5dcc79cbb25dfba81c2963)), closes [#958](https://github.com/doug-martin/nestjs-query/issues/958) [#1160](https://github.com/doug-martin/nestjs-query/issues/1160)
12+
13+
14+
15+
16+
617
# [0.28.0](https://github.com/doug-martin/nestjs-query/compare/v0.27.0...v0.28.0) (2021-07-19)
718

819

examples/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nestjs-query-examples",
3-
"version": "0.28.0",
3+
"version": "0.28.1",
44
"description": "",
55
"author": "",
66
"private": true,
@@ -13,12 +13,12 @@
1313
},
1414
"dependencies": {
1515
"@apollo/federation": "0.26.0",
16-
"@nestjs-query/core": "0.28.0",
17-
"@nestjs-query/query-graphql": "0.28.0",
18-
"@nestjs-query/query-mongoose": "0.28.0",
19-
"@nestjs-query/query-sequelize": "0.28.0",
20-
"@nestjs-query/query-typegoose": "0.28.0",
21-
"@nestjs-query/query-typeorm": "0.28.0",
16+
"@nestjs-query/core": "0.28.1",
17+
"@nestjs-query/query-graphql": "0.28.1",
18+
"@nestjs-query/query-mongoose": "0.28.1",
19+
"@nestjs-query/query-sequelize": "0.28.1",
20+
"@nestjs-query/query-typegoose": "0.28.1",
21+
"@nestjs-query/query-typeorm": "0.28.1",
2222
"@nestjs/common": "8.0.4",
2323
"@nestjs/core": "8.0.4",
2424
"@nestjs/graphql": "8.0.2",
@@ -30,9 +30,9 @@
3030
"@nestjs/typeorm": "8.0.1",
3131
"@typegoose/typegoose": "8.0.0-beta.7",
3232
"apollo-server-core": "2.25.2",
33-
"apollo-server-types": "0.9.0",
3433
"apollo-server-express": "2.25.2",
3534
"apollo-server-plugin-base": "0.13.0",
35+
"apollo-server-types": "0.9.0",
3636
"class-validator": "0.13.1",
3737
"graphql": "15.5.1",
3838
"graphql-query-complexity": "0.8.1",

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.28.0"
19+
"version": "0.28.1"
2020
}

packages/core/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
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.28.1](https://github.com/doug-martin/nestjs-query/compare/v0.28.0...v0.28.1) (2021-07-27)
7+
8+
**Note:** Version bump only for package @nestjs-query/core
9+
10+
11+
12+
13+
614
# [0.28.0](https://github.com/doug-martin/nestjs-query/compare/v0.27.0...v0.28.0) (2021-07-19)
715

816
**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.28.0",
3+
"version": "0.28.1",
44
"description": "Base query package",
55
"author": "doug-martin <doug@dougamartin.com>",
66
"homepage": "https://github.com/doug-martin/nestjs-query#readme",

packages/query-graphql/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.28.1](https://github.com/doug-martin/nestjs-query/compare/v0.28.0...v0.28.1) (2021-07-27)
7+
8+
9+
### Features
10+
11+
* **graphql,#958,#1160:** Enable authorizers on subscriptions ([d2f857f](https://github.com/doug-martin/nestjs-query/commit/d2f857f73540ee400f5dcc79cbb25dfba81c2963)), closes [#958](https://github.com/doug-martin/nestjs-query/issues/958) [#1160](https://github.com/doug-martin/nestjs-query/issues/1160)
12+
13+
14+
15+
16+
617
# [0.28.0](https://github.com/doug-martin/nestjs-query/compare/v0.27.0...v0.28.0) (2021-07-19)
718

819

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.28.0",
3+
"version": "0.28.1",
44
"description": "Nestjs graphql query adapter",
55
"author": "doug-martin <doug@dougamartin.com>",
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.28.0",
41+
"@nestjs-query/core": "0.28.1",
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: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
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.28.1](https://github.com/doug-martin/nestjs-query/compare/v0.28.0...v0.28.1) (2021-07-27)
7+
8+
**Note:** Version bump only for package @nestjs-query/query-mongoose
9+
10+
11+
12+
13+
614
# [0.28.0](https://github.com/doug-martin/nestjs-query/compare/v0.27.0...v0.28.0) (2021-07-19)
715

816
**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.28.0",
3+
"version": "0.28.1",
44
"description": "Mongoose adapter for @nestjs-query/core",
55
"author": "doug-martin <doug@dougamartin.com>",
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.28.0",
21+
"@nestjs-query/core": "0.28.1",
2222
"camel-case": "^4.1.2",
2323
"lodash.escaperegexp": "^4.1.2",
2424
"lodash.merge": "^4.6.2",

packages/query-sequelize/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
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.28.1](https://github.com/doug-martin/nestjs-query/compare/v0.28.0...v0.28.1) (2021-07-27)
7+
8+
**Note:** Version bump only for package @nestjs-query/query-sequelize
9+
10+
11+
12+
13+
614
# [0.28.0](https://github.com/doug-martin/nestjs-query/compare/v0.27.0...v0.28.0) (2021-07-19)
715

816
**Note:** Version bump only for package @nestjs-query/query-sequelize

packages/query-sequelize/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-sequelize",
3-
"version": "0.28.0",
3+
"version": "0.28.1",
44
"description": "Sequelize adapter for @nestjs-query/core",
55
"author": "doug-martin <doug@dougamartin.com>",
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.28.0",
21+
"@nestjs-query/core": "0.28.1",
2222
"camel-case": "^4.1.2",
2323
"lodash.pick": "4.4.0",
2424
"tslib": "^2.1.0"

packages/query-typegoose/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.28.1](https://github.com/doug-martin/nestjs-query/compare/v0.28.0...v0.28.1) (2021-07-27)
7+
8+
9+
### Bug Fixes
10+
11+
* **query-typegoose:** ignore undefined id field in creation dto ([#1165](https://github.com/doug-martin/nestjs-query/issues/1165)) ([db5bf44](https://github.com/doug-martin/nestjs-query/commit/db5bf447bdf0095b01791b694785ecd3fb723c0f))
12+
* **typegoose:** allow undefined id field when updating or creating ([c2031aa](https://github.com/doug-martin/nestjs-query/commit/c2031aaf8c65fe7f2440f5b434329662c02296e4))
13+
14+
15+
16+
17+
618
# [0.28.0](https://github.com/doug-martin/nestjs-query/compare/v0.27.0...v0.28.0) (2021-07-19)
719

820
**Note:** Version bump only for package @nestjs-query/query-typegoose

packages/query-typegoose/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-typegoose",
3-
"version": "0.28.0",
3+
"version": "0.28.1",
44
"description": "Typegoose adapter for @nestjs-query/core",
55
"author": "john mcinall<johnmcinall@gmail.com>",
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.28.0",
21+
"@nestjs-query/core": "0.28.1",
2222
"camel-case": "^4.1.2",
2323
"lodash.escaperegexp": "^4.1.2",
2424
"lodash.merge": "^4.6.2",

packages/query-typeorm/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
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.28.1](https://github.com/doug-martin/nestjs-query/compare/v0.28.0...v0.28.1) (2021-07-27)
7+
8+
**Note:** Version bump only for package @nestjs-query/query-typeorm
9+
10+
11+
12+
13+
614
# [0.28.0](https://github.com/doug-martin/nestjs-query/compare/v0.27.0...v0.28.0) (2021-07-19)
715

816
**Note:** Version bump only for package @nestjs-query/query-typeorm

packages/query-typeorm/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-typeorm",
3-
"version": "0.28.0",
3+
"version": "0.28.1",
44
"description": "Typeorm adapter for @nestjs-query/core",
55
"author": "doug-martin <doug@dougamartin.com>",
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.28.0",
21+
"@nestjs-query/core": "0.28.1",
2222
"camel-case": "^4.1.2",
2323
"lodash.filter": "^4.6.0",
2424
"lodash.omit": "^4.5.0",

0 commit comments

Comments
 (0)