Skip to content

Commit

Permalink
chore(release): publish v0.20.2
Browse files Browse the repository at this point in the history
  • Loading branch information
doug-martin committed Oct 1, 2020
1 parent b339a2a commit cf20c5b
Show file tree
Hide file tree
Showing 12 changed files with 83 additions and 13 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,25 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.20.2](https://github.com/doug-martin/nestjs-query/compare/v0.20.1...v0.20.2) (2020-10-01)


### Bug Fixes

* **deps:** update dependency graphql-tools to v6.2.4 ([d363cbc](https://github.com/doug-martin/nestjs-query/commit/d363cbc49944fa89d3dc13ab784c7f7be41edc05))
* **filters:** Fix bug with incorect parameters in filter ([6ada4f4](https://github.com/doug-martin/nestjs-query/commit/6ada4f4a12633d41c60de9540dfc28ed0985ca62))
* **filters:** Fix bug with incorect parameters in filters ([9f4e93b](https://github.com/doug-martin/nestjs-query/commit/9f4e93b7726d85cb4febe86d2caf941dc957463a))
* **typeorm:** fix unit tests after fix filters bug ([5f50419](https://github.com/doug-martin/nestjs-query/commit/5f5041906694ae7c4aa799f52049d0981b97ccfc))


### Features

* **core:** parallelize queries within relation query service ([b339a2a](https://github.com/doug-martin/nestjs-query/commit/b339a2a9a3d1ad315d92eec67ab31af18617f6ca))





## [0.20.1](https://github.com/doug-martin/nestjs-query/compare/v0.20.0...v0.20.1) (2020-09-28)


Expand Down
11 changes: 11 additions & 0 deletions examples/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.20.2](https://github.com/doug-martin/nestjs-query/compare/v0.20.1...v0.20.2) (2020-10-01)


### Bug Fixes

* **deps:** update dependency graphql-tools to v6.2.4 ([d363cbc](https://github.com/doug-martin/nestjs-query/commit/d363cbc49944fa89d3dc13ab784c7f7be41edc05))





## [0.20.1](https://github.com/doug-martin/nestjs-query/compare/v0.20.0...v0.20.1) (2020-09-28)


Expand Down
10 changes: 5 additions & 5 deletions examples/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nestjs-query-examples",
"version": "0.20.1",
"version": "0.20.2",
"description": "",
"author": "",
"private": true,
Expand All @@ -12,10 +12,10 @@
"start": "nest start --watch"
},
"dependencies": {
"@nestjs-query/core": "0.20.1",
"@nestjs-query/query-graphql": "0.20.1",
"@nestjs-query/query-sequelize": "0.20.1",
"@nestjs-query/query-typeorm": "0.20.1",
"@nestjs-query/core": "0.20.2",
"@nestjs-query/query-graphql": "0.20.2",
"@nestjs-query/query-sequelize": "0.20.2",
"@nestjs-query/query-typeorm": "0.20.2",
"@nestjs/common": "7.4.4",
"@nestjs/core": "7.4.4",
"@nestjs/graphql": "7.7.0",
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@
"hoist": true
}
},
"version": "0.20.1"
"version": "0.20.2"
}
11 changes: 11 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.20.2](https://github.com/doug-martin/nestjs-query/compare/v0.20.1...v0.20.2) (2020-10-01)


### Features

* **core:** parallelize queries within relation query service ([b339a2a](https://github.com/doug-martin/nestjs-query/commit/b339a2a9a3d1ad315d92eec67ab31af18617f6ca))





## [0.20.1](https://github.com/doug-martin/nestjs-query/compare/v0.20.0...v0.20.1) (2020-09-28)

**Note:** Version bump only for package @nestjs-query/core
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nestjs-query/core",
"version": "0.20.1",
"version": "0.20.2",
"description": "Base query package",
"author": "doug-martin <[email protected]>",
"homepage": "https://github.com/doug-martin/nestjs-query#readme",
Expand Down
8 changes: 8 additions & 0 deletions packages/query-graphql/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.20.2](https://github.com/doug-martin/nestjs-query/compare/v0.20.1...v0.20.2) (2020-10-01)

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





## [0.20.1](https://github.com/doug-martin/nestjs-query/compare/v0.20.0...v0.20.1) (2020-09-28)


Expand Down
4 changes: 2 additions & 2 deletions packages/query-graphql/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nestjs-query/query-graphql",
"version": "0.20.1",
"version": "0.20.2",
"description": "Nestjs graphql query adapter",
"author": "doug-martin <[email protected]>",
"homepage": "https://github.com/doug-martin/nestjs-query#readme",
Expand Down Expand Up @@ -38,7 +38,7 @@
"url": "https://github.com/doug-martin/nestjs-query/issues"
},
"dependencies": {
"@nestjs-query/core": "0.20.1",
"@nestjs-query/core": "0.20.2",
"graphql-fields": "^2.0.3",
"lodash.omit": "^4.5.0",
"lower-case-first": "^2.0.1",
Expand Down
8 changes: 8 additions & 0 deletions packages/query-sequelize/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.20.2](https://github.com/doug-martin/nestjs-query/compare/v0.20.1...v0.20.2) (2020-10-01)

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





## [0.20.1](https://github.com/doug-martin/nestjs-query/compare/v0.20.0...v0.20.1) (2020-09-28)

**Note:** Version bump only for package @nestjs-query/query-sequelize
Expand Down
4 changes: 2 additions & 2 deletions packages/query-sequelize/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nestjs-query/query-sequelize",
"version": "0.20.1",
"version": "0.20.2",
"description": "Sequelize adapter for @nestjs-query/core",
"author": "doug-martin <[email protected]>",
"homepage": "https://github.com/doug-martin/nestjs-query#readme",
Expand All @@ -18,7 +18,7 @@
"access": "public"
},
"dependencies": {
"@nestjs-query/core": "0.20.1",
"@nestjs-query/core": "0.20.2",
"lodash.pick": "4.4.0"
},
"peerDependencies": {
Expand Down
13 changes: 13 additions & 0 deletions packages/query-typeorm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,19 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.20.2](https://github.com/doug-martin/nestjs-query/compare/v0.20.1...v0.20.2) (2020-10-01)


### Bug Fixes

* **filters:** Fix bug with incorect parameters in filter ([6ada4f4](https://github.com/doug-martin/nestjs-query/commit/6ada4f4a12633d41c60de9540dfc28ed0985ca62))
* **filters:** Fix bug with incorect parameters in filters ([9f4e93b](https://github.com/doug-martin/nestjs-query/commit/9f4e93b7726d85cb4febe86d2caf941dc957463a))
* **typeorm:** fix unit tests after fix filters bug ([5f50419](https://github.com/doug-martin/nestjs-query/commit/5f5041906694ae7c4aa799f52049d0981b97ccfc))





## [0.20.1](https://github.com/doug-martin/nestjs-query/compare/v0.20.0...v0.20.1) (2020-09-28)

**Note:** Version bump only for package @nestjs-query/query-typeorm
Expand Down
4 changes: 2 additions & 2 deletions packages/query-typeorm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nestjs-query/query-typeorm",
"version": "0.20.1",
"version": "0.20.2",
"description": "Typeorm adapter for @nestjs-query/core",
"author": "doug-martin <[email protected]>",
"homepage": "https://github.com/doug-martin/nestjs-query#readme",
Expand All @@ -18,7 +18,7 @@
"access": "public"
},
"dependencies": {
"@nestjs-query/core": "0.20.1",
"@nestjs-query/core": "0.20.2",
"lodash.filter": "^4.6.0",
"lodash.omit": "^4.5.0",
"uuid": "8.3.0"
Expand Down

0 comments on commit cf20c5b

Please sign in to comment.