mirror of https://github.com/grpc/grpc-dart.git
Require latest googleapis_auth to avoid deprecated API usage (#455)
This commit is contained in:
parent
ee0e7ec351
commit
fb0c27a78a
|
|
@ -1,5 +1,7 @@
|
||||||
## 3.0.1-dev
|
## 3.0.1-dev
|
||||||
|
|
||||||
|
* Require `package:googleapis_auth` `^1.1.0`
|
||||||
|
|
||||||
## 3.0.0
|
## 3.0.0
|
||||||
|
|
||||||
* Migrate library and tests to null safety.
|
* Migrate library and tests to null safety.
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@
|
||||||
import 'dart:async';
|
import 'dart:async';
|
||||||
import 'dart:convert';
|
import 'dart:convert';
|
||||||
|
|
||||||
import 'package:googleapis_auth/auth.dart' as auth;
|
import 'package:googleapis_auth/googleapis_auth.dart' as auth;
|
||||||
import 'package:http/http.dart' as http;
|
import 'package:http/http.dart' as http;
|
||||||
|
|
||||||
import '../client/call.dart';
|
import '../client/call.dart';
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@ dependencies:
|
||||||
async: ^2.5.0
|
async: ^2.5.0
|
||||||
crypto: ^3.0.0
|
crypto: ^3.0.0
|
||||||
fixnum: ^1.0.0
|
fixnum: ^1.0.0
|
||||||
googleapis_auth: ^1.0.0
|
googleapis_auth: ^1.1.0
|
||||||
meta: ^1.3.0
|
meta: ^1.3.0
|
||||||
http: ^0.13.0
|
http: ^0.13.0
|
||||||
http2: ^2.0.0
|
http2: ^2.0.0
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue