File tree Expand file tree Collapse file tree 9 files changed +34
-10
lines changed
docker/java_interop_server Expand file tree Collapse file tree 9 files changed +34
-10
lines changed Original file line number Diff line number Diff line change 1
1
[ // ] : # ( GENERATED FILE -- DO NOT EDIT! )
2
2
[ // ] : # ( See scripts/release_notes.py for more details. )
3
3
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
+
4
28
## 1.3.1
5
29
6
30
- [ #1184 ] ( https://github.com/grpc/grpc-web/pull/1184 ) Correctly support proto3 optional fields in commonjs+dts .d.ts output @mattnathan
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ Make sure they are both executable and are discoverable from your PATH.
68
68
For example, in MacOS, you can do:
69
69
70
70
```
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 \
72
72
/usr/local/bin/protoc-gen-grpc-web
73
73
$ chmod +x /usr/local/bin/protoc-gen-grpc-web
74
74
```
Original file line number Diff line number Diff line change @@ -24,8 +24,8 @@ protoc-3.14.0-linux-x86_64.zip -o protoc.zip && \
24
24
unzip -qq protoc.zip && \
25
25
cp ./bin/protoc /usr/local/bin/protoc
26
26
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 && \
29
29
chmod +x /usr/local/bin/protoc-gen-grpc-web
30
30
31
31
WORKDIR /var/www/html/dist
Original file line number Diff line number Diff line change 5
5
"license" : " Apache-2.0" ,
6
6
"dependencies" : {
7
7
"google-protobuf" : " ~3.14.0" ,
8
- "grpc-web" : " ~1.3 .1"
8
+ "grpc-web" : " ~1.4 .1"
9
9
},
10
10
"devDependencies" : {
11
11
"webpack" : " ~4.43.0" ,
Original file line number Diff line number Diff line change 4
4
"@types/jquery" : " ~3.3.6" ,
5
5
"@types/node" : " ~10.17.0" ,
6
6
"google-protobuf" : " ~3.14.0" ,
7
- "grpc-web" : " ~1.3 .1" ,
7
+ "grpc-web" : " ~1.4 .1" ,
8
8
"jquery" : " ~3.5.1" ,
9
9
"mock-xmlhttprequest" : " ~2.0.0" ,
10
10
"typescript" : " latest" ,
Original file line number Diff line number Diff line change @@ -169,7 +169,7 @@ You will need a `package.json` file
169
169
"name": "grpc-web-commonjs-example",
170
170
"dependencies": {
171
171
"google-protobuf": "~3.14.0",
172
- "grpc-web": "~1.3 .1"
172
+ "grpc-web": "~1.4 .1"
173
173
},
174
174
"devDependencies": {
175
175
"webpack": "~4.43.0",
Original file line number Diff line number Diff line change @@ -208,7 +208,7 @@ the `client.js` files.
208
208
"@grpc/proto-loader": "~0.5.4",
209
209
"async": "~1.5.2",
210
210
"google-protobuf": "~3.14.0",
211
- "grpc-web": "~1.3 .1",
211
+ "grpc-web": "~1.4 .1",
212
212
"lodash": "~4.17.0",
213
213
"webpack": "~4.43.0",
214
214
"webpack-cli": "~3.3.11"
@@ -256,7 +256,7 @@ To generate the protobuf messages and client service stub class from your
256
256
> For example, in MacOS, you can do:
257
257
>
258
258
> ```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 \
260
260
> /usr/local/bin/protoc-gen-grpc-web
261
261
> $ sudo chmod +x /usr/local/bin/protoc-gen-grpc-web
262
262
> ```
Original file line number Diff line number Diff line change 8
8
"@grpc/proto-loader" : " ~0.5.4" ,
9
9
"async" : " ~3.2.3" ,
10
10
"google-protobuf" : " ~3.14.0" ,
11
- "grpc-web" : " ~1.3 .1" ,
11
+ "grpc-web" : " ~1.4 .1" ,
12
12
"lodash" : " ~4.17.0" ,
13
13
"webpack" : " ~4.43.0" ,
14
14
"webpack-cli" : " ~3.3.11"
Original file line number Diff line number Diff line change 8
8
},
9
9
"dependencies" : {
10
10
"google-protobuf" : " ~3.14.0" ,
11
- "grpc-web" : " ~1.3 .1"
11
+ "grpc-web" : " ~1.4 .1"
12
12
},
13
13
"devDependencies" : {
14
14
"minimist" : " ~1.2.5" ,
You can’t perform that action at this time.
0 commit comments