Skip to content

Commit cb73107

Browse files
Upcoming Release Changes (#8555)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 63dc8f2 commit cb73107

File tree

97 files changed

+559
-194
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+559
-194
lines changed

.changeset/@graphql-codegen_flutter-freezed-8525-dependencies.md

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

.changeset/great-mails-yawn.md

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

examples/typescript-esm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.0.0",
44
"private": true,
55
"devDependencies": {
6-
"@graphql-codegen/cli": "2.13.8",
6+
"@graphql-codegen/cli": "2.13.9",
77
"@graphql-codegen/gql-tag-operations-preset": "1.7.0"
88
},
99
"dependencies": {

examples/typescript-graphql-request/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.0.0",
44
"private": true,
55
"devDependencies": {
6-
"@graphql-codegen/cli": "2.13.8",
6+
"@graphql-codegen/cli": "2.13.9",
77
"@graphql-codegen/gql-tag-operations-preset": "1.7.0"
88
},
99
"dependencies": {

examples/typescript-resolvers/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
"version": "0.0.0",
44
"private": true,
55
"devDependencies": {
6-
"@graphql-codegen/cli": "2.13.8",
7-
"@graphql-codegen/typescript": "2.8.0",
8-
"@graphql-codegen/typescript-resolvers": "2.7.5"
6+
"@graphql-codegen/cli": "2.13.9",
7+
"@graphql-codegen/typescript": "2.8.1",
8+
"@graphql-codegen/typescript-resolvers": "2.7.6"
99
},
1010
"dependencies": {
1111
"graphql": "16.6.0",

packages/graphql-cli-codegen-plugin/CHANGELOG.md

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

3+
## 2.4.12
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`63dc8f205`](https://github.com/dotansimha/graphql-code-generator/commit/63dc8f2054e27b944f7d8dc59db8afa85760a127)]:
8+
- @graphql-codegen/cli@2.13.9
9+
310
## 2.4.11
411

512
### Patch Changes

packages/graphql-cli-codegen-plugin/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphql-cli/codegen",
3-
"version": "2.4.11",
3+
"version": "2.4.12",
44
"description": "GraphQL Code Generator's GraphQL CLI plugin. GraphQL Code Generator is a tool that generates code from your GraphQL schema and documents for your backend or frontend with flexible support for custom plugins and templates.",
55
"license": "MIT",
66
"keywords": [
@@ -25,7 +25,7 @@
2525
"graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
2626
},
2727
"dependencies": {
28-
"@graphql-codegen/cli": "2.13.8",
28+
"@graphql-codegen/cli": "2.13.9",
2929
"@graphql-cli/common": "4.1.0"
3030
},
3131
"main": "dist/cjs/index.js",

packages/graphql-codegen-cli/CHANGELOG.md

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

3+
## 2.13.9
4+
5+
### Patch Changes
6+
7+
- [#8525](https://github.com/dotansimha/graphql-code-generator/pull/8525) [`63dc8f205`](https://github.com/dotansimha/graphql-code-generator/commit/63dc8f2054e27b944f7d8dc59db8afa85760a127) Thanks [@charlypoly](https://github.com/charlypoly)! - remove `DetailledError`, not supported by Listr renderer
8+
9+
- Updated dependencies [[`63dc8f205`](https://github.com/dotansimha/graphql-code-generator/commit/63dc8f2054e27b944f7d8dc59db8afa85760a127)]:
10+
- @graphql-codegen/core@2.6.3
11+
- @graphql-codegen/plugin-helpers@2.7.2
12+
313
## 2.13.8
414

515
### Patch Changes

packages/graphql-codegen-cli/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/cli",
3-
"version": "2.13.8",
3+
"version": "2.13.9",
44
"license": "MIT",
55
"bin": {
66
"gql-gen": "dist/cjs/bin.js",
@@ -43,8 +43,8 @@
4343
"@babel/generator": "^7.18.13",
4444
"@babel/template": "^7.18.10",
4545
"@babel/types": "^7.18.13",
46-
"@graphql-codegen/core": "2.6.2",
47-
"@graphql-codegen/plugin-helpers": "^2.6.2",
46+
"@graphql-codegen/core": "2.6.3",
47+
"@graphql-codegen/plugin-helpers": "^2.7.2",
4848
"@graphql-tools/apollo-engine-loader": "^7.3.6",
4949
"@graphql-tools/code-file-loader": "^7.3.1",
5050
"@graphql-tools/git-loader": "^7.2.1",

packages/graphql-codegen-core/CHANGELOG.md

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

3+
## 2.6.3
4+
5+
### Patch Changes
6+
7+
- [#8525](https://github.com/dotansimha/graphql-code-generator/pull/8525) [`63dc8f205`](https://github.com/dotansimha/graphql-code-generator/commit/63dc8f2054e27b944f7d8dc59db8afa85760a127) Thanks [@charlypoly](https://github.com/charlypoly)! - remove `DetailledError`, not supported by Listr renderer
8+
9+
- Updated dependencies [[`63dc8f205`](https://github.com/dotansimha/graphql-code-generator/commit/63dc8f2054e27b944f7d8dc59db8afa85760a127)]:
10+
- @graphql-codegen/plugin-helpers@2.7.2
11+
312
## 2.6.2
413

514
### Patch Changes

packages/graphql-codegen-core/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/core",
3-
"version": "2.6.2",
3+
"version": "2.6.3",
44
"license": "MIT",
55
"repository": {
66
"type": "git",
@@ -37,7 +37,7 @@
3737
"graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
3838
},
3939
"dependencies": {
40-
"@graphql-codegen/plugin-helpers": "^2.6.2",
40+
"@graphql-codegen/plugin-helpers": "^2.7.2",
4141
"@graphql-tools/schema": "^9.0.0",
4242
"@graphql-tools/utils": "^8.8.0",
4343
"tslib": "~2.4.0"

packages/plugins/dart/flutter-freezed/CHANGELOG.md

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

3+
## 2.11.2
4+
5+
### Patch Changes
6+
7+
- [#8525](https://github.com/dotansimha/graphql-code-generator/pull/8525) [`63dc8f205`](https://github.com/dotansimha/graphql-code-generator/commit/63dc8f2054e27b944f7d8dc59db8afa85760a127) Thanks [@charlypoly](https://github.com/charlypoly)! - dependencies updates:
8+
- Updated dependency [`@graphql-codegen/[email protected]` ↗︎](https://www.npmjs.com/package/@graphql-codegen/visitor-plugin-common/v/2.13.0) (from `2.12.0`, in `dependencies`)
9+
- Updated dependencies [[`63dc8f205`](https://github.com/dotansimha/graphql-code-generator/commit/63dc8f2054e27b944f7d8dc59db8afa85760a127)]:
10+
- @graphql-codegen/visitor-plugin-common@2.13.1
11+
- @graphql-codegen/plugin-helpers@2.7.2
12+
313
## 2.11.1
414

515
### Patch Changes

packages/plugins/dart/flutter-freezed/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/flutter-freezed",
3-
"version": "2.11.1",
3+
"version": "2.11.2",
44
"description": "GraphQL Code Generator plugin to generate Freezed models from your GraphQL schema",
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": "^2.6.0",
16+
"@graphql-codegen/plugin-helpers": "^2.7.2",
1717
"@graphql-codegen/schema-ast": "^2.5.0",
18-
"@graphql-codegen/visitor-plugin-common": "2.13.0",
18+
"@graphql-codegen/visitor-plugin-common": "2.13.1",
1919
"auto-bind": "~4.0.0",
2020
"tslib": "~2.4.0",
2121
"change-case-all": "1.0.14"

packages/plugins/flow/flow/CHANGELOG.md

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

3+
## 2.3.6
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`63dc8f205`](https://github.com/dotansimha/graphql-code-generator/commit/63dc8f2054e27b944f7d8dc59db8afa85760a127)]:
8+
- @graphql-codegen/visitor-plugin-common@2.13.1
9+
- @graphql-codegen/plugin-helpers@2.7.2
10+
311
## 2.3.5
412

513
### Patch Changes

packages/plugins/flow/flow/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/flow",
3-
"version": "2.3.5",
3+
"version": "2.3.6",
44
"description": "GraphQL Code Generator plugin for generating Flow types",
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": "^2.6.2",
17-
"@graphql-codegen/visitor-plugin-common": "2.13.0",
16+
"@graphql-codegen/plugin-helpers": "^2.7.2",
17+
"@graphql-codegen/visitor-plugin-common": "2.13.1",
1818
"auto-bind": "~4.0.0",
1919
"tslib": "~2.4.0"
2020
},

packages/plugins/flow/operations/CHANGELOG.md

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

3+
## 2.3.6
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`63dc8f205`](https://github.com/dotansimha/graphql-code-generator/commit/63dc8f2054e27b944f7d8dc59db8afa85760a127)]:
8+
- @graphql-codegen/visitor-plugin-common@2.13.1
9+
- @graphql-codegen/plugin-helpers@2.7.2
10+
- @graphql-codegen/flow@2.3.6
11+
312
## 2.3.5
413

514
### Patch Changes

packages/plugins/flow/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/flow-operations",
3-
"version": "2.3.5",
3+
"version": "2.3.6",
44
"description": "GraphQL Code Generator plugin for generating Flow types for GraphQL operations (query/mutation/subscription/fragment)",
55
"repository": {
66
"type": "git",
@@ -13,9 +13,9 @@
1313
"test": "jest --no-watchman --config ../../../../jest.config.js"
1414
},
1515
"dependencies": {
16-
"@graphql-codegen/flow": "^2.3.5",
17-
"@graphql-codegen/plugin-helpers": "^2.6.2",
18-
"@graphql-codegen/visitor-plugin-common": "2.13.0",
16+
"@graphql-codegen/flow": "^2.3.6",
17+
"@graphql-codegen/plugin-helpers": "^2.7.2",
18+
"@graphql-codegen/visitor-plugin-common": "2.13.1",
1919
"auto-bind": "~4.0.0",
2020
"tslib": "~2.4.0"
2121
},

packages/plugins/flow/resolvers/CHANGELOG.md

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

3+
## 2.4.4
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`63dc8f205`](https://github.com/dotansimha/graphql-code-generator/commit/63dc8f2054e27b944f7d8dc59db8afa85760a127)]:
8+
- @graphql-codegen/visitor-plugin-common@2.13.1
9+
- @graphql-codegen/plugin-helpers@2.7.2
10+
- @graphql-codegen/flow@2.3.6
11+
312
## 2.4.3
413

514
### Patch Changes

packages/plugins/flow/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/flow-resolvers",
3-
"version": "2.4.3",
3+
"version": "2.4.4",
44
"description": "GraphQL Code Generator plugin for generating Flow types for GraphQL 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/flow": "^2.3.5",
17-
"@graphql-codegen/plugin-helpers": "^2.6.2",
18-
"@graphql-codegen/visitor-plugin-common": "2.13.0",
16+
"@graphql-codegen/flow": "^2.3.6",
17+
"@graphql-codegen/plugin-helpers": "^2.7.2",
18+
"@graphql-codegen/visitor-plugin-common": "2.13.1",
1919
"@graphql-tools/utils": "^8.8.0",
2020
"auto-bind": "~4.0.0",
2121
"tslib": "~2.4.0"

packages/plugins/java/apollo-android/CHANGELOG.md

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

3+
## 2.3.6
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`63dc8f205`](https://github.com/dotansimha/graphql-code-generator/commit/63dc8f2054e27b944f7d8dc59db8afa85760a127)]:
8+
- @graphql-codegen/visitor-plugin-common@2.13.1
9+
- @graphql-codegen/plugin-helpers@2.7.2
10+
- @graphql-codegen/java-common@2.2.6
11+
312
## 2.3.5
413

514
### Patch Changes

packages/plugins/java/apollo-android/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/java-apollo-android",
3-
"version": "2.3.5",
3+
"version": "2.3.6",
44
"description": "GraphQL Code Generator plugin for generating Java classes for Apollo-Android",
55
"repository": {
66
"type": "git",
@@ -13,9 +13,9 @@
1313
"test": "jest --no-watchman --config ../../../../jest.config.js"
1414
},
1515
"dependencies": {
16-
"@graphql-codegen/java-common": "^2.2.5",
17-
"@graphql-codegen/plugin-helpers": "^2.6.2",
18-
"@graphql-codegen/visitor-plugin-common": "2.13.0",
16+
"@graphql-codegen/java-common": "^2.2.6",
17+
"@graphql-codegen/plugin-helpers": "^2.7.2",
18+
"@graphql-codegen/visitor-plugin-common": "2.13.1",
1919
"auto-bind": "~4.0.0",
2020
"change-case-all": "1.0.14",
2121
"pluralize": "^8.0.0",

packages/plugins/java/common/CHANGELOG.md

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

3+
## 2.2.6
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`63dc8f205`](https://github.com/dotansimha/graphql-code-generator/commit/63dc8f2054e27b944f7d8dc59db8afa85760a127)]:
8+
- @graphql-codegen/visitor-plugin-common@2.13.1
9+
- @graphql-codegen/plugin-helpers@2.7.2
10+
311
## 2.2.5
412

513
### Patch Changes

packages/plugins/java/common/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/java-common",
3-
"version": "2.2.5",
3+
"version": "2.2.6",
44
"description": "GraphQL Code Generator utils library for developing Java plugins",
55
"repository": {
66
"type": "git",
@@ -12,8 +12,8 @@
1212
"lint": "eslint **/*.ts"
1313
},
1414
"dependencies": {
15-
"@graphql-codegen/plugin-helpers": "^2.6.2",
16-
"@graphql-codegen/visitor-plugin-common": "2.13.0",
15+
"@graphql-codegen/plugin-helpers": "^2.7.2",
16+
"@graphql-codegen/visitor-plugin-common": "2.13.1",
1717
"auto-bind": "~4.0.0",
1818
"min-indent": "1.0.1",
1919
"tslib": "~2.4.0",

packages/plugins/java/java/CHANGELOG.md

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

3+
## 3.3.6
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`63dc8f205`](https://github.com/dotansimha/graphql-code-generator/commit/63dc8f2054e27b944f7d8dc59db8afa85760a127)]:
8+
- @graphql-codegen/visitor-plugin-common@2.13.1
9+
- @graphql-codegen/plugin-helpers@2.7.2
10+
- @graphql-codegen/java-common@2.2.6
11+
312
## 3.3.5
413

514
### Patch Changes

packages/plugins/java/java/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/java",
3-
"version": "3.3.5",
3+
"version": "3.3.6",
44
"description": "GraphQL Code Generator plugin for generating Java code based on a GraphQL schema",
55
"repository": {
66
"type": "git",
@@ -13,9 +13,9 @@
1313
"test": "jest --no-watchman --config ../../../../jest.config.js"
1414
},
1515
"dependencies": {
16-
"@graphql-codegen/java-common": "^2.2.5",
17-
"@graphql-codegen/plugin-helpers": "^2.6.2",
18-
"@graphql-codegen/visitor-plugin-common": "2.13.0",
16+
"@graphql-codegen/java-common": "^2.2.6",
17+
"@graphql-codegen/plugin-helpers": "^2.7.2",
18+
"@graphql-codegen/visitor-plugin-common": "2.13.1",
1919
"tslib": "~2.4.0"
2020
},
2121
"peerDependencies": {

0 commit comments

Comments
 (0)