Skip to content

Commit 6c3992b

Browse files
committed
chore(release): publish v0.18.1
1 parent f498802 commit 6c3992b

File tree

12 files changed

+89
-13
lines changed

12 files changed

+89
-13
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,27 @@
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.18.1](https://github.com/doug-martin/nestjs-query/compare/v0.18.0...v0.18.1) (2020-08-14)
7+
8+
9+
### Bug Fixes
10+
11+
* **core:** Fix potential stack overflow with filter comparison ([f498802](https://github.com/doug-martin/nestjs-query/commit/f49880274a32e681d9072253135a8669bec7b3b2))
12+
* **deps:** update dependency graphql-query-complexity to v0.7.0 ([d47bba1](https://github.com/doug-martin/nestjs-query/commit/d47bba1def07445f3e6e190d4382653f0d21ceaf))
13+
* **deps:** update dependency graphql-tools to v6.0.17 ([b0d1648](https://github.com/doug-martin/nestjs-query/commit/b0d1648509daeb63ec3973ae598de4529ac093d8))
14+
* **deps:** update dependency graphql-tools to v6.0.18 ([9678548](https://github.com/doug-martin/nestjs-query/commit/9678548965217ecf63151ff72f75d1358a06c181))
15+
* **tests:** Make subTask connections tests order consistently ([ab8bab2](https://github.com/doug-martin/nestjs-query/commit/ab8bab23d1679b06e60966999a0d4e2e1f258e78))
16+
17+
18+
### Features
19+
20+
* **core:** refactor null compares and improve tests ([3582ed2](https://github.com/doug-martin/nestjs-query/commit/3582ed2f6b4aa5e3fa78bd9986621b9816566156))
21+
* refactored filter builder to support nested object filters ([1ee8dbf](https://github.com/doug-martin/nestjs-query/commit/1ee8dbf5a0ae1a1258b203da1e68901e2b8d20f8))
22+
23+
24+
25+
26+
627
# [0.18.0](https://github.com/doug-martin/nestjs-query/compare/v0.17.10...v0.18.0) (2020-08-11)
728

829

examples/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,20 @@
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.18.1](https://github.com/doug-martin/nestjs-query/compare/v0.18.0...v0.18.1) (2020-08-14)
7+
8+
9+
### Bug Fixes
10+
11+
* **deps:** update dependency graphql-query-complexity to v0.7.0 ([d47bba1](https://github.com/doug-martin/nestjs-query/commit/d47bba1def07445f3e6e190d4382653f0d21ceaf))
12+
* **deps:** update dependency graphql-tools to v6.0.17 ([b0d1648](https://github.com/doug-martin/nestjs-query/commit/b0d1648509daeb63ec3973ae598de4529ac093d8))
13+
* **deps:** update dependency graphql-tools to v6.0.18 ([9678548](https://github.com/doug-martin/nestjs-query/commit/9678548965217ecf63151ff72f75d1358a06c181))
14+
* **tests:** Make subTask connections tests order consistently ([ab8bab2](https://github.com/doug-martin/nestjs-query/commit/ab8bab23d1679b06e60966999a0d4e2e1f258e78))
15+
16+
17+
18+
19+
620
# [0.18.0](https://github.com/doug-martin/nestjs-query/compare/v0.17.10...v0.18.0) (2020-08-11)
721

822

examples/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nestjs-query-examples",
3-
"version": "0.18.0",
3+
"version": "0.18.1",
44
"description": "",
55
"author": "",
66
"private": true,
@@ -12,10 +12,10 @@
1212
"start": "nest start --watch"
1313
},
1414
"dependencies": {
15-
"@nestjs-query/core": "0.18.0",
16-
"@nestjs-query/query-graphql": "0.18.0",
17-
"@nestjs-query/query-sequelize": "0.18.0",
18-
"@nestjs-query/query-typeorm": "0.18.0",
15+
"@nestjs-query/core": "0.18.1",
16+
"@nestjs-query/query-graphql": "0.18.1",
17+
"@nestjs-query/query-sequelize": "0.18.1",
18+
"@nestjs-query/query-typeorm": "0.18.1",
1919
"@nestjs/common": "7.4.2",
2020
"@nestjs/core": "7.4.2",
2121
"@nestjs/graphql": "7.6.0",

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

packages/core/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.18.1](https://github.com/doug-martin/nestjs-query/compare/v0.18.0...v0.18.1) (2020-08-14)
7+
8+
9+
### Bug Fixes
10+
11+
* **core:** Fix potential stack overflow with filter comparison ([f498802](https://github.com/doug-martin/nestjs-query/commit/f49880274a32e681d9072253135a8669bec7b3b2))
12+
13+
14+
### Features
15+
16+
* **core:** refactor null compares and improve tests ([3582ed2](https://github.com/doug-martin/nestjs-query/commit/3582ed2f6b4aa5e3fa78bd9986621b9816566156))
17+
* refactored filter builder to support nested object filters ([1ee8dbf](https://github.com/doug-martin/nestjs-query/commit/1ee8dbf5a0ae1a1258b203da1e68901e2b8d20f8))
18+
19+
20+
21+
22+
623
# [0.18.0](https://github.com/doug-martin/nestjs-query/compare/v0.17.10...v0.18.0) (2020-08-11)
724

825
**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.18.0",
3+
"version": "0.18.1",
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: 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.18.1](https://github.com/doug-martin/nestjs-query/compare/v0.18.0...v0.18.1) (2020-08-14)
7+
8+
**Note:** Version bump only for package @nestjs-query/query-graphql
9+
10+
11+
12+
13+
614
# [0.18.0](https://github.com/doug-martin/nestjs-query/compare/v0.17.10...v0.18.0) (2020-08-11)
715

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

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.18.0",
3+
"version": "0.18.1",
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.18.0",
41+
"@nestjs-query/core": "0.18.1",
4242
"graphql-fields": "^2.0.3",
4343
"lodash.omit": "^4.5.0",
4444
"lower-case-first": "^2.0.1",

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.18.1](https://github.com/doug-martin/nestjs-query/compare/v0.18.0...v0.18.1) (2020-08-14)
7+
8+
**Note:** Version bump only for package @nestjs-query/query-sequelize
9+
10+
11+
12+
13+
614
# [0.18.0](https://github.com/doug-martin/nestjs-query/compare/v0.17.10...v0.18.0) (2020-08-11)
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.18.0",
3+
"version": "0.18.1",
44
"description": "Sequelize 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.18.0",
21+
"@nestjs-query/core": "0.18.1",
2222
"lodash.pick": "4.4.0"
2323
},
2424
"peerDependencies": {

0 commit comments

Comments
 (0)