Skip to content

Commit 1632820

Browse files
True Upstream Master
1 parent 1dddfe0 commit 1632820

23 files changed

+193
-236
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
the connection, as defined in the gRPC spec.
77
* Upgrade to `package:lints` version 5.0.0 and Dart SDK version 3.5.0.
88
* Upgrade `example/grpc-web` code.
9+
* Update xhr transport to migrate off legacy JS/HTML apis.
910

1011
## 4.0.1
1112

example/googleapis/googleapis.iml

Lines changed: 0 additions & 16 deletions
This file was deleted.

example/googleapis/pubspec_overrides.yaml

Lines changed: 0 additions & 4 deletions
This file was deleted.

example/grpc-web/grpc_web.iml

Lines changed: 0 additions & 16 deletions
This file was deleted.

example/grpc-web/pubspec_overrides.yaml

Lines changed: 0 additions & 4 deletions
This file was deleted.

example/helloworld/helloworld.iml

Lines changed: 0 additions & 16 deletions
This file was deleted.

example/helloworld/pubspec_overrides.yaml

Lines changed: 0 additions & 4 deletions
This file was deleted.

example/metadata/metadata.iml

Lines changed: 0 additions & 16 deletions
This file was deleted.

example/metadata/pubspec_overrides.yaml

Lines changed: 0 additions & 4 deletions
This file was deleted.

example/route_guide/pubspec_overrides.yaml

Lines changed: 0 additions & 4 deletions
This file was deleted.

example/route_guide/route_guide.iml

Lines changed: 0 additions & 16 deletions
This file was deleted.

grpc.iml

Lines changed: 0 additions & 18 deletions
This file was deleted.

interop/interop.iml

Lines changed: 0 additions & 16 deletions
This file was deleted.

interop/pubspec.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ description: Dart gRPC interoperability test suite.
33
publish_to: none
44

55
environment:
6-
sdk: '>=3.0.0 <4.0.0'
6+
sdk: ^3.0.0
77

88
dependencies:
9-
args: ^2.5.0
10-
async: ^2.11.0
11-
collection: ^1.18.0
9+
args: ^2.0.0
10+
async: ^2.2.0
11+
collection: ^1.14.11
1212
grpc:
1313
path: ../
14-
protobuf: ^3.1.0
14+
protobuf: ^3.0.0
1515

1616
dev_dependencies:
17-
test: ^1.25.3
17+
test: ^1.16.0

interop/pubspec_overrides.yaml

Lines changed: 0 additions & 4 deletions
This file was deleted.

lib/grpc_or_grpcweb.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// limitations under the License.
1515

1616
import 'src/client/grpc_or_grpcweb_channel_grpc.dart'
17-
if (dart.library.html) 'src/client/grpc_or_grpcweb_channel_web.dart';
17+
if (dart.library.js_interop) 'src/client/grpc_or_grpcweb_channel_web.dart';
1818
import 'src/client/http2_channel.dart';
1919
import 'src/client/options.dart';
2020

0 commit comments

Comments
 (0)