Skip to content

Commit 9af43aa

Browse files
committed
chore(release): publish v0.30.0
1 parent 86f7fd9 commit 9af43aa

File tree

16 files changed

+118
-20
lines changed

16 files changed

+118
-20
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,29 @@
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.30.0](https://github.com/doug-martin/nestjs-query/compare/v0.29.0...v0.30.0) (2021-09-30)
7+
8+
9+
### Bug Fixes
10+
11+
* **deps:** update apollo graphql packages ([6d40b9d](https://github.com/doug-martin/nestjs-query/commit/6d40b9d10de522d7950fca8279ee2d763c17e3a5))
12+
* **deps:** update dependency passport to v0.5.0 ([a8a05d1](https://github.com/doug-martin/nestjs-query/commit/a8a05d1d91c0c50aa0140c8709c9ea75b1aca05f))
13+
* **deps:** update docusaurus monorepo to v2.0.0-beta.6 ([9015c71](https://github.com/doug-martin/nestjs-query/commit/9015c7162181fcc5362baf9c26efe079d0c22476))
14+
* **query-graphql:** Custom authorizers now behave like auth decorators ([ff92b9a](https://github.com/doug-martin/nestjs-query/commit/ff92b9ae7a0ae4fb9585bead9b778e26fbd6b95a))
15+
* **query-graphql:** fix eslint errors ([73acbc3](https://github.com/doug-martin/nestjs-query/commit/73acbc3557d3e8cccbe7cb7e8e01dde9d4218208))
16+
* **query-typeorm:** import jest-extended into typeorm query service ([f539b29](https://github.com/doug-martin/nestjs-query/commit/f539b29fad60c070e8736f872d547fd498eb3c4f))
17+
* **tests:** fix jest-extended typings and eslint problems ([6af8af1](https://github.com/doug-martin/nestjs-query/commit/6af8af13a33faaa1585561e7b426b125a6368b6b))
18+
* **typeorm:** revert uneeded change to test entity ([86f7fd9](https://github.com/doug-martin/nestjs-query/commit/86f7fd9abb101eb40af2cf66009d50cb8c173eea))
19+
20+
21+
### Features
22+
23+
* **query-typeorm:** allow deeply nested filters ([0bd6b76](https://github.com/doug-martin/nestjs-query/commit/0bd6b76c4dbd876df7f9a991803843405d24fdb9))
24+
25+
26+
27+
28+
629
# [0.29.0](https://github.com/doug-martin/nestjs-query/compare/v0.28.1...v0.29.0) (2021-09-09)
730

831

examples/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.30.0](https://github.com/doug-martin/nestjs-query/compare/v0.29.0...v0.30.0) (2021-09-30)
7+
8+
9+
### Bug Fixes
10+
11+
* **deps:** update apollo graphql packages ([6d40b9d](https://github.com/doug-martin/nestjs-query/commit/6d40b9d10de522d7950fca8279ee2d763c17e3a5))
12+
* **deps:** update dependency passport to v0.5.0 ([a8a05d1](https://github.com/doug-martin/nestjs-query/commit/a8a05d1d91c0c50aa0140c8709c9ea75b1aca05f))
13+
14+
15+
16+
17+
618
# [0.29.0](https://github.com/doug-martin/nestjs-query/compare/v0.28.1...v0.29.0) (2021-09-09)
719

820

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.29.0",
3+
"version": "0.30.0",
44
"description": "",
55
"author": "",
66
"private": true,
@@ -13,12 +13,12 @@
1313
},
1414
"dependencies": {
1515
"@apollo/federation": "0.33.0",
16-
"@nestjs-query/core": "0.29.0",
17-
"@nestjs-query/query-graphql": "0.29.0",
18-
"@nestjs-query/query-mongoose": "0.29.0",
19-
"@nestjs-query/query-sequelize": "0.29.0",
20-
"@nestjs-query/query-typegoose": "0.29.0",
21-
"@nestjs-query/query-typeorm": "0.29.0",
16+
"@nestjs-query/core": "0.30.0",
17+
"@nestjs-query/query-graphql": "0.30.0",
18+
"@nestjs-query/query-mongoose": "0.30.0",
19+
"@nestjs-query/query-sequelize": "0.30.0",
20+
"@nestjs-query/query-typegoose": "0.30.0",
21+
"@nestjs-query/query-typeorm": "0.30.0",
2222
"@nestjs/common": "8.0.9",
2323
"@nestjs/core": "8.0.9",
2424
"@nestjs/graphql": "9.0.5",

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.29.0"
19+
"version": "0.30.0"
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.30.0](https://github.com/doug-martin/nestjs-query/compare/v0.29.0...v0.30.0) (2021-09-30)
7+
8+
**Note:** Version bump only for package @nestjs-query/core
9+
10+
11+
12+
13+
614
# [0.29.0](https://github.com/doug-martin/nestjs-query/compare/v0.28.1...v0.29.0) (2021-09-09)
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.29.0",
3+
"version": "0.30.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: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,19 @@
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.30.0](https://github.com/doug-martin/nestjs-query/compare/v0.29.0...v0.30.0) (2021-09-30)
7+
8+
9+
### Bug Fixes
10+
11+
* **deps:** update apollo graphql packages ([6d40b9d](https://github.com/doug-martin/nestjs-query/commit/6d40b9d10de522d7950fca8279ee2d763c17e3a5))
12+
* **query-graphql:** Custom authorizers now behave like auth decorators ([ff92b9a](https://github.com/doug-martin/nestjs-query/commit/ff92b9ae7a0ae4fb9585bead9b778e26fbd6b95a))
13+
* **query-graphql:** fix eslint errors ([73acbc3](https://github.com/doug-martin/nestjs-query/commit/73acbc3557d3e8cccbe7cb7e8e01dde9d4218208))
14+
15+
16+
17+
18+
619
# [0.29.0](https://github.com/doug-martin/nestjs-query/compare/v0.28.1...v0.29.0) (2021-09-09)
720

821

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.29.0",
3+
"version": "0.30.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.29.0",
41+
"@nestjs-query/core": "0.30.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: 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.30.0](https://github.com/doug-martin/nestjs-query/compare/v0.29.0...v0.30.0) (2021-09-30)
7+
8+
**Note:** Version bump only for package @nestjs-query/query-mongoose
9+
10+
11+
12+
13+
614
# [0.29.0](https://github.com/doug-martin/nestjs-query/compare/v0.28.1...v0.29.0) (2021-09-09)
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.29.0",
3+
"version": "0.30.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.29.0",
21+
"@nestjs-query/core": "0.30.0",
2222
"camel-case": "^4.1.2",
2323
"lodash.escaperegexp": "^4.1.2",
2424
"lodash.merge": "^4.6.2",

0 commit comments

Comments
 (0)