Skip to content

Commit b0ea9c7

Browse files
authored
1.4.1 Post-release updates (incl. release notes) (#1290)
1 parent 4974a7b commit b0ea9c7

File tree

9 files changed

+34
-10
lines changed

9 files changed

+34
-10
lines changed

CHANGELOG.md

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

4+
## 1.4.1
5+
6+
- [#1286](https://github.com/grpc/grpc-web/pull/1286) Fix duplicate dot in enum name (when "package" is specified)
7+
8+
## 1.4.0
9+
10+
### Major Features
11+
12+
- [#1249](https://github.com/grpc/grpc-web/pull/1249) Use Zig to build aarch64 binaries @hronro
13+
- [#1203](https://github.com/grpc/grpc-web/pull/1203) Github Actions (workflows) for building `protoc-gen-grpc-web` plugins
14+
15+
### Other Changes
16+
17+
- [#1279](https://github.com/grpc/grpc-web/pull/1279) Fixes the status codes ordering in typescript definitions @chandraaditya
18+
- [#1278](https://github.com/grpc/grpc-web/pull/1278) Fix Enum with module in generated TS interface.
19+
- [#1254](https://github.com/grpc/grpc-web/pull/1254) Remove Trailing Slashes from Hostname @jkjk822
20+
- [#1252](https://github.com/grpc/grpc-web/pull/1252) Fix Zig setup step in CI @hronro
21+
- [#1231](https://github.com/grpc/grpc-web/pull/1231) Add version flag and version info in generated code @meling
22+
- [#1225](https://github.com/grpc/grpc-web/pull/1225) Improve error message & Internal code sync
23+
- [#1222](https://github.com/grpc/grpc-web/pull/1222) Update envoy version to 1.22 (with config updates) @tomk9
24+
- [#1211](https://github.com/grpc/grpc-web/pull/1211) Upgrade protobuf and grpc deps @aapeliv
25+
- [#1199](https://github.com/grpc/grpc-web/pull/1199) Revert "Expose MethodDescriptor's public methods"
26+
27+
428
## 1.3.1
529

630
- [#1184](https://github.com/grpc/grpc-web/pull/1184) Correctly support proto3 optional fields in commonjs+dts .d.ts output @mattnathan

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.3.1-darwin-x86_64 \
71+
$ sudo mv ~/Downloads/protoc-gen-grpc-web-1.4.1-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/docker/java_interop_server/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ protoc-3.14.0-linux-x86_64.zip -o protoc.zip && \
2424
unzip -qq protoc.zip && \
2525
cp ./bin/protoc /usr/local/bin/protoc
2626

27-
RUN curl -sSL https://github.com/grpc/grpc-web/releases/download/1.3.1/\
28-
protoc-gen-grpc-web-1.3.1-linux-x86_64 -o /usr/local/bin/protoc-gen-grpc-web && \
27+
RUN curl -sSL https://github.com/grpc/grpc-web/releases/download/1.4.1/\
28+
protoc-gen-grpc-web-1.4.1-linux-x86_64 -o /usr/local/bin/protoc-gen-grpc-web && \
2929
chmod +x /usr/local/bin/protoc-gen-grpc-web
3030

3131
WORKDIR /var/www/html/dist

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.3.1"
8+
"grpc-web": "~1.4.1"
99
},
1010
"devDependencies": {
1111
"webpack": "~4.43.0",

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.3.1",
7+
"grpc-web": "~1.4.1",
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.3.1"
172+
"grpc-web": "~1.4.1"
173173
},
174174
"devDependencies": {
175175
"webpack": "~4.43.0",

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.3.1",
211+
"grpc-web": "~1.4.1",
212212
"lodash": "~4.17.0",
213213
"webpack": "~4.43.0",
214214
"webpack-cli": "~3.3.11"
@@ -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.3.1-darwin-x86_64 \
259+
> $ sudo mv ~/Downloads/protoc-gen-grpc-web-1.4.1-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.3.1",
11+
"grpc-web": "~1.4.1",
1212
"lodash": "~4.17.0",
1313
"webpack": "~4.43.0",
1414
"webpack-cli": "~3.3.11"

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.3.1"
11+
"grpc-web": "~1.4.1"
1212
},
1313
"devDependencies": {
1414
"minimist": "~1.2.5",

0 commit comments

Comments
 (0)