Skip to content

Commit 9d2e244

Browse files
authored
Post-release updates (1.5.0) (#1384)
1 parent de3557a commit 9d2e244

File tree

8 files changed

+16
-8
lines changed

8 files changed

+16
-8
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
[//]: # (GENERATED FILE -- DO NOT EDIT!)
22
[//]: # (See scripts/release_notes.py for more details.)
33

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

614
- [#1289](https://github.com/grpc/grpc-web/pull/1289) Expose getName() in MethodDescriptor and fix TS definitions.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Make sure they are both executable and are discoverable from your PATH.
6868
For example, in MacOS, you can do:
6969

7070
```
71-
$ sudo mv ~/Downloads/protoc-gen-grpc-web-1.4.2-darwin-x86_64 \
71+
$ sudo mv ~/Downloads/protoc-gen-grpc-web-1.5.0-darwin-x86_64 \
7272
/usr/local/bin/protoc-gen-grpc-web
7373
$ chmod +x /usr/local/bin/protoc-gen-grpc-web
7474
```

net/grpc/gateway/examples/echo/commonjs-example/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"license": "Apache-2.0",
66
"dependencies": {
77
"google-protobuf": "~3.14.0",
8-
"grpc-web": "~1.4.2"
8+
"grpc-web": "~1.5.0"
99
},
1010
"devDependencies": {
1111
"webpack": "~5.82.1",

net/grpc/gateway/examples/echo/ts-example/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"@types/jquery": "~3.3.6",
55
"@types/node": "~10.17.0",
66
"google-protobuf": "~3.14.0",
7-
"grpc-web": "~1.4.2",
7+
"grpc-web": "~1.5.0",
88
"jquery": "~3.5.1",
99
"mock-xmlhttprequest": "~2.0.0",
1010
"typescript": "latest",

net/grpc/gateway/examples/echo/tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ You will need a `package.json` file
169169
"name": "grpc-web-commonjs-example",
170170
"dependencies": {
171171
"google-protobuf": "~3.14.0",
172-
"grpc-web": "~1.4.2"
172+
"grpc-web": "~1.5.0"
173173
},
174174
"devDependencies": {
175175
"webpack": "~5.82.1",

net/grpc/gateway/examples/helloworld/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ the `client.js` files.
208208
"@grpc/proto-loader": "~0.5.4",
209209
"async": "~1.5.2",
210210
"google-protobuf": "~3.14.0",
211-
"grpc-web": "~1.4.2",
211+
"grpc-web": "~1.5.0",
212212
"lodash": "~4.17.0",
213213
"webpack": "~5.82.1",
214214
"webpack-cli": "~5.1.1"
@@ -256,7 +256,7 @@ To generate the protobuf messages and client service stub class from your
256256
> For example, in MacOS, you can do:
257257
>
258258
> ```sh
259-
> $ sudo mv ~/Downloads/protoc-gen-grpc-web-1.4.2-darwin-x86_64 \
259+
> $ sudo mv ~/Downloads/protoc-gen-grpc-web-1.5.0-darwin-x86_64 \
260260
> /usr/local/bin/protoc-gen-grpc-web
261261
> $ sudo chmod +x /usr/local/bin/protoc-gen-grpc-web
262262
> ```

net/grpc/gateway/examples/helloworld/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"@grpc/proto-loader": "~0.5.4",
99
"async": "~3.2.3",
1010
"google-protobuf": "~3.14.0",
11-
"grpc-web": "~1.4.2",
11+
"grpc-web": "~1.5.0",
1212
"lodash": "~4.17.0",
1313
"webpack": "~5.82.1",
1414
"webpack-cli": "~5.1.1"

test/interop/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
},
99
"dependencies": {
1010
"google-protobuf": "~3.14.0",
11-
"grpc-web": "~1.4.2"
11+
"grpc-web": "~1.5.0"
1212
},
1313
"devDependencies": {
1414
"assert": "^2.0.0",

0 commit comments

Comments
 (0)