Skip to content

Commit

Permalink
Preparing for v0.13.0 release (#722)
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcusLongmuir committed Jul 13, 2020
1 parent 279e296 commit 7b39f93
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 22 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,8 @@
## 0.13.0
### Other 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)
* 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
### Other Changes
* Server: Add option to enabled websocket keepalive pinging. [@angwangiot](https://github.com/angwangiot) in [#546](https://github.com/improbable-eng/grpc-web/pull/546)
Expand Down
4 changes: 2 additions & 2 deletions client/grpc-web-fake-transport/package.json
@@ -1,6 +1,6 @@
{
"name": "@improbable-eng/grpc-web-fake-transport",
"version": "0.12.0",
"version": "0.13.0",
"description": "Fake Transport for use with @improbable-eng/grpc-web",
"main": "lib/index.js",
"scripts": {
Expand All @@ -19,7 +19,7 @@
"google-protobuf": ">=3.7.1"
},
"devDependencies": {
"@improbable-eng/grpc-web": "^0.12.0",
"@improbable-eng/grpc-web": "^0.13.0",
"@types/google-protobuf": "^3.2.7",
"@types/jest": "^24.0.11",
"@types/lodash.assignin": "^4.2.6",
Expand Down
4 changes: 2 additions & 2 deletions client/grpc-web-node-http-transport/package.json
@@ -1,6 +1,6 @@
{
"name": "@improbable-eng/grpc-web-node-http-transport",
"version": "0.12.0",
"version": "0.13.0",
"description": "Node HTTP Transport for use with @improbable-eng/grpc-web",
"main": "lib/index.js",
"repository": {
Expand All @@ -21,7 +21,7 @@
"@improbable-eng/grpc-web": ">=0.7.0"
},
"devDependencies": {
"@improbable-eng/grpc-web": "^0.12.0",
"@improbable-eng/grpc-web": "^0.13.0",
"@types/node": "^10.12.0",
"google-protobuf": "^3.2.0",
"typescript": "^3.1.3"
Expand Down
4 changes: 2 additions & 2 deletions client/grpc-web-react-example/package.json
@@ -1,6 +1,6 @@
{
"name": "grpc-web-react-example",
"version": "0.12.0",
"version": "0.13.0",
"private": true,
"scripts": {
"generate_cert": "cd ../misc ./gen_cert.sh",
Expand All @@ -14,7 +14,7 @@
},
"license": "none",
"dependencies": {
"@improbable-eng/grpc-web": "^0.12.0",
"@improbable-eng/grpc-web": "^0.13.0",
"google-protobuf": "^3.6.1"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions client/grpc-web-react-native-transport/package.json
@@ -1,6 +1,6 @@
{
"name": "@improbable-eng/grpc-web-react-native-transport",
"version": "0.12.0",
"version": "0.13.0",
"description": "Transport for use with @improbable-eng/grpc-web that works with React Native.",
"main": "lib/index.js",
"repository": {
Expand All @@ -21,7 +21,7 @@
"@improbable-eng/grpc-web": ">=0.7.0"
},
"devDependencies": {
"@improbable-eng/grpc-web": "^0.12.0",
"@improbable-eng/grpc-web": "^0.13.0",
"google-protobuf": "^3.2.0",
"typescript": "^3.1.3"
}
Expand Down
2 changes: 1 addition & 1 deletion client/grpc-web/package.json
@@ -1,6 +1,6 @@
{
"name": "@improbable-eng/grpc-web",
"version": "0.12.0",
"version": "0.13.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
@@ -1,6 +1,6 @@
{
"name": "grpc-web-integration-test",
"version": "0.12.0",
"version": "0.13.0",
"private": true,
"scripts": {
"clean": "rm -rf ts/build && rm -rf ts/build-node",
Expand All @@ -19,8 +19,8 @@
},
"license": "none",
"dependencies": {
"@improbable-eng/grpc-web": "^0.12.0",
"@improbable-eng/grpc-web-node-http-transport": "^0.12.0",
"@improbable-eng/grpc-web": "^0.13.0",
"@improbable-eng/grpc-web-node-http-transport": "^0.13.0",
"browser-headers": "^0.4.0",
"event-stream": "^4.0.1",
"google-protobuf": "3.11.0",
Expand Down
20 changes: 10 additions & 10 deletions package-lock.json

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

0 comments on commit 7b39f93

Please sign in to comment.