Skip to content

Commit 4d9725a

Browse files
chore(release): update monorepo packages versions (#8096)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 32c1560 commit 4d9725a

File tree

88 files changed

+599
-191
lines changed

Some content is hidden

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

88 files changed

+599
-191
lines changed

.changeset/green-dogs-wait.md

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

.changeset/kind-taxis-refuse.md

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

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

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

3+
## 2.3.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [32c1560f1]
8+
- Updated dependencies [2cbcbb371]
9+
- @graphql-codegen/cli@2.9.0
10+
311
## 2.3.1
412

513
### 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.3.1",
3+
"version": "2.3.2",
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.8.1",
28+
"@graphql-codegen/cli": "2.9.0",
2929
"@graphql-cli/common": "4.1.0"
3030
},
3131
"main": "dist/cjs/index.js",

packages/graphql-codegen-cli/CHANGELOG.md

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

3+
## 2.9.0
4+
5+
### Minor Changes
6+
7+
- 2cbcbb371: Add new flag to emit legacy common js imports. Default it will be `true` this way it ensure that generated code works with [non-compliant bundlers](https://github.com/dotansimha/graphql-code-generator/issues/8065).
8+
9+
You can use the option in your config:
10+
11+
```yaml
12+
schema: 'schema.graphql'
13+
documents:
14+
- 'src/**/*.graphql'
15+
emitLegacyCommonJSImports: true
16+
```
17+
18+
Alternative you can use the CLI to set this option:
19+
20+
```bash
21+
$ codegen --config-file=config.yml --emit-legacy-common-js-imports
22+
```
23+
24+
### Patch Changes
25+
26+
- 32c1560f1: getPluginByName fails unexpectedly when plugin is not prefixed with @graphq-codegen in ESM context
27+
28+
MODULE_NOT_FOUND is the error code you receive in a CommonJS context when you require() a module and it does not exist.
29+
ERR_MODULE_NOT_FOUND is the error code you receive in an ESM context when you import or import() ad module that does not exist.
30+
31+
- Updated dependencies [2cbcbb371]
32+
- @graphql-codegen/plugin-helpers@2.6.0
33+
334
## 2.8.1
435

536
### 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": "2.8.1",
3+
"version": "2.9.0",
44
"license": "MIT",
55
"bin": {
66
"gql-gen": "dist/cjs/bin.js",
@@ -41,7 +41,7 @@
4141
"homepage": "https://github.com/dotansimha/graphql-code-generator#readme",
4242
"dependencies": {
4343
"@graphql-codegen/core": "2.6.0",
44-
"@graphql-codegen/plugin-helpers": "^2.5.0",
44+
"@graphql-codegen/plugin-helpers": "^2.6.0",
4545
"@graphql-tools/apollo-engine-loader": "^7.3.1",
4646
"@graphql-tools/code-file-loader": "^7.3.0",
4747
"@graphql-tools/git-loader": "^7.2.0",

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.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [2cbcbb371]
8+
- @graphql-codegen/visitor-plugin-common@2.12.0
9+
- @graphql-codegen/plugin-helpers@2.6.0
10+
311
## 2.3.1
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.1",
3+
"version": "2.3.2",
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.5.0",
17-
"@graphql-codegen/visitor-plugin-common": "2.11.1",
16+
"@graphql-codegen/plugin-helpers": "^2.6.0",
17+
"@graphql-codegen/visitor-plugin-common": "2.12.0",
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.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [2cbcbb371]
8+
- @graphql-codegen/visitor-plugin-common@2.12.0
9+
- @graphql-codegen/plugin-helpers@2.6.0
10+
- @graphql-codegen/flow@2.3.2
11+
312
## 2.3.1
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.1",
3+
"version": "2.3.2",
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.1",
17-
"@graphql-codegen/plugin-helpers": "^2.5.0",
18-
"@graphql-codegen/visitor-plugin-common": "2.11.1",
16+
"@graphql-codegen/flow": "^2.3.2",
17+
"@graphql-codegen/plugin-helpers": "^2.6.0",
18+
"@graphql-codegen/visitor-plugin-common": "2.12.0",
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.3.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [2cbcbb371]
8+
- @graphql-codegen/visitor-plugin-common@2.12.0
9+
- @graphql-codegen/plugin-helpers@2.6.0
10+
- @graphql-codegen/flow@2.3.2
11+
312
## 2.3.1
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.3.1",
3+
"version": "2.3.2",
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.1",
17-
"@graphql-codegen/plugin-helpers": "^2.5.0",
18-
"@graphql-codegen/visitor-plugin-common": "2.11.1",
16+
"@graphql-codegen/flow": "^2.3.2",
17+
"@graphql-codegen/plugin-helpers": "^2.6.0",
18+
"@graphql-codegen/visitor-plugin-common": "2.12.0",
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.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [2cbcbb371]
8+
- @graphql-codegen/visitor-plugin-common@2.12.0
9+
- @graphql-codegen/plugin-helpers@2.6.0
10+
- @graphql-codegen/java-common@2.2.2
11+
312
## 2.3.1
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.1",
3+
"version": "2.3.2",
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.1",
17-
"@graphql-codegen/plugin-helpers": "^2.5.0",
18-
"@graphql-codegen/visitor-plugin-common": "2.11.1",
16+
"@graphql-codegen/java-common": "^2.2.2",
17+
"@graphql-codegen/plugin-helpers": "^2.6.0",
18+
"@graphql-codegen/visitor-plugin-common": "2.12.0",
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.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [2cbcbb371]
8+
- @graphql-codegen/visitor-plugin-common@2.12.0
9+
- @graphql-codegen/plugin-helpers@2.6.0
10+
311
## 2.2.1
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.1",
3+
"version": "2.2.2",
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.5.0",
16-
"@graphql-codegen/visitor-plugin-common": "2.11.1",
15+
"@graphql-codegen/plugin-helpers": "^2.6.0",
16+
"@graphql-codegen/visitor-plugin-common": "2.12.0",
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.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [2cbcbb371]
8+
- @graphql-codegen/visitor-plugin-common@2.12.0
9+
- @graphql-codegen/plugin-helpers@2.6.0
10+
- @graphql-codegen/java-common@2.2.2
11+
312
## 3.3.1
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.1",
3+
"version": "3.3.2",
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.1",
17-
"@graphql-codegen/plugin-helpers": "^2.5.0",
18-
"@graphql-codegen/visitor-plugin-common": "2.11.1",
16+
"@graphql-codegen/java-common": "^2.2.2",
17+
"@graphql-codegen/plugin-helpers": "^2.6.0",
18+
"@graphql-codegen/visitor-plugin-common": "2.12.0",
1919
"tslib": "~2.4.0"
2020
},
2121
"peerDependencies": {

packages/plugins/java/kotlin/CHANGELOG.md

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

3+
## 2.3.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [2cbcbb371]
8+
- @graphql-codegen/visitor-plugin-common@2.12.0
9+
- @graphql-codegen/plugin-helpers@2.6.0
10+
- @graphql-codegen/java-common@2.2.2
11+
312
## 2.3.1
413

514
### Patch Changes

packages/plugins/java/kotlin/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/kotlin",
3-
"version": "2.3.1",
3+
"version": "2.3.2",
44
"description": "GraphQL Code Generator plugin for generating Kotlin 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.1",
17-
"@graphql-codegen/plugin-helpers": "^2.5.0",
18-
"@graphql-codegen/visitor-plugin-common": "2.11.1",
16+
"@graphql-codegen/java-common": "^2.2.2",
17+
"@graphql-codegen/plugin-helpers": "^2.6.0",
18+
"@graphql-codegen/visitor-plugin-common": "2.12.0",
1919
"tslib": "~2.4.0"
2020
},
2121
"peerDependencies": {

packages/plugins/java/resolvers/CHANGELOG.md

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

3+
## 2.3.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [2cbcbb371]
8+
- @graphql-codegen/visitor-plugin-common@2.12.0
9+
- @graphql-codegen/plugin-helpers@2.6.0
10+
- @graphql-codegen/java-common@2.2.2
11+
312
## 2.3.1
413

514
### Patch Changes

packages/plugins/java/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/java-resolvers",
3-
"version": "2.3.1",
3+
"version": "2.3.2",
44
"description": "GraphQL Code Generator plugin for generating resolvers signature for Java backends",
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.1",
17-
"@graphql-codegen/plugin-helpers": "^2.5.0",
18-
"@graphql-codegen/visitor-plugin-common": "2.11.1",
16+
"@graphql-codegen/java-common": "^2.2.2",
17+
"@graphql-codegen/plugin-helpers": "^2.6.0",
18+
"@graphql-codegen/visitor-plugin-common": "2.12.0",
1919
"tslib": "~2.4.0"
2020
},
2121
"peerDependencies": {

0 commit comments

Comments
 (0)