From fb0c27a78a75b67cc4b94f714ad85db207cb2266 Mon Sep 17 00:00:00 2001 From: Kevin Moore Date: Mon, 8 Mar 2021 14:32:55 -0800 Subject: [PATCH] Require latest googleapis_auth to avoid deprecated API usage (#455) --- CHANGELOG.md | 2 ++ lib/src/auth/auth.dart | 2 +- pubspec.yaml | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f61c682..4896e87 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ ## 3.0.1-dev +* Require `package:googleapis_auth` `^1.1.0` + ## 3.0.0 * Migrate library and tests to null safety. diff --git a/lib/src/auth/auth.dart b/lib/src/auth/auth.dart index 8eff52e..a0059fc 100644 --- a/lib/src/auth/auth.dart +++ b/lib/src/auth/auth.dart @@ -16,7 +16,7 @@ import 'dart:async'; 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 '../client/call.dart'; diff --git a/pubspec.yaml b/pubspec.yaml index 43bfcfd..df76472 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -13,7 +13,7 @@ dependencies: async: ^2.5.0 crypto: ^3.0.0 fixnum: ^1.0.0 - googleapis_auth: ^1.0.0 + googleapis_auth: ^1.1.0 meta: ^1.3.0 http: ^0.13.0 http2: ^2.0.0