Skip to content

Commit d9d7475

Browse files
Version Packages (#418)
This PR was opened by the [Changesets release](https://github.com/changesets/action) GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated. # Releases ## @proto-graphql/[email protected] ### Patch Changes - [#417](#417) [`2ae48d1`](2ae48d1) Thanks [@izumin5210](https://github.com/izumin5210)! - use protobuf-es@v2 internally - [#428](#428) [`e3cee38`](e3cee38) Thanks [@izumin5210](https://github.com/izumin5210)! - refactor: migrate protoc plugins to ESM ## @proto-graphql/[email protected] ### Patch Changes - [#417](#417) [`2ae48d1`](2ae48d1) Thanks [@izumin5210](https://github.com/izumin5210)! - use protobuf-es@v2 internally - [#427](#427) [`c681582`](c681582) Thanks [@izumin5210](https://github.com/izumin5210)! - refactor: parse options with protoplugin api - [#428](#428) [`e3cee38`](e3cee38) Thanks [@izumin5210](https://github.com/izumin5210)! - refactor: migrate protoc plugins to ESM - Updated dependencies \[[`2ae48d1`](2ae48d1), [`e3cee38`](e3cee38)]: - @proto-graphql/[email protected] ## @proto-graphql/[email protected] ### Patch Changes - [#428](#428) [`e3cee38`](e3cee38) Thanks [@izumin5210](https://github.com/izumin5210)! - refactor: migrate protoc plugins to ESM ## @proto-nexus/[email protected] ### Patch Changes - [#417](#417) [`2ae48d1`](2ae48d1) Thanks [@izumin5210](https://github.com/izumin5210)! - use protobuf-es@v2 internally ## [email protected] ### Patch Changes - [#417](#417) [`2ae48d1`](2ae48d1) Thanks [@izumin5210](https://github.com/izumin5210)! - use protobuf-es@v2 internally - [#427](#427) [`c681582`](c681582) Thanks [@izumin5210](https://github.com/izumin5210)! - refactor: parse options with protoplugin api - [#428](#428) [`e3cee38`](e3cee38) Thanks [@izumin5210](https://github.com/izumin5210)! - refactor: migrate protoc plugins to ESM - Updated dependencies \[[`2ae48d1`](2ae48d1), [`c681582`](c681582), [`e3cee38`](e3cee38)]: - @proto-graphql/[email protected] - @proto-graphql/[email protected] ## [email protected] ### Patch Changes - [#417](#417) [`2ae48d1`](2ae48d1) Thanks [@izumin5210](https://github.com/izumin5210)! - use protobuf-es@v2 internally - [#438](#438) [`bd49e47`](bd49e47) Thanks [@izumin5210](https://github.com/izumin5210)! - fix object null check on `toProto` func - [#427](#427) [`c681582`](c681582) Thanks [@izumin5210](https://github.com/izumin5210)! - refactor: parse options with protoplugin api - [#428](#428) [`e3cee38`](e3cee38) Thanks [@izumin5210](https://github.com/izumin5210)! - refactor: migrate protoc plugins to ESM - Updated dependencies \[[`2ae48d1`](2ae48d1), [`c681582`](c681582), [`e3cee38`](e3cee38)]: - @proto-graphql/[email protected] - @proto-graphql/[email protected] Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent bd49e47 commit d9d7475

File tree

17 files changed

+148
-50
lines changed

17 files changed

+148
-50
lines changed

.changeset/funny-rats-confess.md

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

.changeset/itchy-bags-cough.md

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

.changeset/popular-hotels-taste.md

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

.changeset/quick-tips-mix.md

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

.changeset/wise-stingrays-leave.md

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

packages/@proto-graphql/codegen-core/CHANGELOG.md

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

3+
## 0.5.2
4+
5+
### Patch Changes
6+
7+
- [#417](https://github.com/proto-graphql/proto-graphql-js/pull/417) [`2ae48d1`](https://github.com/proto-graphql/proto-graphql-js/commit/2ae48d1576a15a47f3f1083fb78eec69507d601a) Thanks [@izumin5210](https://github.com/izumin5210)! - use protobuf-es@v2 internally
8+
9+
- [#428](https://github.com/proto-graphql/proto-graphql-js/pull/428) [`e3cee38`](https://github.com/proto-graphql/proto-graphql-js/commit/e3cee38438fbb4c0fbd177566aa75e83e11221ed) Thanks [@izumin5210](https://github.com/izumin5210)! - refactor: migrate protoc plugins to ESM
10+
311
## 0.5.1
412

513
### Patch Changes

packages/@proto-graphql/codegen-core/package.json

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
{
22
"name": "@proto-graphql/codegen-core",
3-
"version": "0.5.1",
3+
"version": "0.5.2",
44
"description": "",
5-
"keywords": ["graphql", "grpc", "nexus", "protobuf", "typescript"],
5+
"keywords": [
6+
"graphql",
7+
"grpc",
8+
"nexus",
9+
"protobuf",
10+
"typescript"
11+
],
612
"repository": "[email protected]:proto-graphql/proto-graphql-js.git",
713
"author": "izumin5210 <[email protected]>",
814
"license": "MIT",
@@ -22,7 +28,12 @@
2228
}
2329
}
2430
},
25-
"files": ["src/", "dist/", "!src/**/*.test.ts", "!src/**/__tests__/"],
31+
"files": [
32+
"src/",
33+
"dist/",
34+
"!src/**/*.test.ts",
35+
"!src/**/__tests__/"
36+
],
2637
"sideEffects": false,
2738
"private": false,
2839
"publishConfig": {

packages/@proto-graphql/protoc-plugin-helpers/CHANGELOG.md

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

3+
## 0.4.2
4+
5+
### Patch Changes
6+
7+
- [#417](https://github.com/proto-graphql/proto-graphql-js/pull/417) [`2ae48d1`](https://github.com/proto-graphql/proto-graphql-js/commit/2ae48d1576a15a47f3f1083fb78eec69507d601a) Thanks [@izumin5210](https://github.com/izumin5210)! - use protobuf-es@v2 internally
8+
9+
- [#427](https://github.com/proto-graphql/proto-graphql-js/pull/427) [`c681582`](https://github.com/proto-graphql/proto-graphql-js/commit/c681582431637946cebdaa82b9559bb5ab52b760) Thanks [@izumin5210](https://github.com/izumin5210)! - refactor: parse options with protoplugin api
10+
11+
- [#428](https://github.com/proto-graphql/proto-graphql-js/pull/428) [`e3cee38`](https://github.com/proto-graphql/proto-graphql-js/commit/e3cee38438fbb4c0fbd177566aa75e83e11221ed) Thanks [@izumin5210](https://github.com/izumin5210)! - refactor: migrate protoc plugins to ESM
12+
13+
- Updated dependencies [[`2ae48d1`](https://github.com/proto-graphql/proto-graphql-js/commit/2ae48d1576a15a47f3f1083fb78eec69507d601a), [`e3cee38`](https://github.com/proto-graphql/proto-graphql-js/commit/e3cee38438fbb4c0fbd177566aa75e83e11221ed)]:
14+
- @proto-graphql/codegen-core@0.5.2
15+
316
## 0.4.1
417

518
### Patch Changes

packages/@proto-graphql/protoc-plugin-helpers/package.json

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
{
22
"name": "@proto-graphql/protoc-plugin-helpers",
3-
"version": "0.4.1",
3+
"version": "0.4.2",
44
"description": "",
5-
"keywords": ["graphql", "grpc", "nexus", "protobuf", "typescript"],
5+
"keywords": [
6+
"graphql",
7+
"grpc",
8+
"nexus",
9+
"protobuf",
10+
"typescript"
11+
],
612
"repository": "[email protected]:proto-graphql/proto-graphql-js.git",
713
"author": "izumin5210 <[email protected]>",
814
"license": "MIT",
@@ -22,7 +28,12 @@
2228
}
2329
}
2430
},
25-
"files": ["src/", "dist/", "!src/**/*.test.ts", "!src/**/__tests__/"],
31+
"files": [
32+
"src/",
33+
"dist/",
34+
"!src/**/*.test.ts",
35+
"!src/**/__tests__/"
36+
],
2637
"sideEffects": false,
2738
"private": false,
2839
"publishConfig": {

packages/@proto-graphql/scalars-protobuf-es/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @proto-graphql/scalars-protobuf-es
22

3+
## 0.4.2
4+
5+
### Patch Changes
6+
7+
- [#428](https://github.com/proto-graphql/proto-graphql-js/pull/428) [`e3cee38`](https://github.com/proto-graphql/proto-graphql-js/commit/e3cee38438fbb4c0fbd177566aa75e83e11221ed) Thanks [@izumin5210](https://github.com/izumin5210)! - refactor: migrate protoc plugins to ESM
8+
39
## 0.4.1
410

511
### Patch Changes

0 commit comments

Comments
 (0)