From 55e3893fd9ee45bad2ebcfee5d0792dc6ac069c6 Mon Sep 17 00:00:00 2001 From: doug-martin Date: Sat, 25 Apr 2020 22:28:51 -0500 Subject: [PATCH] chore(release): publish v0.9.0 --- CHANGELOG.md | 16 ++++++++++++++++ examples/federation/graphql-gateway/CHANGELOG.md | 8 ++++++++ examples/federation/graphql-gateway/package.json | 2 +- .../federation/sub-task-graphql/CHANGELOG.md | 8 ++++++++ .../federation/sub-task-graphql/package.json | 8 ++++---- examples/federation/tag-graphql/CHANGELOG.md | 8 ++++++++ examples/federation/tag-graphql/package.json | 8 ++++---- .../federation/todo-item-graphql/CHANGELOG.md | 8 ++++++++ .../federation/todo-item-graphql/package.json | 8 ++++---- .../nest-graphql-typeorm-multidb/CHANGELOG.md | 8 ++++++++ .../nest-graphql-typeorm-multidb/package.json | 8 ++++---- .../CHANGELOG.md | 8 ++++++++ .../package.json | 8 ++++---- examples/nest-graphql-typeorm/CHANGELOG.md | 8 ++++++++ examples/nest-graphql-typeorm/package.json | 8 ++++---- lerna.json | 2 +- packages/core/CHANGELOG.md | 8 ++++++++ packages/core/package.json | 2 +- packages/query-graphql/CHANGELOG.md | 8 ++++++++ packages/query-graphql/package.json | 4 ++-- packages/query-typeorm/CHANGELOG.md | 11 +++++++++++ packages/query-typeorm/package.json | 4 ++-- 22 files changed, 130 insertions(+), 31 deletions(-) create mode 100644 examples/nest-graphql-typeorm-soft-delete/CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 6dd211a89..1974b75ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.9.0](https://github.com/doug-martin/nestjs-query/compare/v0.8.9...v0.9.0) (2020-04-26) + + +### Bug Fixes + +* **docs:** remove unused imports in example page ([a67ac24](https://github.com/doug-martin/nestjs-query/commit/a67ac24a141953dda0eac4912485e6f79022078a)) + + +### Features + +* **typeorm:** Add support for soft deletes ([2ab42fa](https://github.com/doug-martin/nestjs-query/commit/2ab42faee2802abae4d8496e2529b8eb23860ed4)) + + + + + ## [0.8.9](https://github.com/doug-martin/nestjs-query/compare/v0.8.8...v0.8.9) (2020-04-24) **Note:** Version bump only for package nestjs-query diff --git a/examples/federation/graphql-gateway/CHANGELOG.md b/examples/federation/graphql-gateway/CHANGELOG.md index 031fb7d3c..451a4c810 100644 --- a/examples/federation/graphql-gateway/CHANGELOG.md +++ b/examples/federation/graphql-gateway/CHANGELOG.md @@ -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.9.0](https://github.com/doug-martin/nestjs-query/compare/v0.8.9...v0.9.0) (2020-04-26) + +**Note:** Version bump only for package nest-graphql-gateway + + + + + ## [0.8.9](https://github.com/doug-martin/nestjs-query/compare/v0.8.8...v0.8.9) (2020-04-24) **Note:** Version bump only for package nest-graphql-gateway diff --git a/examples/federation/graphql-gateway/package.json b/examples/federation/graphql-gateway/package.json index c19eae5e5..b5b3eb818 100644 --- a/examples/federation/graphql-gateway/package.json +++ b/examples/federation/graphql-gateway/package.json @@ -1,6 +1,6 @@ { "name": "nest-graphql-gateway", - "version": "0.8.9", + "version": "0.9.0", "description": "", "author": "", "private": true, diff --git a/examples/federation/sub-task-graphql/CHANGELOG.md b/examples/federation/sub-task-graphql/CHANGELOG.md index 4b74b01ad..ea1463dae 100644 --- a/examples/federation/sub-task-graphql/CHANGELOG.md +++ b/examples/federation/sub-task-graphql/CHANGELOG.md @@ -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.9.0](https://github.com/doug-martin/nestjs-query/compare/v0.8.9...v0.9.0) (2020-04-26) + +**Note:** Version bump only for package sub-task-graphql + + + + + ## [0.8.9](https://github.com/doug-martin/nestjs-query/compare/v0.8.8...v0.8.9) (2020-04-24) **Note:** Version bump only for package sub-task-graphql diff --git a/examples/federation/sub-task-graphql/package.json b/examples/federation/sub-task-graphql/package.json index 998d29f96..bd5e6c77a 100644 --- a/examples/federation/sub-task-graphql/package.json +++ b/examples/federation/sub-task-graphql/package.json @@ -1,6 +1,6 @@ { "name": "sub-task-graphql", - "version": "0.8.9", + "version": "0.9.0", "description": "", "author": "", "private": true, @@ -18,9 +18,9 @@ }, "dependencies": { "@apollo/federation": "0.14.1", - "@nestjs-query/core": "0.8.9", - "@nestjs-query/query-graphql": "0.8.9", - "@nestjs-query/query-typeorm": "0.8.9", + "@nestjs-query/core": "0.9.0", + "@nestjs-query/query-graphql": "0.9.0", + "@nestjs-query/query-typeorm": "0.9.0", "@nestjs/common": "7.0.9", "@nestjs/core": "7.0.9", "@nestjs/graphql": "7.3.4", diff --git a/examples/federation/tag-graphql/CHANGELOG.md b/examples/federation/tag-graphql/CHANGELOG.md index 68be4fe5e..7b9c3589d 100644 --- a/examples/federation/tag-graphql/CHANGELOG.md +++ b/examples/federation/tag-graphql/CHANGELOG.md @@ -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.9.0](https://github.com/doug-martin/nestjs-query/compare/v0.8.9...v0.9.0) (2020-04-26) + +**Note:** Version bump only for package tag-graphql + + + + + ## [0.8.9](https://github.com/doug-martin/nestjs-query/compare/v0.8.8...v0.8.9) (2020-04-24) **Note:** Version bump only for package tag-graphql diff --git a/examples/federation/tag-graphql/package.json b/examples/federation/tag-graphql/package.json index dea28e88d..9e693d04f 100644 --- a/examples/federation/tag-graphql/package.json +++ b/examples/federation/tag-graphql/package.json @@ -1,6 +1,6 @@ { "name": "tag-graphql", - "version": "0.8.9", + "version": "0.9.0", "description": "", "author": "", "private": true, @@ -18,9 +18,9 @@ }, "dependencies": { "@apollo/federation": "0.14.1", - "@nestjs-query/core": "0.8.9", - "@nestjs-query/query-graphql": "0.8.9", - "@nestjs-query/query-typeorm": "0.8.9", + "@nestjs-query/core": "0.9.0", + "@nestjs-query/query-graphql": "0.9.0", + "@nestjs-query/query-typeorm": "0.9.0", "@nestjs/common": "7.0.9", "@nestjs/core": "7.0.9", "@nestjs/graphql": "7.3.4", diff --git a/examples/federation/todo-item-graphql/CHANGELOG.md b/examples/federation/todo-item-graphql/CHANGELOG.md index 42e1f4fc3..dd5bb3ca4 100644 --- a/examples/federation/todo-item-graphql/CHANGELOG.md +++ b/examples/federation/todo-item-graphql/CHANGELOG.md @@ -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.9.0](https://github.com/doug-martin/nestjs-query/compare/v0.8.9...v0.9.0) (2020-04-26) + +**Note:** Version bump only for package todo-item-graphql + + + + + ## [0.8.9](https://github.com/doug-martin/nestjs-query/compare/v0.8.8...v0.8.9) (2020-04-24) **Note:** Version bump only for package todo-item-graphql diff --git a/examples/federation/todo-item-graphql/package.json b/examples/federation/todo-item-graphql/package.json index c3b548a90..8e044f2d1 100644 --- a/examples/federation/todo-item-graphql/package.json +++ b/examples/federation/todo-item-graphql/package.json @@ -1,6 +1,6 @@ { "name": "todo-item-graphql", - "version": "0.8.9", + "version": "0.9.0", "description": "", "author": "", "private": true, @@ -18,9 +18,9 @@ }, "dependencies": { "@apollo/federation": "0.14.1", - "@nestjs-query/core": "0.8.9", - "@nestjs-query/query-graphql": "0.8.9", - "@nestjs-query/query-typeorm": "0.8.9", + "@nestjs-query/core": "0.9.0", + "@nestjs-query/query-graphql": "0.9.0", + "@nestjs-query/query-typeorm": "0.9.0", "@nestjs/common": "7.0.9", "@nestjs/core": "7.0.9", "@nestjs/graphql": "7.3.4", diff --git a/examples/nest-graphql-typeorm-multidb/CHANGELOG.md b/examples/nest-graphql-typeorm-multidb/CHANGELOG.md index 61111b917..51c3d0a3d 100644 --- a/examples/nest-graphql-typeorm-multidb/CHANGELOG.md +++ b/examples/nest-graphql-typeorm-multidb/CHANGELOG.md @@ -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.9.0](https://github.com/doug-martin/nestjs-query/compare/v0.8.9...v0.9.0) (2020-04-26) + +**Note:** Version bump only for package nest-graphql-typeorm-multidb + + + + + ## [0.8.9](https://github.com/doug-martin/nestjs-query/compare/v0.8.8...v0.8.9) (2020-04-24) **Note:** Version bump only for package nest-graphql-typeorm-multidb diff --git a/examples/nest-graphql-typeorm-multidb/package.json b/examples/nest-graphql-typeorm-multidb/package.json index 499cde248..ba10067f7 100644 --- a/examples/nest-graphql-typeorm-multidb/package.json +++ b/examples/nest-graphql-typeorm-multidb/package.json @@ -1,6 +1,6 @@ { "name": "nest-graphql-typeorm-multidb", - "version": "0.8.9", + "version": "0.9.0", "description": "", "author": "", "private": true, @@ -16,9 +16,9 @@ "schema:sync": "typeorm schema:sync" }, "dependencies": { - "@nestjs-query/core": "0.8.9", - "@nestjs-query/query-graphql": "0.8.9", - "@nestjs-query/query-typeorm": "0.8.9", + "@nestjs-query/core": "0.9.0", + "@nestjs-query/query-graphql": "0.9.0", + "@nestjs-query/query-typeorm": "0.9.0", "@nestjs/common": "7.0.9", "@nestjs/core": "7.0.9", "@nestjs/graphql": "7.3.4", diff --git a/examples/nest-graphql-typeorm-soft-delete/CHANGELOG.md b/examples/nest-graphql-typeorm-soft-delete/CHANGELOG.md new file mode 100644 index 000000000..fec477140 --- /dev/null +++ b/examples/nest-graphql-typeorm-soft-delete/CHANGELOG.md @@ -0,0 +1,8 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.9.0](https://github.com/doug-martin/nestjs-query/compare/v0.8.9...v0.9.0) (2020-04-26) + +**Note:** Version bump only for package nest-graphql-typeorm-soft-delete diff --git a/examples/nest-graphql-typeorm-soft-delete/package.json b/examples/nest-graphql-typeorm-soft-delete/package.json index c6e34efc3..b284bf648 100644 --- a/examples/nest-graphql-typeorm-soft-delete/package.json +++ b/examples/nest-graphql-typeorm-soft-delete/package.json @@ -1,6 +1,6 @@ { "name": "nest-graphql-typeorm-soft-delete", - "version": "0.8.9", + "version": "0.9.0", "description": "", "author": "", "private": true, @@ -17,9 +17,9 @@ "seed": "ts-node ../../node_modules/typeorm-seeding/dist/cli.js -n /ormconfig.json seed" }, "dependencies": { - "@nestjs-query/core": "0.8.9", - "@nestjs-query/query-graphql": "0.8.9", - "@nestjs-query/query-typeorm": "0.8.9", + "@nestjs-query/core": "0.9.0", + "@nestjs-query/query-graphql": "0.9.0", + "@nestjs-query/query-typeorm": "0.9.0", "@nestjs/common": "7.0.9", "@nestjs/core": "7.0.9", "@nestjs/graphql": "7.3.4", diff --git a/examples/nest-graphql-typeorm/CHANGELOG.md b/examples/nest-graphql-typeorm/CHANGELOG.md index d473d50a2..fa236c5b4 100644 --- a/examples/nest-graphql-typeorm/CHANGELOG.md +++ b/examples/nest-graphql-typeorm/CHANGELOG.md @@ -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.9.0](https://github.com/doug-martin/nestjs-query/compare/v0.8.9...v0.9.0) (2020-04-26) + +**Note:** Version bump only for package nest-graphql-typeorm + + + + + ## [0.8.9](https://github.com/doug-martin/nestjs-query/compare/v0.8.8...v0.8.9) (2020-04-24) **Note:** Version bump only for package nest-graphql-typeorm diff --git a/examples/nest-graphql-typeorm/package.json b/examples/nest-graphql-typeorm/package.json index ba6447b26..7fb296fd3 100644 --- a/examples/nest-graphql-typeorm/package.json +++ b/examples/nest-graphql-typeorm/package.json @@ -1,6 +1,6 @@ { "name": "nest-graphql-typeorm", - "version": "0.8.9", + "version": "0.9.0", "description": "", "author": "", "private": true, @@ -17,9 +17,9 @@ "seed": "ts-node ../../node_modules/typeorm-seeding/dist/cli.js -n /ormconfig.json seed" }, "dependencies": { - "@nestjs-query/core": "0.8.9", - "@nestjs-query/query-graphql": "0.8.9", - "@nestjs-query/query-typeorm": "0.8.9", + "@nestjs-query/core": "0.9.0", + "@nestjs-query/query-graphql": "0.9.0", + "@nestjs-query/query-typeorm": "0.9.0", "@nestjs/common": "7.0.9", "@nestjs/core": "7.0.9", "@nestjs/graphql": "7.3.4", diff --git a/lerna.json b/lerna.json index c3211669f..dba6d15b7 100644 --- a/lerna.json +++ b/lerna.json @@ -17,5 +17,5 @@ "hoist": true } }, - "version": "0.8.9" + "version": "0.9.0" } diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 72a397237..1021dc52a 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -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.9.0](https://github.com/doug-martin/nestjs-query/compare/v0.8.9...v0.9.0) (2020-04-26) + +**Note:** Version bump only for package @nestjs-query/core + + + + + ## [0.8.9](https://github.com/doug-martin/nestjs-query/compare/v0.8.8...v0.8.9) (2020-04-24) **Note:** Version bump only for package @nestjs-query/core diff --git a/packages/core/package.json b/packages/core/package.json index 7f6645e5a..06c429360 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@nestjs-query/core", - "version": "0.8.9", + "version": "0.9.0", "description": "Base query package", "author": "doug-martin ", "homepage": "https://github.com/doug-martin/nestjs-query#readme", diff --git a/packages/query-graphql/CHANGELOG.md b/packages/query-graphql/CHANGELOG.md index d0dbce57b..b92924c4d 100644 --- a/packages/query-graphql/CHANGELOG.md +++ b/packages/query-graphql/CHANGELOG.md @@ -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.9.0](https://github.com/doug-martin/nestjs-query/compare/v0.8.9...v0.9.0) (2020-04-26) + +**Note:** Version bump only for package @nestjs-query/query-graphql + + + + + ## [0.8.9](https://github.com/doug-martin/nestjs-query/compare/v0.8.8...v0.8.9) (2020-04-24) **Note:** Version bump only for package @nestjs-query/query-graphql diff --git a/packages/query-graphql/package.json b/packages/query-graphql/package.json index 8e88910e7..c9afa645b 100644 --- a/packages/query-graphql/package.json +++ b/packages/query-graphql/package.json @@ -1,6 +1,6 @@ { "name": "@nestjs-query/query-graphql", - "version": "0.8.9", + "version": "0.9.0", "description": "Nestjs graphql query adapter", "author": "doug-martin ", "homepage": "https://github.com/doug-martin/nestjs-query#readme", @@ -38,7 +38,7 @@ "url": "https://github.com/doug-martin/nestjs-query/issues" }, "dependencies": { - "@nestjs-query/core": "0.8.9", + "@nestjs-query/core": "0.9.0", "lodash.omit": "4.5.0", "lower-case-first": "2.0.1", "pluralize": "8.0.0", diff --git a/packages/query-typeorm/CHANGELOG.md b/packages/query-typeorm/CHANGELOG.md index 430ecb829..3f255c750 100644 --- a/packages/query-typeorm/CHANGELOG.md +++ b/packages/query-typeorm/CHANGELOG.md @@ -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.9.0](https://github.com/doug-martin/nestjs-query/compare/v0.8.9...v0.9.0) (2020-04-26) + + +### Features + +* **typeorm:** Add support for soft deletes ([2ab42fa](https://github.com/doug-martin/nestjs-query/commit/2ab42faee2802abae4d8496e2529b8eb23860ed4)) + + + + + ## [0.8.9](https://github.com/doug-martin/nestjs-query/compare/v0.8.8...v0.8.9) (2020-04-24) **Note:** Version bump only for package @nestjs-query/query-typeorm diff --git a/packages/query-typeorm/package.json b/packages/query-typeorm/package.json index facdbe372..4a596468a 100644 --- a/packages/query-typeorm/package.json +++ b/packages/query-typeorm/package.json @@ -1,6 +1,6 @@ { "name": "@nestjs-query/query-typeorm", - "version": "0.8.9", + "version": "0.9.0", "description": "Typeorm adapter for @nestjs-query/core", "author": "doug-martin ", "homepage": "https://github.com/doug-martin/nestjs-query#readme", @@ -18,7 +18,7 @@ "access": "public" }, "dependencies": { - "@nestjs-query/core": "0.8.9" + "@nestjs-query/core": "0.9.0" }, "peerDependencies": { "@nestjs/common": "7.0.9",