Skip to content

Commit cf7a9df

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

File tree

95 files changed

+612
-205
lines changed

Some content is hidden

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

95 files changed

+612
-205
lines changed

.changeset/angry-ducks-march.md

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

.changeset/dry-nails-return.md

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

.changeset/gold-pans-sneeze.md

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

.changeset/loud-toys-draw.md

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

.changeset/rotten-pets-notice.md

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

.changeset/swift-fishes-draw.md

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

.changeset/witty-donkeys-remember.md

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

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+
## 1.17.26
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [470336a1]
8+
- @graphql-codegen/cli@1.21.7
9+
310
## 1.17.25
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": "1.17.25",
3+
"version": "1.17.26",
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": [
@@ -26,7 +26,7 @@
2626
"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"
2727
},
2828
"dependencies": {
29-
"@graphql-codegen/cli": "1.21.6",
29+
"@graphql-codegen/cli": "1.21.7",
3030
"@graphql-cli/common": "4.1.0"
3131
},
3232
"main": "dist/index.cjs.js",

packages/graphql-codegen-cli/CHANGELOG.md

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

3+
## 1.21.7
4+
5+
### Patch Changes
6+
7+
- 470336a1: don't require plugins for for config if preset provides plugin. Instead the preset should throw if no plugins were provided.
8+
- Updated dependencies [470336a1]
9+
- @graphql-codegen/plugin-helpers@1.18.8
10+
311
## 1.21.6
412

513
### Patch Changes

