Skip to content

Commit

Permalink
Post-release updates (1.5.0) (grpc#1384)
Browse files Browse the repository at this point in the history
  • Loading branch information
sampajano authored Nov 9, 2023
1 parent de3557a commit 9d2e244
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 8 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
[//]: # (GENERATED FILE -- DO NOT EDIT!)
[//]: # (See scripts/release_notes.py for more details.)

## 1.5.0

- [#1369](https://github.com/grpc/grpc-web/pull/1369) (Typescript) Mark some `metadata` parameters as optional @andrewmbenton
- [#1335](https://github.com/grpc/grpc-web/pull/1335) Update Debian (and other deps) and remove Java In-process Proxy
- [#1334](https://github.com/grpc/grpc-web/pull/1334) Allow mixed-case headers
- [#1330](https://github.com/grpc/grpc-web/pull/1330) Update ES6 .d.ts imports with comment about corresponding proto import... @gonzojive
- [#1313](https://github.com/grpc/grpc-web/pull/1313) Update ES6 imports with comment about corresponding proto import path. @reddaly

## 1.4.2

- [#1289](https://github.com/grpc/grpc-web/pull/1289) Expose getName() in MethodDescriptor and fix TS definitions.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Make sure they are both executable and are discoverable from your PATH.
For example, in MacOS, you can do:

```
$ sudo mv ~/Downloads/protoc-gen-grpc-web-1.4.2-darwin-x86_64 \
$ sudo mv ~/Downloads/protoc-gen-grpc-web-1.5.0-darwin-x86_64 \
/usr/local/bin/protoc-gen-grpc-web
$ chmod +x /usr/local/bin/protoc-gen-grpc-web
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"license": "Apache-2.0",
"dependencies": {
"google-protobuf": "~3.14.0",
"grpc-web": "~1.4.2"
"grpc-web": "~1.5.0"
},
"devDependencies": {
"webpack": "~5.82.1",
Expand Down
2 changes: 1 addition & 1 deletion net/grpc/gateway/examples/echo/ts-example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"@types/jquery": "~3.3.6",
"@types/node": "~10.17.0",
"google-protobuf": "~3.14.0",
"grpc-web": "~1.4.2",
"grpc-web": "~1.5.0",
"jquery": "~3.5.1",
"mock-xmlhttprequest": "~2.0.0",
"typescript": "latest",
Expand Down
2 changes: 1 addition & 1 deletion net/grpc/gateway/examples/echo/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ You will need a `package.json` file
"name": "grpc-web-commonjs-example",
"dependencies": {
"google-protobuf": "~3.14.0",
"grpc-web": "~1.4.2"
"grpc-web": "~1.5.0"
},
"devDependencies": {
"webpack": "~5.82.1",
Expand Down
4 changes: 2 additions & 2 deletions net/grpc/gateway/examples/helloworld/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ the `client.js` files.
"@grpc/proto-loader": "~0.5.4",
"async": "~1.5.2",
"google-protobuf": "~3.14.0",
"grpc-web": "~1.4.2",
"grpc-web": "~1.5.0",
"lodash": "~4.17.0",
"webpack": "~5.82.1",
"webpack-cli": "~5.1.1"
Expand Down Expand Up @@ -256,7 +256,7 @@ To generate the protobuf messages and client service stub class from your
> For example, in MacOS, you can do:
>
> ```sh
> $ sudo mv ~/Downloads/protoc-gen-grpc-web-1.4.2-darwin-x86_64 \
> $ sudo mv ~/Downloads/protoc-gen-grpc-web-1.5.0-darwin-x86_64 \
> /usr/local/bin/protoc-gen-grpc-web
> $ sudo chmod +x /usr/local/bin/protoc-gen-grpc-web
> ```
Expand Down
2 changes: 1 addition & 1 deletion net/grpc/gateway/examples/helloworld/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"@grpc/proto-loader": "~0.5.4",
"async": "~3.2.3",
"google-protobuf": "~3.14.0",
"grpc-web": "~1.4.2",
"grpc-web": "~1.5.0",
"lodash": "~4.17.0",
"webpack": "~5.82.1",
"webpack-cli": "~5.1.1"
Expand Down
2 changes: 1 addition & 1 deletion test/interop/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"dependencies": {
"google-protobuf": "~3.14.0",
"grpc-web": "~1.4.2"
"grpc-web": "~1.5.0"
},
"devDependencies": {
"assert": "^2.0.0",
Expand Down

0 comments on commit 9d2e244

Please sign in to comment.