Skip to content

Commit f180860

Browse files
chore(release): update monorepo packages versions (#8713)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 59cde60 commit f180860

File tree

11 files changed

+33
-15
lines changed

11 files changed

+33
-15
lines changed

.changeset/curvy-pens-watch.md

Lines changed: 0 additions & 6 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.15.1",
6+
"@graphql-codegen/cli": "2.16.0",
77
"@graphql-codegen/gql-tag-operations-preset": "1.7.1"
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.15.1",
6+
"@graphql-codegen/cli": "2.16.0",
77
"@graphql-codegen/gql-tag-operations-preset": "1.7.1"
88
},
99
"dependencies": {

examples/typescript-resolvers/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.15.1",
6+
"@graphql-codegen/cli": "2.16.0",
77
"@graphql-codegen/typescript": "2.8.4",
88
"@graphql-codegen/typescript-resolvers": "2.7.9"
99
},

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.20
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`c0183810f`](https://github.com/dotansimha/graphql-code-generator/commit/c0183810f0178aec6f49ab8a6f35f7adc4d9f13e)]:
8+
- @graphql-codegen/cli@2.16.0
9+
310
## 2.4.19
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.19",
3+
"version": "2.4.20",
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.15.1",
28+
"@graphql-codegen/cli": "2.16.0",
2929
"@graphql-cli/common": "4.1.0"
3030
},
3131
"main": "dist/cjs/index.js",

packages/graphql-codegen-cli/CHANGELOG.md

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

3+
## 2.16.0
4+
5+
### Minor Changes
6+
7+
- [#8662](https://github.com/dotansimha/graphql-code-generator/pull/8662) [`c0183810f`](https://github.com/dotansimha/graphql-code-generator/commit/c0183810f0178aec6f49ab8a6f35f7adc4d9f13e) Thanks [@jantimon](https://github.com/jantimon)! - the life cycle hook beforeOneFileWrite is now able to modify the generated content
8+
9+
### Patch Changes
10+
11+
- Updated dependencies [[`c0183810f`](https://github.com/dotansimha/graphql-code-generator/commit/c0183810f0178aec6f49ab8a6f35f7adc4d9f13e)]:
12+
- @graphql-codegen/plugin-helpers@3.1.0
13+
314
## 2.15.1
415

516
### 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.15.1",
3+
"version": "2.16.0",
44
"license": "MIT",
55
"bin": {
66
"gql-gen": "dist/cjs/bin.js",
@@ -44,7 +44,7 @@
4444
"@babel/template": "^7.18.10",
4545
"@babel/types": "^7.18.13",
4646
"@graphql-codegen/core": "2.6.7",
47-
"@graphql-codegen/plugin-helpers": "^3.0.0",
47+
"@graphql-codegen/plugin-helpers": "^3.1.0",
4848
"@graphql-tools/apollo-engine-loader": "^7.3.6",
4949
"@graphql-tools/code-file-loader": "^7.3.13",
5050
"@graphql-tools/git-loader": "^7.2.13",

packages/utils/plugins-helpers/CHANGELOG.md

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

3+
## 3.1.0
4+
5+
### Minor Changes
6+
7+
- [#8662](https://github.com/dotansimha/graphql-code-generator/pull/8662) [`c0183810f`](https://github.com/dotansimha/graphql-code-generator/commit/c0183810f0178aec6f49ab8a6f35f7adc4d9f13e) Thanks [@jantimon](https://github.com/jantimon)! - the life cycle hook beforeOneFileWrite is now able to modify the generated content
8+
39
## 3.0.0
410

511
### Major Changes

packages/utils/plugins-helpers/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphql-codegen/plugin-helpers",
3-
"version": "3.0.0",
3+
"version": "3.1.0",
44
"description": "GraphQL Code Generator common utils and types",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)