Skip to content

Commit

Permalink
v9.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilmysliwiec committed Jan 24, 2022
1 parent 61a941d commit 069f362
Show file tree
Hide file tree
Showing 8 changed files with 418 additions and 5 deletions.
345 changes: 345 additions & 0 deletions CHANGELOG.md

Large diffs are not rendered by default.

6 changes: 4 additions & 2 deletions lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"packages": [
"packages/*"
],
"version": "0.0.0",
"version": "9.2.0",
"npmClient": "yarn",
"useWorkspaces": true,
"command": {
Expand All @@ -11,7 +11,9 @@
}
},
"changelog": {
"ignoreCommitters": ["allcontributors"],
"ignoreCommitters": [
"allcontributors"
],
"labels": {
"enhancement": ":rocket: New Feature",
"core": ":earth_asia: Core",
Expand Down
22 changes: 22 additions & 0 deletions packages/apollo/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 9.2.0 (2022-01-24)


### Bug Fixes

* apollo graphql base adapter is now abstract ([9eab0e9](https://github.com/nestjs/graphql/commit/9eab0e920f16bfca920193c436f1458516869478))
* fix context auto-wrapping ([66ede7a](https://github.com/nestjs/graphql/commit/66ede7a4c9c97290bd9ad600064c0fd5abceb2ff))
* **mercurius:** fix subscriptions ([a075ad5](https://github.com/nestjs/graphql/commit/a075ad51907f99d45862b08ec7503380ca2c4379))


### Features

* adapters to drivers ([2012ade](https://github.com/nestjs/graphql/commit/2012adec272f463082c60f7c588e49a63bc3f259))
* add dedicated gateway and federation adapters ([bdc5818](https://github.com/nestjs/graphql/commit/bdc5818cbed303523701e9ba2f1e26442c3ca428))
* extract configurations ([7e53ce2](https://github.com/nestjs/graphql/commit/7e53ce25929a07a0cc809aa78490d882cd1accdd))
* minor tweaks, normalize path by default ([033ea87](https://github.com/nestjs/graphql/commit/033ea873c5ab0e7bd3c447da82c720500b6cab3e))
* remove directives, update graphql tools monorepo ([6ec229e](https://github.com/nestjs/graphql/commit/6ec229e5c46d7100cc04bbd536906116c299770a))
2 changes: 1 addition & 1 deletion packages/apollo/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nestjs/apollo",
"version": "9.1.1",
"version": "9.2.0",
"description": "Nest - modern, fast, powerful node.js web framework (@apollo)",
"author": "Kamil Mysliwiec",
"license": "MIT",
Expand Down
26 changes: 26 additions & 0 deletions packages/graphql/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 9.2.0 (2022-01-24)


### Bug Fixes

* **deps:** update dependency fast-glob to v3.2.11 ([849aa87](https://github.com/nestjs/graphql/commit/849aa87dd6a602b8fd17cf949a709a2cbaf643f6))
* **deps:** update dependency ws to v8.4.2 ([b74e879](https://github.com/nestjs/graphql/commit/b74e879baf366b2f197764a49071de020e641d9e))
* fix build issues, update imports ([cf23319](https://github.com/nestjs/graphql/commit/cf2331947370934617a6553e90200114d1406d55))
* fix context auto-wrapping ([66ede7a](https://github.com/nestjs/graphql/commit/66ede7a4c9c97290bd9ad600064c0fd5abceb2ff))
* **graphql:** remove abstract instance getter from base driver ([151b41f](https://github.com/nestjs/graphql/commit/151b41f8efa893040cf9aa341e7007de3ba90eb2))


### Features

* adapters to drivers ([2012ade](https://github.com/nestjs/graphql/commit/2012adec272f463082c60f7c588e49a63bc3f259))
* add dedicated gateway and federation adapters ([bdc5818](https://github.com/nestjs/graphql/commit/bdc5818cbed303523701e9ba2f1e26442c3ca428))
* extract configurations part 2 ([abbcac7](https://github.com/nestjs/graphql/commit/abbcac76592651931e45f87b92d75a1dc4aef39b))
* migrate to lerna ([4f1dd75](https://github.com/nestjs/graphql/commit/4f1dd75b304163ea63b1144e3355ea6d8310c6f1))
* minor tweaks, normalize path by default ([033ea87](https://github.com/nestjs/graphql/commit/033ea873c5ab0e7bd3c447da82c720500b6cab3e))
* **module:** Recursive inclusion of modules ([4abf52f](https://github.com/nestjs/graphql/commit/4abf52f499dd10be1c8dcb7c8acbf4adfb527a51))
* remove directives, update graphql tools monorepo ([6ec229e](https://github.com/nestjs/graphql/commit/6ec229e5c46d7100cc04bbd536906116c299770a))
2 changes: 1 addition & 1 deletion packages/graphql/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nestjs/graphql",
"version": "9.1.1",
"version": "9.2.0",
"description": "Nest - modern, fast, powerful node.js web framework (@graphql)",
"author": "Kamil Mysliwiec",
"license": "MIT",
Expand Down
18 changes: 18 additions & 0 deletions packages/mercurius/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 9.2.0 (2022-01-24)


### Bug Fixes

* fix context auto-wrapping ([66ede7a](https://github.com/nestjs/graphql/commit/66ede7a4c9c97290bd9ad600064c0fd5abceb2ff))
* **mercurius:** fix subscriptions ([a075ad5](https://github.com/nestjs/graphql/commit/a075ad51907f99d45862b08ec7503380ca2c4379))


### Features

* minor tweaks, normalize path by default ([033ea87](https://github.com/nestjs/graphql/commit/033ea873c5ab0e7bd3c447da82c720500b6cab3e))
* remove directives, update graphql tools monorepo ([6ec229e](https://github.com/nestjs/graphql/commit/6ec229e5c46d7100cc04bbd536906116c299770a))
2 changes: 1 addition & 1 deletion packages/mercurius/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nestjs/mercurius",
"version": "9.1.1",
"version": "9.2.0",
"description": "Nest - modern, fast, powerful node.js web framework (@graphql)",
"author": "Kamil Mysliwiec",
"license": "MIT",
Expand Down

0 comments on commit 069f362

Please sign in to comment.