Skip to content

Commit f077328

Browse files
authored
Fix web and prepare to publish 4.0.2
1 parent ebc838b commit f077328

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

CHANGELOG.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 4.0.2-wip
1+
## 4.0.2
22

33
* Internal optimization to client code.
44
* Small fixes, such as ports in testing and enabling `timeline_test.dart`.
@@ -7,7 +7,8 @@
77
* Upgrade to `package:lints` version 5.0.0 and Dart SDK version 3.5.0.
88
* Upgrade `example/grpc-web` code.
99
* Update xhr transport to migrate off legacy JS/HTML apis.
10-
* Use `package:web` to get `HttpStatus`
10+
* Use `package:web` to get `HttpStatus`.
11+
* Fix `package:web` deprecations.
1112

1213
## 4.0.1
1314

example/grpc-web/lib/app.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ class EchoApp {
6161
..append(HTMLSpanElement()
6262
..classList.add('label')
6363
..classList.addAll(cssClass)
64-
..text = message)));
64+
..textContent = message)));
6565
}
6666
}
6767

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: grpc
2-
version: 4.0.2-wip
2+
version: 4.0.2
33
description: Dart implementation of gRPC, a high performance, open-source universal RPC framework.
44
repository: https://github.com/grpc/grpc-dart
55

0 commit comments

Comments
 (0)