Skip to content

Commit 876ea0c

Browse files
chore(release): update monorepo packages versions (#10165)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent effd875 commit 876ea0c

File tree

28 files changed

+197
-112
lines changed

28 files changed

+197
-112
lines changed

.changeset/fifty-dodos-marry.md

Lines changed: 0 additions & 11 deletions
This file was deleted.

.changeset/grumpy-moose-bake.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

.changeset/shy-berries-shop.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/slimy-years-behave.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/twenty-spiders-sell.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

examples/programmatic-typescript/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
},
1212
"dependencies": {
1313
"@graphql-codegen/core": "4.0.2",
14-
"@graphql-codegen/plugin-helpers": "5.0.4",
15-
"@graphql-codegen/typed-document-node": "5.0.10",
16-
"@graphql-codegen/typescript": "4.1.0",
17-
"@graphql-codegen/typescript-operations": "4.3.0",
18-
"@graphql-codegen/typescript-resolvers": "4.3.0",
14+
"@graphql-codegen/plugin-helpers": "5.1.0",
15+
"@graphql-codegen/typed-document-node": "5.0.11",
16+
"@graphql-codegen/typescript": "4.1.1",
17+
"@graphql-codegen/typescript-operations": "4.3.1",
18+
"@graphql-codegen/typescript-resolvers": "4.4.0",
1919
"@graphql-tools/graphql-file-loader": "8.0.1",
2020
"@graphql-tools/load": "8.0.2",
2121
"@graphql-tools/schema": "10.0.6",

examples/typescript-resolvers/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
"private": true,
55
"devDependencies": {
66
"@graphql-codegen/cli": "5.0.3",
7-
"@graphql-codegen/typescript": "4.1.0",
8-
"@graphql-codegen/typescript-resolvers": "4.3.0"
7+
"@graphql-codegen/typescript": "4.1.1",
8+
"@graphql-codegen/typescript-resolvers": "4.4.0"
99
},
1010
"dependencies": {
1111
"graphql": "16.9.0",

packages/plugins/other/visitor-plugin-common/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# @graphql-codegen/visitor-plugin-common
22

3+
## 5.5.0
4+
5+
### Minor Changes
6+
7+
- [#9989](https://github.com/dotansimha/graphql-code-generator/pull/9989) [`55a1e9e`](https://github.com/dotansimha/graphql-code-generator/commit/55a1e9e63830df17ed40602ea7e322bbf48b17bc) Thanks [@eddeee888](https://github.com/eddeee888)! - Add `generateInternalResolversIfNeeded` option
8+
9+
This option can be used to generate more correct types for internal resolvers. For example, only generate `__resolveReference` if the federation object has a resolvable `@key`.
10+
11+
In the future, this option can be extended to support other internal resolvers e.g. `__isTypeOf` is only generated for implementing types and union members.
12+
13+
- [#10141](https://github.com/dotansimha/graphql-code-generator/pull/10141) [`a235051`](https://github.com/dotansimha/graphql-code-generator/commit/a23505180ac2f275a55ece27162ec9bfcdc52e03) Thanks [@eddeee888](https://github.com/eddeee888)! - Add avoidCheckingAbstractTypesRecursively to avoid checking and generating abstract types recursively
14+
15+
For users that already sets recursive default mappers e.g. `Partial<{T}>` or `DeepPartial<{T}>`, having both options on will cause a nested loop which eventually crashes Codegen. In such case, setting `avoidCheckingAbstractTypesRecursively: true` allows users to continue to use recursive default mappers as before.
16+
17+
### Patch Changes
18+
19+
- Updated dependencies [[`55a1e9e`](https://github.com/dotansimha/graphql-code-generator/commit/55a1e9e63830df17ed40602ea7e322bbf48b17bc)]:
20+
- @graphql-codegen/plugin-helpers@5.1.0
21+
322
## 5.4.0
423

524
### Minor Changes

packages/plugins/other/visitor-plugin-common/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphql-codegen/visitor-plugin-common",
3-
"version": "5.4.0",
3+
"version": "5.5.0",
44
"license": "MIT",
55
"repository": {
66
"type": "git",
@@ -13,7 +13,7 @@
1313
},
1414
"dependencies": {
1515
"@graphql-tools/optimize": "^2.0.0",
16-
"@graphql-codegen/plugin-helpers": "^5.0.4",
16+
"@graphql-codegen/plugin-helpers": "^5.1.0",
1717
"@graphql-tools/relay-operation-optimizer": "^7.0.0",
1818
"@graphql-tools/utils": "^10.0.0",
1919
"auto-bind": "~4.0.0",

packages/plugins/typescript/document-nodes/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @graphql-codegen/typescript-document-nodes
22

3+
## 4.0.11
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`55a1e9e`](https://github.com/dotansimha/graphql-code-generator/commit/55a1e9e63830df17ed40602ea7e322bbf48b17bc), [`a235051`](https://github.com/dotansimha/graphql-code-generator/commit/a23505180ac2f275a55ece27162ec9bfcdc52e03)]:
8+
- @graphql-codegen/visitor-plugin-common@5.5.0
9+
- @graphql-codegen/plugin-helpers@5.1.0
10+
311
## 4.0.10
412

513
### Patch Changes

packages/plugins/typescript/document-nodes/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphql-codegen/typescript-document-nodes",
3-
"version": "4.0.10",
3+
"version": "4.0.11",
44
"description": "GraphQL Code Generator plugin for generating TypeScript modules with embedded GraphQL document nodes",
55
"repository": {
66
"type": "git",
@@ -13,8 +13,8 @@
1313
"test": "jest --no-watchman --config ../../../../jest.config.js"
1414
},
1515
"dependencies": {
16-
"@graphql-codegen/plugin-helpers": "^5.0.4",
17-
"@graphql-codegen/visitor-plugin-common": "5.4.0",
16+
"@graphql-codegen/plugin-helpers": "^5.1.0",
17+
"@graphql-codegen/visitor-plugin-common": "5.5.0",
1818
"auto-bind": "~4.0.0",
1919
"tslib": "~2.6.0"
2020
},

packages/plugins/typescript/gql-tag-operations/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @graphql-codegen/gql-tag-operations
22

3+
## 4.0.11
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`55a1e9e`](https://github.com/dotansimha/graphql-code-generator/commit/55a1e9e63830df17ed40602ea7e322bbf48b17bc), [`a235051`](https://github.com/dotansimha/graphql-code-generator/commit/a23505180ac2f275a55ece27162ec9bfcdc52e03)]:
8+
- @graphql-codegen/visitor-plugin-common@5.5.0
9+
- @graphql-codegen/plugin-helpers@5.1.0
10+
311
## 4.0.10
412

513
### Patch Changes

packages/plugins/typescript/gql-tag-operations/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphql-codegen/gql-tag-operations",
3-
"version": "4.0.10",
3+
"version": "4.0.11",
44
"description": "GraphQL Code Generator plugin for generating a typed gql tag function",
55
"repository": {
66
"type": "git",
@@ -17,8 +17,8 @@
1717
},
1818
"dependencies": {
1919
"@graphql-tools/utils": "^10.0.0",
20-
"@graphql-codegen/plugin-helpers": "^5.0.4",
21-
"@graphql-codegen/visitor-plugin-common": "5.4.0",
20+
"@graphql-codegen/plugin-helpers": "^5.1.0",
21+
"@graphql-codegen/visitor-plugin-common": "5.5.0",
2222
"auto-bind": "~4.0.0",
2323
"tslib": "~2.6.0"
2424
},

packages/plugins/typescript/operations/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @graphql-codegen/typescript-operations
22

3+
## 4.3.1
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`55a1e9e`](https://github.com/dotansimha/graphql-code-generator/commit/55a1e9e63830df17ed40602ea7e322bbf48b17bc), [`a235051`](https://github.com/dotansimha/graphql-code-generator/commit/a23505180ac2f275a55ece27162ec9bfcdc52e03)]:
8+
- @graphql-codegen/visitor-plugin-common@5.5.0
9+
- @graphql-codegen/plugin-helpers@5.1.0
10+
- @graphql-codegen/typescript@4.1.1
11+
312
## 4.3.0
413

514
### Minor Changes

packages/plugins/typescript/operations/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphql-codegen/typescript-operations",
3-
"version": "4.3.0",
3+
"version": "4.3.1",
44
"description": "GraphQL Code Generator plugin for generating TypeScript types for GraphQL queries, mutations, subscriptions and fragments",
55
"repository": {
66
"type": "git",
@@ -13,9 +13,9 @@
1313
"test": "jest --no-watchman --config ../../../../jest.config.js"
1414
},
1515
"dependencies": {
16-
"@graphql-codegen/plugin-helpers": "^5.0.4",
17-
"@graphql-codegen/typescript": "^4.1.0",
18-
"@graphql-codegen/visitor-plugin-common": "5.4.0",
16+
"@graphql-codegen/plugin-helpers": "^5.1.0",
17+
"@graphql-codegen/typescript": "^4.1.1",
18+
"@graphql-codegen/visitor-plugin-common": "5.5.0",
1919
"auto-bind": "~4.0.0",
2020
"tslib": "~2.6.0"
2121
},

packages/plugins/typescript/resolvers/CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# @graphql-codegen/typescript-resolvers
22

3+
## 4.4.0
4+
5+
### Minor Changes
6+
7+
- [#9989](https://github.com/dotansimha/graphql-code-generator/pull/9989) [`55a1e9e`](https://github.com/dotansimha/graphql-code-generator/commit/55a1e9e63830df17ed40602ea7e322bbf48b17bc) Thanks [@eddeee888](https://github.com/eddeee888)! - Add `generateInternalResolversIfNeeded` option
8+
9+
This option can be used to generate more correct types for internal resolvers. For example, only generate `__resolveReference` if the federation object has a resolvable `@key`.
10+
11+
In the future, this option can be extended to support other internal resolvers e.g. `__isTypeOf` is only generated for implementing types and union members.
12+
13+
- [#10141](https://github.com/dotansimha/graphql-code-generator/pull/10141) [`a235051`](https://github.com/dotansimha/graphql-code-generator/commit/a23505180ac2f275a55ece27162ec9bfcdc52e03) Thanks [@eddeee888](https://github.com/eddeee888)! - Add avoidCheckingAbstractTypesRecursively to avoid checking and generating abstract types recursively
14+
15+
For users that already sets recursive default mappers e.g. `Partial<{T}>` or `DeepPartial<{T}>`, having both options on will cause a nested loop which eventually crashes Codegen. In such case, setting `avoidCheckingAbstractTypesRecursively: true` allows users to continue to use recursive default mappers as before.
16+
17+
### Patch Changes
18+
19+
- Updated dependencies [[`55a1e9e`](https://github.com/dotansimha/graphql-code-generator/commit/55a1e9e63830df17ed40602ea7e322bbf48b17bc), [`a235051`](https://github.com/dotansimha/graphql-code-generator/commit/a23505180ac2f275a55ece27162ec9bfcdc52e03)]:
20+
- @graphql-codegen/visitor-plugin-common@5.5.0
21+
- @graphql-codegen/plugin-helpers@5.1.0
22+
- @graphql-codegen/typescript@4.1.1
23+
324
## 4.3.0
425

526
### Minor Changes

packages/plugins/typescript/resolvers/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphql-codegen/typescript-resolvers",
3-
"version": "4.3.0",
3+
"version": "4.4.0",
44
"description": "GraphQL Code Generator plugin for generating TypeScript types for resolvers signature",
55
"repository": {
66
"type": "git",
@@ -13,9 +13,9 @@
1313
"test": "jest --no-watchman --config ../../../../jest.config.js"
1414
},
1515
"dependencies": {
16-
"@graphql-codegen/plugin-helpers": "^5.0.4",
17-
"@graphql-codegen/typescript": "^4.1.0",
18-
"@graphql-codegen/visitor-plugin-common": "5.4.0",
16+
"@graphql-codegen/plugin-helpers": "^5.1.0",
17+
"@graphql-codegen/typescript": "^4.1.1",
18+
"@graphql-codegen/visitor-plugin-common": "5.5.0",
1919
"@graphql-tools/utils": "^10.0.0",
2020
"auto-bind": "~4.0.0",
2121
"tslib": "~2.6.0"

packages/plugins/typescript/typed-document-node/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @graphql-codegen/typed-document-node
22

3+
## 5.0.11
4+
5+
### Patch Changes
6+
7+
- [#10160](https://github.com/dotansimha/graphql-code-generator/pull/10160) [`c7af639`](https://github.com/dotansimha/graphql-code-generator/commit/c7af63964089938150402db69d49f11f93bb5175) Thanks [@jyasskin](https://github.com/jyasskin)! - Allow explicit `undefined` in additional to optional arguments
8+
9+
- Updated dependencies [[`55a1e9e`](https://github.com/dotansimha/graphql-code-generator/commit/55a1e9e63830df17ed40602ea7e322bbf48b17bc), [`a235051`](https://github.com/dotansimha/graphql-code-generator/commit/a23505180ac2f275a55ece27162ec9bfcdc52e03)]:
10+
- @graphql-codegen/visitor-plugin-common@5.5.0
11+
- @graphql-codegen/plugin-helpers@5.1.0
12+
313
## 5.0.10
414

515
### Patch Changes

packages/plugins/typescript/typed-document-node/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphql-codegen/typed-document-node",
3-
"version": "5.0.10",
3+
"version": "5.0.11",
44
"description": "GraphQL Code Generator plugin for generating ready-to-use TypedDocumentNode based on GraphQL operations",
55
"repository": {
66
"type": "git",
@@ -17,8 +17,8 @@
1717
},
1818
"dependencies": {
1919
"change-case-all": "1.0.15",
20-
"@graphql-codegen/plugin-helpers": "^5.0.4",
21-
"@graphql-codegen/visitor-plugin-common": "5.4.0",
20+
"@graphql-codegen/plugin-helpers": "^5.1.0",
21+
"@graphql-codegen/visitor-plugin-common": "5.5.0",
2222
"auto-bind": "~4.0.0",
2323
"tslib": "~2.6.0"
2424
},

packages/plugins/typescript/typescript/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @graphql-codegen/typescript
22

3+
## 4.1.1
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`55a1e9e`](https://github.com/dotansimha/graphql-code-generator/commit/55a1e9e63830df17ed40602ea7e322bbf48b17bc), [`a235051`](https://github.com/dotansimha/graphql-code-generator/commit/a23505180ac2f275a55ece27162ec9bfcdc52e03)]:
8+
- @graphql-codegen/visitor-plugin-common@5.5.0
9+
- @graphql-codegen/plugin-helpers@5.1.0
10+
311
## 4.1.0
412

513
### Minor Changes

packages/plugins/typescript/typescript/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphql-codegen/typescript",
3-
"version": "4.1.0",
3+
"version": "4.1.1",
44
"description": "GraphQL Code Generator plugin for generating TypeScript types",
55
"repository": {
66
"type": "git",
@@ -13,9 +13,9 @@
1313
"test": "jest --no-watchman --config ../../../../jest.config.js"
1414
},
1515
"dependencies": {
16-
"@graphql-codegen/plugin-helpers": "^5.0.4",
16+
"@graphql-codegen/plugin-helpers": "^5.1.0",
1717
"@graphql-codegen/schema-ast": "^4.0.2",
18-
"@graphql-codegen/visitor-plugin-common": "5.4.0",
18+
"@graphql-codegen/visitor-plugin-common": "5.5.0",
1919
"auto-bind": "~4.0.0",
2020
"tslib": "~2.6.0"
2121
},

packages/presets/client/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# @graphql-codegen/client-preset
22

3+
## 4.5.0
4+
5+
### Minor Changes
6+
7+
- [#10136](https://github.com/dotansimha/graphql-code-generator/pull/10136) [`3fd4486`](https://github.com/dotansimha/graphql-code-generator/commit/3fd4486a548c27099377c7bd696a22d1638227f4) Thanks [@wxt2005](https://github.com/wxt2005)! - foward skipTypeNameForRoot to client-preset
8+
9+
### Patch Changes
10+
11+
- [#10182](https://github.com/dotansimha/graphql-code-generator/pull/10182) [`effd875`](https://github.com/dotansimha/graphql-code-generator/commit/effd875b205fa9c5a99ce5e7fcdeb86cea7723fc) Thanks [@eddeee888](https://github.com/eddeee888)! - Revert slimmer client preset output
12+
13+
- Updated dependencies [[`55a1e9e`](https://github.com/dotansimha/graphql-code-generator/commit/55a1e9e63830df17ed40602ea7e322bbf48b17bc), [`a235051`](https://github.com/dotansimha/graphql-code-generator/commit/a23505180ac2f275a55ece27162ec9bfcdc52e03), [`c7af639`](https://github.com/dotansimha/graphql-code-generator/commit/c7af63964089938150402db69d49f11f93bb5175)]:
14+
- @graphql-codegen/visitor-plugin-common@5.5.0
15+
- @graphql-codegen/plugin-helpers@5.1.0
16+
- @graphql-codegen/typed-document-node@5.0.11
17+
- @graphql-codegen/gql-tag-operations@4.0.11
18+
- @graphql-codegen/typescript-operations@4.3.1
19+
- @graphql-codegen/typescript@4.1.1
20+
321
## 4.4.0
422

523
### Minor Changes

packages/presets/client/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphql-codegen/client-preset",
3-
"version": "4.4.0",
3+
"version": "4.5.0",
44
"description": "GraphQL Code Generator preset for client.",
55
"repository": {
66
"type": "git",
@@ -20,12 +20,12 @@
2020
"@babel/helper-plugin-utils": "^7.20.2",
2121
"@babel/template": "^7.20.7",
2222
"@graphql-codegen/add": "^5.0.3",
23-
"@graphql-codegen/typed-document-node": "^5.0.10",
24-
"@graphql-codegen/typescript": "^4.1.0",
25-
"@graphql-codegen/typescript-operations": "^4.3.0",
26-
"@graphql-codegen/gql-tag-operations": "4.0.10",
27-
"@graphql-codegen/plugin-helpers": "^5.0.4",
28-
"@graphql-codegen/visitor-plugin-common": "^5.4.0",
23+
"@graphql-codegen/typed-document-node": "^5.0.11",
24+
"@graphql-codegen/typescript": "^4.1.1",
25+
"@graphql-codegen/typescript-operations": "^4.3.1",
26+
"@graphql-codegen/gql-tag-operations": "4.0.11",
27+
"@graphql-codegen/plugin-helpers": "^5.1.0",
28+
"@graphql-codegen/visitor-plugin-common": "^5.5.0",
2929
"@graphql-typed-document-node/core": "3.2.0",
3030
"@graphql-tools/documents": "^1.0.0",
3131
"@graphql-tools/utils": "^10.0.0",

packages/presets/graphql-modules/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @graphql-codegen/graphql-modules-preset
22

3+
## 4.0.11
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`55a1e9e`](https://github.com/dotansimha/graphql-code-generator/commit/55a1e9e63830df17ed40602ea7e322bbf48b17bc), [`a235051`](https://github.com/dotansimha/graphql-code-generator/commit/a23505180ac2f275a55ece27162ec9bfcdc52e03)]:
8+
- @graphql-codegen/visitor-plugin-common@5.5.0
9+
- @graphql-codegen/plugin-helpers@5.1.0
10+
311
## 4.0.10
412

513
### Patch Changes

0 commit comments

Comments
 (0)