Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
## 0.13.0
## 0.14.0
### Breaking Changes
* Server: Change websocket lib to nhooyr.io/websocket [@Hellysonrp](https://github.com/Hellysonrp) in [#815](https://github.com/improbable-eng/grpc-web/pull/815)
### Other Changes
* Client & Server: Update TS/JS & Go dependencies [@MarcusLongmuir](https://github.com/MarcusLongmuir) in [#841](https://github.com/improbable-eng/grpc-web/pull/841)
* Client: Fixed fetch abort behaviour for Edge 16+ [@MarcusLongmuir](https://github.com/MarcusLongmuir) in [#819](https://github.com/improbable-eng/grpc-web/pull/819)
* Server: Check flusher before flush [@kostyay](https://github.com/@kostyay) in [#817](https://github.com/improbable-eng/grpc-web/pull/817)
* Server: Websockets test should use case-insensitive header compare [@mgkeeley](https://github.com/@mgkeeley) in [#760](https://github.com/improbable-eng/grpc-web/pull/760)

## 0.13.0
### Breaking Changes
* Client: No longer invoking callbacks within timeouts - this may affect the temporal ordering of some usage. [@marcuslongmuir](https://github.com/marcuslongmuir) in [#576](https://github.com/improbable-eng/grpc-web/pull/576)
### Other Changes
* Server: grpcwebproxy uses `backend_max_call_recv_msg_size` flag value for client call to backend (in addition to its usage as its own receive limit). [@itwalton](https://github.com/itwalton) in [#654](https://github.com/improbable-eng/grpc-web/pull/654)

## 0.12.0
Expand Down
19 changes: 11 additions & 8 deletions client/grpc-web-fake-transport/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion client/grpc-web-fake-transport/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@improbable-eng/grpc-web-fake-transport",
"version": "0.13.0",
"version": "0.14.0",
"description": "Fake Transport for use with @improbable-eng/grpc-web",
"main": "lib/index.js",
"scripts": {
Expand Down
19 changes: 11 additions & 8 deletions client/grpc-web-node-http-transport/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion client/grpc-web-node-http-transport/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@improbable-eng/grpc-web-node-http-transport",
"version": "0.13.0",
"version": "0.14.0",
"description": "Node HTTP Transport for use with @improbable-eng/grpc-web",
"main": "lib/index.js",
"repository": {
Expand Down
34 changes: 32 additions & 2 deletions client/grpc-web-react-example/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion client/grpc-web-react-example/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "grpc-web-react-example",
"version": "0.13.0",
"version": "0.14.0",
"private": true,
"scripts": {
"generate_cert": "cd ../misc ./gen_cert.sh",
Expand Down
19 changes: 11 additions & 8 deletions client/grpc-web-react-native-transport/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion client/grpc-web-react-native-transport/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@improbable-eng/grpc-web-react-native-transport",
"version": "0.13.0",
"version": "0.14.0",
"description": "Transport for use with @improbable-eng/grpc-web that works with React Native.",
"main": "lib/index.js",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion client/grpc-web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@improbable-eng/grpc-web",
"version": "0.13.0",
"version": "0.14.0",
"description": "gRPC-Web client for browsers (JS/TS)",
"main": "dist/grpc-web-client.js",
"browser": "dist/grpc-web-client.umd.js",
Expand Down
6 changes: 3 additions & 3 deletions integration_test/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "grpc-web-integration-test",
"version": "0.13.0",
"version": "0.14.0",
"private": true,
"scripts": {
"clean": "rm -rf ts/build && rm -rf ts/build-node",
Expand All @@ -18,8 +18,8 @@
},
"license": "none",
"dependencies": {
"@improbable-eng/grpc-web": "^0.13.0",
"@improbable-eng/grpc-web-node-http-transport": "^0.13.0",
"@improbable-eng/grpc-web": "^0.14.0",
"@improbable-eng/grpc-web-node-http-transport": "^0.14.0",
"browser-headers": "^0.4.1",
"event-stream": "^4.0.1",
"google-protobuf": "3.14.0",
Expand Down