Fix web and prepare to publish 4.0.2

This commit is contained in:
Moritz 2025-03-31 10:22:25 +02:00 committed by GitHub
parent ebc838b66d
commit f077328341
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 5 additions and 4 deletions

View File

@ -1,4 +1,4 @@
## 4.0.2-wip ## 4.0.2
* Internal optimization to client code. * Internal optimization to client code.
* Small fixes, such as ports in testing and enabling `timeline_test.dart`. * Small fixes, such as ports in testing and enabling `timeline_test.dart`.
@ -7,7 +7,8 @@
* Upgrade to `package:lints` version 5.0.0 and Dart SDK version 3.5.0. * Upgrade to `package:lints` version 5.0.0 and Dart SDK version 3.5.0.
* Upgrade `example/grpc-web` code. * Upgrade `example/grpc-web` code.
* Update xhr transport to migrate off legacy JS/HTML apis. * Update xhr transport to migrate off legacy JS/HTML apis.
* Use `package:web` to get `HttpStatus` * Use `package:web` to get `HttpStatus`.
* Fix `package:web` deprecations.
## 4.0.1 ## 4.0.1

View File

@ -61,7 +61,7 @@ class EchoApp {
..append(HTMLSpanElement() ..append(HTMLSpanElement()
..classList.add('label') ..classList.add('label')
..classList.addAll(cssClass) ..classList.addAll(cssClass)
..text = message))); ..textContent = message)));
} }
} }

View File

@ -1,5 +1,5 @@
name: grpc name: grpc
version: 4.0.2-wip version: 4.0.2
description: Dart implementation of gRPC, a high performance, open-source universal RPC framework. description: Dart implementation of gRPC, a high performance, open-source universal RPC framework.
repository: https://github.com/grpc/grpc-dart repository: https://github.com/grpc/grpc-dart