Skip to content

Commit

Permalink
Merge branch 'main' into SEC-39
Browse files Browse the repository at this point in the history
  • Loading branch information
jr22 committed Sep 24, 2024
2 parents 02ea251 + 740bd5d commit 76ad87e
Show file tree
Hide file tree
Showing 44 changed files with 6,474 additions and 1,568 deletions.
1 change: 1 addition & 0 deletions buf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ build:
excludes:
- node_modules
- rpc/examples/echo/frontend/node_modules
- rpc/examples/echo/node-client/node_modules
- rpc/examples/fileupload/frontend/node_modules
- rpc/js/node_modules
- vendor
Expand Down
15 changes: 4 additions & 11 deletions etc/buf.web.gen.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,8 @@
version: v1
managed:
enabled: true
plugins:
- name: js
- plugin: buf.build/connectrpc/es:v1.5.0
out: dist/js
opt:
- import_style=commonjs
- name: grpc-web
- plugin: buf.build/bufbuild/es:v1.10.0
out: dist/js
opt:
- import_style=commonjs
- mode=grpcwebtext
- name: ts
out: dist/js
opt:
- service=grpc-web
14 changes: 7 additions & 7 deletions proto/rpc/examples/fileupload/v1/fileupload.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

43 changes: 22 additions & 21 deletions proto/rpc/examples/fileupload/v1/fileupload.pb.gw.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 1 addition & 3 deletions proto/rpc/examples/fileupload/v1/fileupload.proto
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,5 @@ message UploadFileResponse {
}

service FileUploadService {
// Due to an issue described by https://github.com/improbable-eng/ts-protoc-gen/pull/264
// we use a streaming response but only expect one response.
rpc UploadFile(stream UploadFileRequest) returns (stream UploadFileResponse) {}
rpc UploadFile(stream UploadFileRequest) returns (UploadFileResponse) {}
}
16 changes: 7 additions & 9 deletions proto/rpc/examples/fileupload/v1/fileupload_grpc.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions rpc/examples/echo/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ test-run-server: build install-playwright
run-client:
go run client/main.go -host=echo-server

run-node-client:
cd node-client && npm start

setup-auth:
cd ${ROOT_DIR} && make setup-cert setup-priv-key

Expand Down
Loading

0 comments on commit 76ad87e

Please sign in to comment.