mirror of https://github.com/grpc/grpc-web.git
Update references to version 1.3.1 (#1198)
This commit is contained in:
parent
173cb546b7
commit
ce7d734e8a
10
CHANGELOG.md
10
CHANGELOG.md
|
|
@ -1,6 +1,16 @@
|
|||
[//]: # (GENERATED FILE -- DO NOT EDIT!)
|
||||
[//]: # (See scripts/release_notes.py for more details.)
|
||||
|
||||
## 1.3.1
|
||||
|
||||
- [#1184](https://github.com/grpc/grpc-web/pull/1184) Correctly support proto3 optional fields in commonjs+dts .d.ts output @mattnathan
|
||||
- [#1173](https://github.com/grpc/grpc-web/pull/1173) Update envoy version to 1.20
|
||||
- [#1172](https://github.com/grpc/grpc-web/pull/1172) Fix issue where **no RPC is issued when `deadline` is specified.**
|
||||
- [#1167](https://github.com/grpc/grpc-web/pull/1167) Fix missing TypeScript return type for `serverStreaming` calls. @lukasmoellerch
|
||||
- [#1166](https://github.com/grpc/grpc-web/pull/1166) Add missing exports from `RpcError` and add test.
|
||||
- [#1164](https://github.com/grpc/grpc-web/pull/1164) Add missing class exports @tinrab
|
||||
- [#1160](https://github.com/grpc/grpc-web/pull/1160) Expose MethodDescriptor's public methods @tomferreira
|
||||
|
||||
## 1.3.0
|
||||
|
||||
### Major Features
|
||||
|
|
|
|||
|
|
@ -62,7 +62,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.3.0-darwin-x86_64 \
|
||||
$ sudo mv ~/Downloads/protoc-gen-grpc-web-1.3.1-darwin-x86_64 \
|
||||
/usr/local/bin/protoc-gen-grpc-web
|
||||
$ chmod +x /usr/local/bin/protoc-gen-grpc-web
|
||||
```
|
||||
|
|
|
|||
|
|
@ -24,8 +24,8 @@ protoc-3.14.0-linux-x86_64.zip -o protoc.zip && \
|
|||
unzip -qq protoc.zip && \
|
||||
cp ./bin/protoc /usr/local/bin/protoc
|
||||
|
||||
RUN curl -sSL https://github.com/grpc/grpc-web/releases/download/1.3.0/\
|
||||
protoc-gen-grpc-web-1.3.0-linux-x86_64 -o /usr/local/bin/protoc-gen-grpc-web && \
|
||||
RUN curl -sSL https://github.com/grpc/grpc-web/releases/download/1.3.1/\
|
||||
protoc-gen-grpc-web-1.3.1-linux-x86_64 -o /usr/local/bin/protoc-gen-grpc-web && \
|
||||
chmod +x /usr/local/bin/protoc-gen-grpc-web
|
||||
|
||||
WORKDIR /var/www/html/dist
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
"license": "Apache-2.0",
|
||||
"dependencies": {
|
||||
"google-protobuf": "~3.14.0",
|
||||
"grpc-web": "~1.3.0"
|
||||
"grpc-web": "~1.3.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"webpack": "~4.43.0",
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
"@types/jquery": "~3.3.6",
|
||||
"@types/node": "~10.17.0",
|
||||
"google-protobuf": "~3.14.0",
|
||||
"grpc-web": "~1.3.0",
|
||||
"grpc-web": "~1.3.1",
|
||||
"jquery": "~3.5.1",
|
||||
"mock-xmlhttprequest": "~2.0.0",
|
||||
"typescript": "latest",
|
||||
|
|
|
|||
|
|
@ -155,7 +155,7 @@ You will need a `package.json` file
|
|||
"name": "grpc-web-commonjs-example",
|
||||
"dependencies": {
|
||||
"google-protobuf": "~3.14.0",
|
||||
"grpc-web": "~1.3.0"
|
||||
"grpc-web": "~1.3.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"webpack": "~4.43.0",
|
||||
|
|
|
|||
|
|
@ -202,7 +202,7 @@ the `client.js` files.
|
|||
"@grpc/proto-loader": "~0.5.4",
|
||||
"async": "~1.5.2",
|
||||
"google-protobuf": "~3.14.0",
|
||||
"grpc-web": "~1.3.0",
|
||||
"grpc-web": "~1.3.1",
|
||||
"lodash": "~4.17.0",
|
||||
"webpack": "~4.43.0",
|
||||
"webpack-cli": "~3.3.11"
|
||||
|
|
@ -250,7 +250,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.3.0-darwin-x86_64 \
|
||||
> $ sudo mv ~/Downloads/protoc-gen-grpc-web-1.3.1-darwin-x86_64 \
|
||||
> /usr/local/bin/protoc-gen-grpc-web
|
||||
> $ sudo chmod +x /usr/local/bin/protoc-gen-grpc-web
|
||||
> ```
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
"@grpc/proto-loader": "~0.5.4",
|
||||
"async": "~1.5.2",
|
||||
"google-protobuf": "~3.14.0",
|
||||
"grpc-web": "~1.3.0",
|
||||
"grpc-web": "~1.3.1",
|
||||
"lodash": "~4.17.0",
|
||||
"webpack": "~4.43.0",
|
||||
"webpack-cli": "~3.3.11"
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"google-protobuf": "~3.14.0",
|
||||
"grpc-web": "~1.3.0"
|
||||
"grpc-web": "~1.3.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"minimist": "~1.2.5",
|
||||
|
|
|
|||
Loading…
Reference in New Issue