Skip to content

Commit c8d6751

Browse files
committed
chore(release): publish v0.17.0
1 parent 2e9f602 commit c8d6751

File tree

12 files changed

+100
-13
lines changed

12 files changed

+100
-13
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.17.0](https://github.com/doug-martin/nestjs-query/compare/v0.16.2...v0.17.0) (2020-07-16)
7+
8+
9+
### Bug Fixes
10+
11+
* **deps:** update dependency graphql-tools to v6.0.13 ([802bb5b](https://github.com/doug-martin/nestjs-query/commit/802bb5bae9a19ba87366a363aab70480f2c3d213))
12+
13+
14+
### Features
15+
16+
* **aggregations:** Add aggregation support to sequelize ([c37b7ae](https://github.com/doug-martin/nestjs-query/commit/c37b7aeb00fc60e7dc55893fe712dcad454edddb))
17+
* **aggregations:** Add aggregations interfaces ([d67e733](https://github.com/doug-martin/nestjs-query/commit/d67e73393d2cb8d2f0dc131a8455bb798a270e14))
18+
* **aggregations:** Add aggregations to graphql ([af075d2](https://github.com/doug-martin/nestjs-query/commit/af075d2e93b6abbbfbe32afcc917350f803fadaa))
19+
* **aggregations,relations:** Add relation aggregation graphql enpoints ([56bb7e0](https://github.com/doug-martin/nestjs-query/commit/56bb7e0be3298ebe76159327ce54229818a6067b))
20+
* **aggregations,relations,core:** Add relation aggregation to core ([a489588](https://github.com/doug-martin/nestjs-query/commit/a4895881a1e9ff76811b264cc58eeea116b3edfd))
21+
* **aggregations,sequelize:** Add relation aggregation to sequelize ([93e7c1b](https://github.com/doug-martin/nestjs-query/commit/93e7c1ba3d03b222b08f39bbbfaf4365ce50204e))
22+
* **aggregations,sequelize:** Fix aggregation on many-to-many relations ([db6ecb2](https://github.com/doug-martin/nestjs-query/commit/db6ecb2527a96ba232c8af911e4eb2f6ab9f8a65))
23+
* **aggregations,typeorm:** Add relation aggregation to typeorm ([2bf35a9](https://github.com/doug-martin/nestjs-query/commit/2bf35a92ce80b1f3026fd87cb62cad17eb6eff03))
24+
* **aggretations:** Add aggregations support to typeorm ([7233c23](https://github.com/doug-martin/nestjs-query/commit/7233c2397d0ac332e5209ab87ae62f5f555609d6))
25+
26+
27+
28+
29+
630
## [0.16.2](https://github.com/doug-martin/nestjs-query/compare/v0.16.1...v0.16.2) (2020-07-09)
731

832

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.17.0](https://github.com/doug-martin/nestjs-query/compare/v0.16.2...v0.17.0) (2020-07-16)
7+
8+
9+
### Bug Fixes
10+
11+
* **deps:** update dependency graphql-tools to v6.0.13 ([802bb5b](https://github.com/doug-martin/nestjs-query/commit/802bb5bae9a19ba87366a363aab70480f2c3d213))
12+
13+
14+
15+
16+
617
## [0.16.2](https://github.com/doug-martin/nestjs-query/compare/v0.16.1...v0.16.2) (2020-07-09)
718

819

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.16.2",
3+
"version": "0.17.0",
44
"description": "",
55
"author": "",
66
"private": true,
@@ -12,10 +12,10 @@
1212
"start": "nest start --watch"
1313
},
1414
"dependencies": {
15-
"@nestjs-query/core": "0.16.2",
16-
"@nestjs-query/query-graphql": "0.16.2",
17-
"@nestjs-query/query-sequelize": "0.16.2",
18-
"@nestjs-query/query-typeorm": "0.16.2",
15+
"@nestjs-query/core": "0.17.0",
16+
"@nestjs-query/query-graphql": "0.17.0",
17+
"@nestjs-query/query-sequelize": "0.17.0",
18+
"@nestjs-query/query-typeorm": "0.17.0",
1919
"@nestjs/common": "7.3.2",
2020
"@nestjs/core": "7.3.2",
2121
"@nestjs/graphql": "7.5.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.16.2"
19+
"version": "0.17.0"
2020
}

packages/core/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.17.0](https://github.com/doug-martin/nestjs-query/compare/v0.16.2...v0.17.0) (2020-07-16)
7+
8+
9+
### Features
10+
11+
* **aggregations:** Add aggregations interfaces ([d67e733](https://github.com/doug-martin/nestjs-query/commit/d67e73393d2cb8d2f0dc131a8455bb798a270e14))
12+
* **aggregations:** Add aggregations to graphql ([af075d2](https://github.com/doug-martin/nestjs-query/commit/af075d2e93b6abbbfbe32afcc917350f803fadaa))
13+
* **aggregations,relations,core:** Add relation aggregation to core ([a489588](https://github.com/doug-martin/nestjs-query/commit/a4895881a1e9ff76811b264cc58eeea116b3edfd))
14+
15+
16+
17+
18+
619
## [0.16.2](https://github.com/doug-martin/nestjs-query/compare/v0.16.1...v0.16.2) (2020-07-09)
720

821
**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.16.2",
3+
"version": "0.17.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: 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.17.0](https://github.com/doug-martin/nestjs-query/compare/v0.16.2...v0.17.0) (2020-07-16)
7+
8+
9+
### Features
10+
11+
* **aggregations:** Add aggregations to graphql ([af075d2](https://github.com/doug-martin/nestjs-query/commit/af075d2e93b6abbbfbe32afcc917350f803fadaa))
12+
* **aggregations,relations:** Add relation aggregation graphql enpoints ([56bb7e0](https://github.com/doug-martin/nestjs-query/commit/56bb7e0be3298ebe76159327ce54229818a6067b))
13+
14+
15+
16+
17+
618
## [0.16.2](https://github.com/doug-martin/nestjs-query/compare/v0.16.1...v0.16.2) (2020-07-09)
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.16.2",
3+
"version": "0.17.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.16.2",
41+
"@nestjs-query/core": "0.17.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: 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.17.0](https://github.com/doug-martin/nestjs-query/compare/v0.16.2...v0.17.0) (2020-07-16)
7+
8+
9+
### Features
10+
11+
* **aggregations:** Add aggregation support to sequelize ([c37b7ae](https://github.com/doug-martin/nestjs-query/commit/c37b7aeb00fc60e7dc55893fe712dcad454edddb))
12+
* **aggregations:** Add aggregations to graphql ([af075d2](https://github.com/doug-martin/nestjs-query/commit/af075d2e93b6abbbfbe32afcc917350f803fadaa))
13+
* **aggregations,sequelize:** Add relation aggregation to sequelize ([93e7c1b](https://github.com/doug-martin/nestjs-query/commit/93e7c1ba3d03b222b08f39bbbfaf4365ce50204e))
14+
* **aggregations,sequelize:** Fix aggregation on many-to-many relations ([db6ecb2](https://github.com/doug-martin/nestjs-query/commit/db6ecb2527a96ba232c8af911e4eb2f6ab9f8a65))
15+
16+
17+
18+
19+
620
## [0.16.2](https://github.com/doug-martin/nestjs-query/compare/v0.16.1...v0.16.2) (2020-07-09)
721

822

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.16.2",
3+
"version": "0.17.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.16.2",
21+
"@nestjs-query/core": "0.17.0",
2222
"lodash.pick": "4.4.0"
2323
},
2424
"peerDependencies": {

packages/query-typeorm/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.17.0](https://github.com/doug-martin/nestjs-query/compare/v0.16.2...v0.17.0) (2020-07-16)
7+
8+
9+
### Features
10+
11+
* **aggregations:** Add aggregations to graphql ([af075d2](https://github.com/doug-martin/nestjs-query/commit/af075d2e93b6abbbfbe32afcc917350f803fadaa))
12+
* **aggregations,typeorm:** Add relation aggregation to typeorm ([2bf35a9](https://github.com/doug-martin/nestjs-query/commit/2bf35a92ce80b1f3026fd87cb62cad17eb6eff03))
13+
* **aggretations:** Add aggregations support to typeorm ([7233c23](https://github.com/doug-martin/nestjs-query/commit/7233c2397d0ac332e5209ab87ae62f5f555609d6))
14+
15+
16+
17+
18+
619
## [0.16.2](https://github.com/doug-martin/nestjs-query/compare/v0.16.1...v0.16.2) (2020-07-09)
720

821
**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.16.2",
3+
"version": "0.17.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.16.2"
21+
"@nestjs-query/core": "0.17.0"
2222
},
2323
"peerDependencies": {
2424
"@nestjs/common": "^7.0.0",

0 commit comments

Comments
 (0)