mirror of https://github.com/grpc/grpc-web.git
Update references to 1.2.0
This commit is contained in:
parent
a8416b5e7a
commit
0d747ec02c
21
CHANGELOG.md
21
CHANGELOG.md
|
@ -1,6 +1,27 @@
|
|||
[//]: # (GENERATED FILE -- DO NOT EDIT!)
|
||||
[//]: # (See scripts/release_notes.py for more details.)
|
||||
|
||||
## 1.2.0
|
||||
|
||||
### Major Features
|
||||
|
||||
- [#847](https://github.com/grpc/grpc-web/pull/847) Allow multiple .on() callbacks and fix issue with non-OK status
|
||||
|
||||
### Other Changes
|
||||
|
||||
- [#859](https://github.com/grpc/grpc-web/pull/859) Fix envoy.yaml deprecated fields [@dmaixner](https://github.com/dmaixner)
|
||||
- [#858](https://github.com/grpc/grpc-web/pull/858) Refactor error handling in grpcwebclientbase
|
||||
- [#857](https://github.com/grpc/grpc-web/pull/857) Migrate to ES6 classes
|
||||
- [#852](https://github.com/grpc/grpc-web/pull/852) Update to use @grpc/grpc-js node package, and update helloworld exampl...
|
||||
- [#851](https://github.com/grpc/grpc-web/pull/851) Add a ThenableCall base class for the promise-based unaryCall function [@Jennnnny](https://github.com/Jennnnny)
|
||||
- [#844](https://github.com/grpc/grpc-web/pull/844) Fix code generator bug and add tests
|
||||
- [#833](https://github.com/grpc/grpc-web/pull/833) Add proper author attribution to release notes / changelog
|
||||
- [#827](https://github.com/grpc/grpc-web/pull/827) Splitting callback based client and Promise based client into multiple... [@Jennnnny](https://github.com/Jennnnny)
|
||||
- [#822](https://github.com/grpc/grpc-web/pull/822) use explicit envoy release tag [@xsbchen](https://github.com/xsbchen)
|
||||
- [#821](https://github.com/grpc/grpc-web/pull/821) Experimental Feature: Add ES6 import style [@Yannic](https://github.com/Yannic)
|
||||
- [#738](https://github.com/grpc/grpc-web/pull/738) Avoid double slash in url when client hostname has tailing slash [@hanabi1224](https://github.com/hanabi1224)
|
||||
|
||||
|
||||
## 1.1.0
|
||||
|
||||
### Major Features
|
||||
|
|
|
@ -59,7 +59,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.1.0-darwin-x86_64 \
|
||||
$ sudo mv ~/Downloads/protoc-gen-grpc-web-1.2.0-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.12.2-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.1.0/\
|
||||
protoc-gen-grpc-web-1.1.0-linux-x86_64 -o /usr/local/bin/protoc-gen-grpc-web && \
|
||||
RUN curl -sSL https://github.com/grpc/grpc-web/releases/download/1.2.0/\
|
||||
protoc-gen-grpc-web-1.2.0-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.12.0",
|
||||
"grpc-web": "~1.1.0"
|
||||
"grpc-web": "~1.2.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"webpack": "~4.43.0",
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
"@types/jquery": "~3.3.6",
|
||||
"@types/node": "~10.17.0",
|
||||
"google-protobuf": "~3.12.0",
|
||||
"grpc-web": "~1.1.0",
|
||||
"grpc-web": "~1.2.0",
|
||||
"jquery": "~3.5.1",
|
||||
"mock-xmlhttprequest": "~2.0.0",
|
||||
"webpack": "~4.43.0",
|
||||
|
|
|
@ -155,7 +155,7 @@ You will need a `package.json` file
|
|||
"name": "grpc-web-commonjs-example",
|
||||
"dependencies": {
|
||||
"google-protobuf": "~3.12.0",
|
||||
"grpc-web": "~1.1.0"
|
||||
"grpc-web": "~1.2.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"webpack": "~4.43.0",
|
||||
|
|
|
@ -189,7 +189,7 @@ the `client.js` files.
|
|||
"@grpc/proto-loader": "~0.5.4",
|
||||
"async": "~1.5.2",
|
||||
"google-protobuf": "~3.12.0",
|
||||
"grpc-web": "~1.1.0",
|
||||
"grpc-web": "~1.2.0",
|
||||
"lodash": "~4.17.0",
|
||||
"webpack": "~4.43.0",
|
||||
"webpack-cli": "~3.3.11"
|
||||
|
@ -237,7 +237,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.1.0-darwin-x86_64 \
|
||||
> $ sudo mv ~/Downloads/protoc-gen-grpc-web-1.2.0-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.12.0",
|
||||
"grpc-web": "~1.1.0",
|
||||
"grpc-web": "~1.2.0",
|
||||
"lodash": "~4.17.0",
|
||||
"webpack": "~4.43.0",
|
||||
"webpack-cli": "~3.3.11"
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"google-protobuf": "~3.12.0",
|
||||
"grpc-web": "~1.1.0"
|
||||
"grpc-web": "~1.2.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"minimist": "~1.2.5",
|
||||
|
|
Loading…
Reference in New Issue