Skip to content

Commit c7dd707

Browse files
committed
chore(release): publish v0.16.0
1 parent 3bba900 commit c7dd707

File tree

12 files changed

+108
-15
lines changed

12 files changed

+108
-15
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,30 @@
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.16.0](https://github.com/doug-martin/nestjs-query/compare/v0.15.1...v0.16.0) (2020-07-05)
7+
8+
9+
### Bug Fixes
10+
11+
* **deps:** update dependency apollo-server-express to v2.15.1 ([29f2b72](https://github.com/doug-martin/nestjs-query/commit/29f2b72dcf324bf87ed0e4ff49a1e4f2e26e956c))
12+
* **deps:** update dependency graphql-tools to v6.0.12 ([3048277](https://github.com/doug-martin/nestjs-query/commit/30482777ef592bd4d3a8b0d41d8b4a9e8e60c9f7))
13+
* **deps:** update dependency rxjs to v6.6.0 ([cc356f9](https://github.com/doug-martin/nestjs-query/commit/cc356f9f51f2ccf0931539798dd4a0c8138e989a))
14+
* **deps:** update dependency sequelize to v5.22.2 ([c04d1fc](https://github.com/doug-martin/nestjs-query/commit/c04d1fc762a435dfdee99a8d6a8ee9f163df851f))
15+
* **deps:** update dependency sequelize to v5.22.3 ([ac288e3](https://github.com/doug-martin/nestjs-query/commit/ac288e323f01608cb2fed4bce0a6bdc86ecc3921))
16+
* **sequelize:** Change query to not use sub queries ([80c69d6](https://github.com/doug-martin/nestjs-query/commit/80c69d6b285725eb99dc05675044185d2f4343a8))
17+
18+
19+
### Features
20+
21+
* **core:** Add type support for nest objects in filter ([cd9d0b5](https://github.com/doug-martin/nestjs-query/commit/cd9d0b524c1f4c384dc9e5ac6baeb5a49bc068e7))
22+
* **graphql:** Enable filtering on ORM relations ([60229b8](https://github.com/doug-martin/nestjs-query/commit/60229b8fe981a863e8f31f1734c0b9a1aa001cf2))
23+
* **sequelize:** Add support for querying for nested relations ([92a51c1](https://github.com/doug-martin/nestjs-query/commit/92a51c120aa2bf6da915037628aad041fa0fc34c))
24+
* **typeorm:** Add support for filtering on relations ([aa8788c](https://github.com/doug-martin/nestjs-query/commit/aa8788cbbc0c95465e1633b57ca48c91b160038a))
25+
26+
27+
28+
29+
630
## [0.15.1](https://github.com/doug-martin/nestjs-query/compare/v0.15.0...v0.15.1) (2020-06-27)
731

832

examples/CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
# [0.16.0](https://github.com/doug-martin/nestjs-query/compare/v0.15.1...v0.16.0) (2020-07-05)
7+
8+
9+
### Bug Fixes
10+
11+
* **deps:** update dependency apollo-server-express to v2.15.1 ([29f2b72](https://github.com/doug-martin/nestjs-query/commit/29f2b72dcf324bf87ed0e4ff49a1e4f2e26e956c))
12+
* **deps:** update dependency graphql-tools to v6.0.12 ([3048277](https://github.com/doug-martin/nestjs-query/commit/30482777ef592bd4d3a8b0d41d8b4a9e8e60c9f7))
13+
* **deps:** update dependency rxjs to v6.6.0 ([cc356f9](https://github.com/doug-martin/nestjs-query/commit/cc356f9f51f2ccf0931539798dd4a0c8138e989a))
14+
* **deps:** update dependency sequelize to v5.22.2 ([c04d1fc](https://github.com/doug-martin/nestjs-query/commit/c04d1fc762a435dfdee99a8d6a8ee9f163df851f))
15+
* **deps:** update dependency sequelize to v5.22.3 ([ac288e3](https://github.com/doug-martin/nestjs-query/commit/ac288e323f01608cb2fed4bce0a6bdc86ecc3921))
16+
17+
18+
### Features
19+
20+
* **graphql:** Enable filtering on ORM relations ([60229b8](https://github.com/doug-martin/nestjs-query/commit/60229b8fe981a863e8f31f1734c0b9a1aa001cf2))

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.15.1",
3+
"version": "0.16.0",
44
"description": "",
55
"author": "",
66
"private": true,
@@ -12,26 +12,26 @@
1212
"start": "nest start --watch"
1313
},
1414
"dependencies": {
15-
"@nestjs-query/core": "0.15.0",
16-
"@nestjs-query/query-graphql": "0.15.1",
17-
"@nestjs-query/query-typeorm": "0.15.1",
18-
"@nestjs-query/query-sequelize": "0.15.1",
15+
"@nestjs-query/core": "0.16.0",
16+
"@nestjs-query/query-graphql": "0.16.0",
17+
"@nestjs-query/query-sequelize": "0.16.0",
18+
"@nestjs-query/query-typeorm": "0.16.0",
1919
"@nestjs/common": "7.3.1",
2020
"@nestjs/core": "7.3.1",
2121
"@nestjs/graphql": "7.5.1",
2222
"@nestjs/platform-express": "7.3.1",
23-
"@nestjs/typeorm": "7.1.0",
2423
"@nestjs/sequelize": "0.1.0",
24+
"@nestjs/typeorm": "7.1.0",
2525
"apollo-server-express": "2.15.1",
2626
"class-validator": "0.12.2",
2727
"graphql": "15.2.0",
2828
"graphql-tools": "6.0.12",
2929
"pg": "8.2.1",
3030
"rimraf": "3.0.2",
3131
"rxjs": "6.6.0",
32-
"typeorm": "0.2.25",
3332
"sequelize": "5.22.3",
3433
"sequelize-typescript": "1.1.0",
34+
"typeorm": "0.2.25",
3535
"typeorm-seeding": "1.6.1"
3636
},
3737
"devDependencies": {

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.15.1"
19+
"version": "0.16.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.16.0](https://github.com/doug-martin/nestjs-query/compare/v0.15.1...v0.16.0) (2020-07-05)
7+
8+
9+
### Features
10+
11+
* **core:** Add type support for nest objects in filter ([cd9d0b5](https://github.com/doug-martin/nestjs-query/commit/cd9d0b524c1f4c384dc9e5ac6baeb5a49bc068e7))
12+
13+
14+
15+
16+
617
# [0.15.0](https://github.com/doug-martin/nestjs-query/compare/v0.14.3...v0.15.0) (2020-06-23)
718

819

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.15.0",
3+
"version": "0.16.0",
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.16.0](https://github.com/doug-martin/nestjs-query/compare/v0.15.1...v0.16.0) (2020-07-05)
7+
8+
9+
### Features
10+
11+
* **graphql:** Enable filtering on ORM relations ([60229b8](https://github.com/doug-martin/nestjs-query/commit/60229b8fe981a863e8f31f1734c0b9a1aa001cf2))
12+
13+
14+
15+
16+
617
## [0.15.1](https://github.com/doug-martin/nestjs-query/compare/v0.15.0...v0.15.1) (2020-06-27)
718

819
**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.15.1",
3+
"version": "0.16.0",
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.15.0",
41+
"@nestjs-query/core": "0.16.0",
4242
"lodash.omit": "^4.5.0",
4343
"lower-case-first": "^2.0.1",
4444
"pluralize": "^8.0.0",

packages/query-sequelize/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.16.0](https://github.com/doug-martin/nestjs-query/compare/v0.15.1...v0.16.0) (2020-07-05)
7+
8+
9+
### Bug Fixes
10+
11+
* **sequelize:** Change query to not use sub queries ([80c69d6](https://github.com/doug-martin/nestjs-query/commit/80c69d6b285725eb99dc05675044185d2f4343a8))
12+
13+
14+
### Features
15+
16+
* **sequelize:** Add support for querying for nested relations ([92a51c1](https://github.com/doug-martin/nestjs-query/commit/92a51c120aa2bf6da915037628aad041fa0fc34c))
17+
18+
19+
20+
21+
622
## [0.15.1](https://github.com/doug-martin/nestjs-query/compare/v0.15.0...v0.15.1) (2020-06-27)
723

824
**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.15.1",
3+
"version": "0.16.0",
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.15.0",
21+
"@nestjs-query/core": "0.16.0",
2222
"lodash.pick": "4.4.0"
2323
},
2424
"peerDependencies": {

packages/query-typeorm/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.16.0](https://github.com/doug-martin/nestjs-query/compare/v0.15.1...v0.16.0) (2020-07-05)
7+
8+
9+
### Features
10+
11+
* **typeorm:** Add support for filtering on relations ([aa8788c](https://github.com/doug-martin/nestjs-query/commit/aa8788cbbc0c95465e1633b57ca48c91b160038a))
12+
13+
14+
15+
16+
617
## [0.15.1](https://github.com/doug-martin/nestjs-query/compare/v0.15.0...v0.15.1) (2020-06-27)
718

819
**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.15.1",
3+
"version": "0.16.0",
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.15.0"
21+
"@nestjs-query/core": "0.16.0"
2222
},
2323
"peerDependencies": {
2424
"@nestjs/common": "^7.0.0",

0 commit comments

Comments
 (0)