packages/graphql-codegen-cli/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/cli",
3-
"version": "1.21.6",
3+
"version": "1.21.7",
44
"license": "MIT",
55
"bin": {
66
"gql-gen": "dist/bin.js",
@@ -41,7 +41,7 @@
4141
"homepage": "https://github.com/dotansimha/graphql-code-generator#readme",
4242
"dependencies": {
4343
"@graphql-codegen/core": "1.17.10",
44-
"@graphql-codegen/plugin-helpers": "^1.18.7",
44+
"@graphql-codegen/plugin-helpers": "^1.18.8",
4545
"@graphql-tools/apollo-engine-loader": "^6.2.5",
4646
"@graphql-tools/code-file-loader": "^6.3.1",
4747
"@graphql-tools/git-loader": "^6.2.6",

packages/plugins/c-sharp/c-sharp-operations/CHANGELOG.md

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

3+
## 1.19.5
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [df19a4ed]
8+
- Updated dependencies [470336a1]
9+
- Updated dependencies [9005cc17]
10+
- @graphql-codegen/visitor-plugin-common@1.22.0
11+
- @graphql-codegen/plugin-helpers@1.18.8
12+
313
## 1.19.4
414

515
### Patch Changes

packages/plugins/c-sharp/c-sharp-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/c-sharp-operations",
3-
"version": "1.19.4",
3+
"version": "1.19.5",
44
"description": "GraphQL Code Generator plugin for generating CSharp code based on GraphQL operations",
55
"repository": "[email protected]:dotansimha/graphql-code-generator.git",
66
"license": "MIT",
@@ -14,8 +14,8 @@
1414
"graphql-tag": "2.12.5"
1515
},
1616
"dependencies": {
17-
"@graphql-codegen/plugin-helpers": "^1.18.7",
18-
"@graphql-codegen/visitor-plugin-common": "1.21.3",
17+
"@graphql-codegen/plugin-helpers": "^1.18.8",
18+
"@graphql-codegen/visitor-plugin-common": "1.22.0",
1919
"auto-bind": "~4.0.0",
2020
"change-case-all": "1.0.14",
2121
"tslib": "~2.3.0"

packages/plugins/c-sharp/c-sharp/CHANGELOG.md

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

3+
## 3.0.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [df19a4ed]
8+
- Updated dependencies [470336a1]
9+
- Updated dependencies [9005cc17]
10+
- @graphql-codegen/visitor-plugin-common@1.22.0
11+
- @graphql-codegen/plugin-helpers@1.18.8
12+
313
## 3.0.1
414

515
### Patch Changes

packages/plugins/c-sharp/c-sharp/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/c-sharp",
3-
"version": "3.0.1",
3+
"version": "3.0.2",
44
"description": "GraphQL Code Generator plugin for generating CSharp code based on a GraphQL schema",
55
"repository": "[email protected]:dotansimha/graphql-code-generator.git",
66
"license": "MIT",
@@ -10,8 +10,8 @@
1010
"prepack": "bob prepack"
1111
},
1212
"dependencies": {
13-
"@graphql-codegen/plugin-helpers": "^1.18.7",
14-
"@graphql-codegen/visitor-plugin-common": "1.21.3",
13+
"@graphql-codegen/plugin-helpers": "^1.18.8",
14+
"@graphql-codegen/visitor-plugin-common": "1.22.0",
1515
"tslib": "~2.3.0",
1616
"unixify": "^1.0.0",
1717
"change-case-all": "1.0.14"

packages/plugins/flow/flow/CHANGELOG.md

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

3+
## 1.19.5
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [df19a4ed]
8+
- Updated dependencies [470336a1]
9+
- Updated dependencies [9005cc17]
10+
- @graphql-codegen/visitor-plugin-common@1.22.0
11+
- @graphql-codegen/plugin-helpers@1.18.8
12+
313
## 1.19.4
414

515
### 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": "1.19.4",
3+
"version": "1.19.5",
44
"description": "GraphQL Code Generator plugin for generating Flow types",
55
"repository": {
66
"type": "git",
@@ -14,8 +14,8 @@
1414
"prepack": "bob prepack"
1515
},
1616
"dependencies": {
17-
"@graphql-codegen/plugin-helpers": "^1.18.7",
18-
"@graphql-codegen/visitor-plugin-common": "1.21.3",
17+
"@graphql-codegen/plugin-helpers": "^1.18.8",
18+
"@graphql-codegen/visitor-plugin-common": "1.22.0",
1919
"auto-bind": "~4.0.0",
2020
"tslib": "~2.3.0"
2121
},

packages/plugins/flow/operations/CHANGELOG.md

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

3+
## 1.18.13
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [df19a4ed]
8+
- Updated dependencies [470336a1]
9+
- Updated dependencies [9005cc17]
10+
- @graphql-codegen/visitor-plugin-common@1.22.0
11+
- @graphql-codegen/plugin-helpers@1.18.8
12+
- @graphql-codegen/flow@1.19.5
13+
314
## 1.18.12
415

516
### 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": "1.18.12",
3+
"version": "1.18.13",
44
"description": "GraphQL Code Generator plugin for generating Flow types for GraphQL operations (query/mutation/subscription/fragment)",
55
"repository": {
66
"type": "git",
@@ -14,9 +14,9 @@
1414
"prepack": "bob prepack"
1515
},
1616
"dependencies": {
17-
"@graphql-codegen/flow": "^1.19.4",
18-
"@graphql-codegen/plugin-helpers": "^1.18.7",
19-
"@graphql-codegen/visitor-plugin-common": "1.21.3",
17+
"@graphql-codegen/flow": "^1.19.5",
18+
"@graphql-codegen/plugin-helpers": "^1.18.8",
19+
"@graphql-codegen/visitor-plugin-common": "1.22.0",
2020
"auto-bind": "~4.0.0",
2121
"tslib": "~2.3.0"
2222
},

packages/plugins/flow/resolvers/CHANGELOG.md

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

3+
## 1.17.18
4+
5+
### Patch Changes
6+
7+
- df19a4ed: Allow multiple `{T}` instances in defaultMapper
8+
- Updated dependencies [df19a4ed]
9+
- Updated dependencies [470336a1]
10+
- Updated dependencies [9005cc17]
11+
- @graphql-codegen/visitor-plugin-common@1.22.0
12+
- @graphql-codegen/plugin-helpers@1.18.8
13+
- @graphql-codegen/flow@1.19.5
14+
315
## 1.17.17
416

517
### 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": "1.17.17",
3+
"version": "1.17.18",
44
"description": "GraphQL Code Generator plugin for generating Flow types for GraphQL resolvers signature",
55
"repository": {
66
"type": "git",
@@ -14,9 +14,9 @@
1414
"prepack": "bob prepack"
1515
},
1616
"dependencies": {
17-
"@graphql-codegen/flow": "^1.19.4",
18-
"@graphql-codegen/plugin-helpers": "^1.18.7",
19-
"@graphql-codegen/visitor-plugin-common": "1.21.3",
17+
"@graphql-codegen/flow": "^1.19.5",
18+
"@graphql-codegen/plugin-helpers": "^1.18.8",
19+
"@graphql-codegen/visitor-plugin-common": "1.22.0",
2020
"@graphql-tools/utils": "^7.9.1",
2121
"auto-bind": "~4.0.0",
2222
"tslib": "~2.3.0"

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

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

3+
## 1.17.17
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [df19a4ed]
8+
- Updated dependencies [470336a1]
9+
- Updated dependencies [9005cc17]
10+
- @graphql-codegen/visitor-plugin-common@1.22.0
11+
- @graphql-codegen/plugin-helpers@1.18.8
12+
- @graphql-codegen/java-common@1.17.13
13+
314
## 1.17.16
415

516
### 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": "1.17.16",
3+
"version": "1.17.17",
44
"description": "GraphQL Code Generator plugin for generating Java classes for Apollo-Android",
55
"repository": {
66
"type": "git",
@@ -14,9 +14,9 @@
1414
"prepack": "bob prepack"
1515
},
1616
"dependencies": {
17-
"@graphql-codegen/java-common": "^1.17.12",
18-
"@graphql-codegen/plugin-helpers": "^1.18.7",
19-
"@graphql-codegen/visitor-plugin-common": "1.21.3",
17+
"@graphql-codegen/java-common": "^1.17.13",
18+
"@graphql-codegen/plugin-helpers": "^1.18.8",
19+
"@graphql-codegen/visitor-plugin-common": "1.22.0",
2020
"auto-bind": "~4.0.0",
2121
"change-case-all": "1.0.14",
2222
"pluralize": "^8.0.0",

packages/plugins/java/common/CHANGELOG.md

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

3+
## 1.17.13
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [df19a4ed]
8+
- Updated dependencies [470336a1]
9+
- Updated dependencies [9005cc17]
10+
- @graphql-codegen/visitor-plugin-common@1.22.0
11+
- @graphql-codegen/plugin-helpers@1.18.8
12+
313
## 1.17.12
414

515
### 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": "1.17.12",
3+
"version": "1.17.13",
44
"description": "GraphQL Code Generator utils library for developing Java plugins",
55
"repository": {
66
"type": "git",
@@ -13,8 +13,8 @@
1313
"prepack": "bob prepack"
1414
},
1515
"dependencies": {
16-
"@graphql-codegen/plugin-helpers": "^1.18.7",
17-
"@graphql-codegen/visitor-plugin-common": "1.21.3",
16+
"@graphql-codegen/plugin-helpers": "^1.18.8",
17+
"@graphql-codegen/visitor-plugin-common": "1.22.0",
1818
"auto-bind": "~4.0.0",
1919
"min-indent": "1.0.1",
2020
"tslib": "~2.3.0",

packages/plugins/java/java/CHANGELOG.md

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

3+
## 2.0.4
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [df19a4ed]
8+
- Updated dependencies [470336a1]
9+
- Updated dependencies [9005cc17]
10+
- @graphql-codegen/visitor-plugin-common@1.22.0
11+
- @graphql-codegen/plugin-helpers@1.18.8
12+
- @graphql-codegen/java-common@1.17.13
13+
314
## 2.0.3
415

516
### Patch Changes

0 commit comments

Comments
 (0)