Skip to content

Commit 3f17088

Browse files
chore(release): update monorepo packages versions (#834)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 56e5a00 commit 3f17088

File tree

15 files changed

+93
-39
lines changed

15 files changed

+93
-39
lines changed

.changeset/eight-pandas-vanish.md

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

.changeset/few-apes-march.md

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

.changeset/quick-insects-matter.md

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

.changeset/smooth-timers-peel.md

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

.changeset/strong-turkeys-sneeze.md

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

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

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

3+
## 1.1.0
4+
5+
### Minor Changes
6+
7+
- [#816](https://github.com/dotansimha/graphql-code-generator-community/pull/816)
8+
[`b1ec118`](https://github.com/dotansimha/graphql-code-generator-community/commit/b1ec1187507089362301b874546bf08dd4c8aec3)
9+
Thanks [@mariusmuntean](https://github.com/mariusmuntean)! - Added support for the new
10+
configuration option `memberNameConvention` to the c-sharp-operations plugin. Now both C# plugins
11+
can generate C# code with standard member casing. The default is still camel case, to avoid
12+
generating code that breaks user's existing code base.
13+
14+
### Patch Changes
15+
16+
- [#820](https://github.com/dotansimha/graphql-code-generator-community/pull/820)
17+
[`581e733`](https://github.com/dotansimha/graphql-code-generator-community/commit/581e733d6ede02261f89c332c1e3fd4621d34ddc)
18+
Thanks [@mariusmuntean](https://github.com/mariusmuntean)! - upgrade dependencies and fix type
19+
errors
20+
321
## 1.0.0
422

523
### Major Changes

packages/plugins/c-sharp/c-sharp-common/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/c-sharp-common",
3-
"version": "1.0.0",
3+
"version": "1.1.0",
44
"type": "module",
55
"repository": "[email protected]:dotansimha/graphql-code-generator.git",
66
"license": "MIT",

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

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

3+
## 3.1.0
4+
5+
### Minor Changes
6+
7+
- [#816](https://github.com/dotansimha/graphql-code-generator-community/pull/816)
8+
[`b1ec118`](https://github.com/dotansimha/graphql-code-generator-community/commit/b1ec1187507089362301b874546bf08dd4c8aec3)
9+
Thanks [@mariusmuntean](https://github.com/mariusmuntean)! - Added support for the new
10+
configuration option `memberNameConvention` to the c-sharp-operations plugin. Now both C# plugins
11+
can generate C# code with standard member casing. The default is still camel case, to avoid
12+
generating code that breaks user's existing code base.
13+
14+
### Patch Changes
15+
16+
- [#820](https://github.com/dotansimha/graphql-code-generator-community/pull/820)
17+
[`581e733`](https://github.com/dotansimha/graphql-code-generator-community/commit/581e733d6ede02261f89c332c1e3fd4621d34ddc)
18+
Thanks [@mariusmuntean](https://github.com/mariusmuntean)! - upgrade dependencies and fix type
19+
errors
20+
21+
- Updated dependencies
22+
[[`581e733`](https://github.com/dotansimha/graphql-code-generator-community/commit/581e733d6ede02261f89c332c1e3fd4621d34ddc),
23+
[`b1ec118`](https://github.com/dotansimha/graphql-code-generator-community/commit/b1ec1187507089362301b874546bf08dd4c8aec3)]:
24+
- @graphql-codegen/c-sharp-common@1.1.0
25+
326
## 3.0.0
427

528
### Major Changes

packages/plugins/c-sharp/c-sharp-operations/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/c-sharp-operations",
3-
"version": "3.0.0",
3+
"version": "3.1.0",
44
"type": "module",
55
"description": "GraphQL Code Generator plugin for generating CSharp code based on GraphQL operations",
66
"repository": "[email protected]:dotansimha/graphql-code-generator.git",
@@ -37,7 +37,7 @@
3737
"graphql-tag": "2.12.6"
3838
},
3939
"dependencies": {
40-
"@graphql-codegen/c-sharp-common": "1.0.0",
40+
"@graphql-codegen/c-sharp-common": "1.1.0",
4141
"@graphql-codegen/plugin-helpers": "5.0.4",
4242
"@graphql-codegen/visitor-plugin-common": "^5.3.1",
4343
"auto-bind": "~4.0.0",

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

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

3+
## 5.1.0
4+
5+
### Minor Changes
6+
7+
- [#816](https://github.com/dotansimha/graphql-code-generator-community/pull/816)
8+
[`b1ec118`](https://github.com/dotansimha/graphql-code-generator-community/commit/b1ec1187507089362301b874546bf08dd4c8aec3)
9+
Thanks [@mariusmuntean](https://github.com/mariusmuntean)! - Added support for the new
10+
configuration option `memberNameConvention` to the c-sharp-operations plugin. Now both C# plugins
11+
can generate C# code with standard member casing. The default is still camel case, to avoid
12+
generating code that breaks user's existing code base.
13+
14+
- [#806](https://github.com/dotansimha/graphql-code-generator-community/pull/806)
15+
[`d1d6d6e`](https://github.com/dotansimha/graphql-code-generator-community/commit/d1d6d6e2cc06b547ff132514ab3e697517438179)
16+
Thanks [@mariusmuntean](https://github.com/mariusmuntean)! - Added `memberNameConvention` which
17+
allows you to customize the naming convention for interface/class/record members.
18+
19+
### Patch Changes
20+
21+
- [#820](https://github.com/dotansimha/graphql-code-generator-community/pull/820)
22+
[`581e733`](https://github.com/dotansimha/graphql-code-generator-community/commit/581e733d6ede02261f89c332c1e3fd4621d34ddc)
23+
Thanks [@mariusmuntean](https://github.com/mariusmuntean)! - upgrade dependencies and fix type
24+
errors
25+
26+
- Updated dependencies
27+
[[`581e733`](https://github.com/dotansimha/graphql-code-generator-community/commit/581e733d6ede02261f89c332c1e3fd4621d34ddc),
28+
[`b1ec118`](https://github.com/dotansimha/graphql-code-generator-community/commit/b1ec1187507089362301b874546bf08dd4c8aec3)]:
29+
- @graphql-codegen/c-sharp-common@1.1.0
30+
331
## 5.0.0
432

533
### Major Changes

0 commit comments

Comments
 (0)