Skip to content

Commit

Permalink
chore(release): update monorepo packages versions (#834)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Sep 5, 2024
1 parent 56e5a00 commit 3f17088
Show file tree
Hide file tree
Showing 15 changed files with 93 additions and 39 deletions.
7 changes: 0 additions & 7 deletions .changeset/eight-pandas-vanish.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/few-apes-march.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/quick-insects-matter.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/smooth-timers-peel.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/strong-turkeys-sneeze.md

This file was deleted.

18 changes: 18 additions & 0 deletions packages/plugins/c-sharp/c-sharp-common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# @graphql-codegen/c-sharp-common

## 1.1.0

### Minor Changes

- [#816](https://github.com/dotansimha/graphql-code-generator-community/pull/816)
[`b1ec118`](https://github.com/dotansimha/graphql-code-generator-community/commit/b1ec1187507089362301b874546bf08dd4c8aec3)
Thanks [@mariusmuntean](https://github.com/mariusmuntean)! - Added support for the new
configuration option `memberNameConvention` to the c-sharp-operations plugin. Now both C# plugins
can generate C# code with standard member casing. The default is still camel case, to avoid
generating code that breaks user's existing code base.

### Patch Changes

- [#820](https://github.com/dotansimha/graphql-code-generator-community/pull/820)
[`581e733`](https://github.com/dotansimha/graphql-code-generator-community/commit/581e733d6ede02261f89c332c1e3fd4621d34ddc)
Thanks [@mariusmuntean](https://github.com/mariusmuntean)! - upgrade dependencies and fix type
errors

## 1.0.0

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/plugins/c-sharp/c-sharp-common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-codegen/c-sharp-common",
"version": "1.0.0",
"version": "1.1.0",
"type": "module",
"repository": "git@github.com:dotansimha/graphql-code-generator.git",
"license": "MIT",
Expand Down
23 changes: 23 additions & 0 deletions packages/plugins/c-sharp/c-sharp-operations/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# @graphql-codegen/c-sharp-operations

## 3.1.0

### Minor Changes

- [#816](https://github.com/dotansimha/graphql-code-generator-community/pull/816)
[`b1ec118`](https://github.com/dotansimha/graphql-code-generator-community/commit/b1ec1187507089362301b874546bf08dd4c8aec3)
Thanks [@mariusmuntean](https://github.com/mariusmuntean)! - Added support for the new
configuration option `memberNameConvention` to the c-sharp-operations plugin. Now both C# plugins
can generate C# code with standard member casing. The default is still camel case, to avoid
generating code that breaks user's existing code base.

### Patch Changes

- [#820](https://github.com/dotansimha/graphql-code-generator-community/pull/820)
[`581e733`](https://github.com/dotansimha/graphql-code-generator-community/commit/581e733d6ede02261f89c332c1e3fd4621d34ddc)
Thanks [@mariusmuntean](https://github.com/mariusmuntean)! - upgrade dependencies and fix type
errors

- Updated dependencies
[[`581e733`](https://github.com/dotansimha/graphql-code-generator-community/commit/581e733d6ede02261f89c332c1e3fd4621d34ddc),
[`b1ec118`](https://github.com/dotansimha/graphql-code-generator-community/commit/b1ec1187507089362301b874546bf08dd4c8aec3)]:
- @graphql-codegen/c-sharp-common@1.1.0

## 3.0.0

### Major Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/plugins/c-sharp/c-sharp-operations/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-codegen/c-sharp-operations",
"version": "3.0.0",
"version": "3.1.0",
"type": "module",
"description": "GraphQL Code Generator plugin for generating CSharp code based on GraphQL operations",
"repository": "git@github.com:dotansimha/graphql-code-generator.git",
Expand Down Expand Up @@ -37,7 +37,7 @@
"graphql-tag": "2.12.6"
},
"dependencies": {
"@graphql-codegen/c-sharp-common": "1.0.0",
"@graphql-codegen/c-sharp-common": "1.1.0",
"@graphql-codegen/plugin-helpers": "5.0.4",
"@graphql-codegen/visitor-plugin-common": "^5.3.1",
"auto-bind": "~4.0.0",
Expand Down
28 changes: 28 additions & 0 deletions packages/plugins/c-sharp/c-sharp/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
# @graphql-codegen/c-sharp

## 5.1.0

### Minor Changes

- [#816](https://github.com/dotansimha/graphql-code-generator-community/pull/816)
[`b1ec118`](https://github.com/dotansimha/graphql-code-generator-community/commit/b1ec1187507089362301b874546bf08dd4c8aec3)
Thanks [@mariusmuntean](https://github.com/mariusmuntean)! - Added support for the new
configuration option `memberNameConvention` to the c-sharp-operations plugin. Now both C# plugins
can generate C# code with standard member casing. The default is still camel case, to avoid
generating code that breaks user's existing code base.

- [#806](https://github.com/dotansimha/graphql-code-generator-community/pull/806)
[`d1d6d6e`](https://github.com/dotansimha/graphql-code-generator-community/commit/d1d6d6e2cc06b547ff132514ab3e697517438179)
Thanks [@mariusmuntean](https://github.com/mariusmuntean)! - Added `memberNameConvention` which
allows you to customize the naming convention for interface/class/record members.

### Patch Changes

- [#820](https://github.com/dotansimha/graphql-code-generator-community/pull/820)
[`581e733`](https://github.com/dotansimha/graphql-code-generator-community/commit/581e733d6ede02261f89c332c1e3fd4621d34ddc)
Thanks [@mariusmuntean](https://github.com/mariusmuntean)! - upgrade dependencies and fix type
errors

- Updated dependencies
[[`581e733`](https://github.com/dotansimha/graphql-code-generator-community/commit/581e733d6ede02261f89c332c1e3fd4621d34ddc),
[`b1ec118`](https://github.com/dotansimha/graphql-code-generator-community/commit/b1ec1187507089362301b874546bf08dd4c8aec3)]:
- @graphql-codegen/c-sharp-common@1.1.0

## 5.0.0

### Major Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/plugins/c-sharp/c-sharp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-codegen/c-sharp",
"version": "5.0.0",
"version": "5.1.0",
"type": "module",
"description": "GraphQL Code Generator plugin for generating CSharp code based on a GraphQL schema",
"repository": "git@github.com:dotansimha/graphql-code-generator.git",
Expand Down Expand Up @@ -36,7 +36,7 @@
"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"
},
"dependencies": {
"@graphql-codegen/c-sharp-common": "1.0.0",
"@graphql-codegen/c-sharp-common": "1.1.0",
"@graphql-codegen/plugin-helpers": "^5.0.4",
"@graphql-codegen/visitor-plugin-common": "^5.3.1",
"change-case-all": "1.0.15",
Expand Down
9 changes: 9 additions & 0 deletions packages/plugins/typescript/react-apollo/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @graphql-codegen/typescript-react-apollo

## 4.3.1

### Patch Changes

- [#805](https://github.com/dotansimha/graphql-code-generator-community/pull/805)
[`7df8028`](https://github.com/dotansimha/graphql-code-generator-community/commit/7df8028191c4b956ef3801816ad56a127221e658)
Thanks [@scottopherson](https://github.com/scottopherson)! - Move `graphql-tag` to
`devDependencies` from `peerDependencies`.

## 4.3.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/plugins/typescript/react-apollo/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-codegen/typescript-react-apollo",
"version": "4.3.0",
"version": "4.3.1",
"type": "module",
"description": "GraphQL Code Generator plugin for generating a ready-to-use React Components/HOC/Hooks based on GraphQL operations",
"repository": {
Expand Down
8 changes: 8 additions & 0 deletions packages/plugins/typescript/vue-urql/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @graphql-codegen/typescript-vue-urql

## 3.2.0

### Minor Changes

- [#801](https://github.com/dotansimha/graphql-code-generator-community/pull/801)
[`6970825`](https://github.com/dotansimha/graphql-code-generator-community/commit/69708250bfd21fb847bf6524e26109efbbace29b)
Thanks [@yurks](https://github.com/yurks)! - Fix types for variables used in a query/subscription

## 3.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/plugins/typescript/vue-urql/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-codegen/typescript-vue-urql",
"version": "3.1.0",
"version": "3.2.0",
"type": "module",
"description": "GraphQL Code Generator plugin for generating ready-to-use Vue-Urql composition functions based on GraphQL operations",
"repository": {
Expand Down

0 comments on commit 3f17088

Please sign in to comment.