forked from firebase/flutterfire
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix version conflicts, verify publishability of packages in CI, Remov…
…e Travis (firebase#729) This fixes a number of version resolution errors that would prevent these packages from building, and turn off Travis, since Cirrus now works. I also fixed a number of errors that would have prevented these packages from being published without warnings, and establishes a CI script that will verify publishability for any changed packages in a PR. For some examples, we were depending upon versions of other 1st-party plugins by using path: ../../<package>, which really isn't the right way to do things, so for those examples, they now depend on a published version. I bumped the version number of any packages that were modified, and updated their CHANGELOGs since the dependencies have changed. Also fixed a number of analyzer errors that somehow snuck in.
- Loading branch information
1 parent
77b2fde
commit c86d44f
Showing
33 changed files
with
187 additions
and
176 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
## 0.0.3 | ||
|
||
* Added missing dependency on meta package. | ||
|
||
## 0.0.2 | ||
|
||
* Bump Android and Firebase dependency versions. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,67 +1,19 @@ | ||
name: cloud_functions_example | ||
description: Demonstrates how to use the cloud_functions plugin. | ||
|
||
# The following defines the version and build number for your application. | ||
# A version number is three numbers separated by dots, like 1.2.43 | ||
# followed by an optional build number separated by a +. | ||
# Both the version and the builder number may be overridden in flutter | ||
# build by specifying --build-name and --build-number, respectively. | ||
# Read more about versioning at semver.org. | ||
version: 1.0.0+1 | ||
author: Flutter Team <[email protected]> | ||
|
||
dependencies: | ||
flutter: | ||
sdk: flutter | ||
|
||
# The following adds the Cupertino Icons font to your application. | ||
# Use with the CupertinoIcons class for iOS style icons. | ||
cupertino_icons: ^0.1.2 | ||
|
||
dev_dependencies: | ||
flutter_test: | ||
sdk: flutter | ||
|
||
cloud_functions: | ||
path: ../ | ||
|
||
# For information on the generic Dart part of this file, see the | ||
# following page: https://www.dartlang.org/tools/pub/pubspec | ||
path: .. | ||
|
||
# The following section is specific to Flutter. | ||
flutter: | ||
|
||
# The following line ensures that the Material Icons font is | ||
# included with your application, so that you can use the icons in | ||
# the material Icons class. | ||
uses-material-design: true | ||
|
||
# To add assets to your application, add an assets section, like this: | ||
# assets: | ||
# - images/a_dot_burr.jpeg | ||
# - images/a_dot_ham.jpeg | ||
|
||
# An image asset can refer to one or more resolution-specific "variants", see | ||
# https://flutter.io/assets-and-images/#resolution-aware. | ||
|
||
# For details regarding adding assets from package dependencies, see | ||
# https://flutter.io/assets-and-images/#from-packages | ||
|
||
# To add custom fonts to your application, add a fonts section here, | ||
# in this "flutter" section. Each entry in this list should have a | ||
# "family" key with the font family name, and a "fonts" key with a | ||
# list giving the asset and other descriptors for the font. For | ||
# example: | ||
# fonts: | ||
# - family: Schyler | ||
# fonts: | ||
# - asset: fonts/Schyler-Regular.ttf | ||
# - asset: fonts/Schyler-Italic.ttf | ||
# style: italic | ||
# - family: Trajan Pro | ||
# fonts: | ||
# - asset: fonts/TrajanPro.ttf | ||
# - asset: fonts/TrajanPro_Bold.ttf | ||
# weight: 700 | ||
# | ||
# For details regarding fonts from package dependencies, | ||
# see https://flutter.io/custom-fonts/#from-packages |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
name: cloud_functions | ||
description: Flutter plugin for Cloud Functions. | ||
version: 0.0.2 | ||
version: 0.0.3 | ||
author: Flutter Team <[email protected]> | ||
homepage: https://github.com/flutter/plugins/tree/master/packages/cloud_functions | ||
|
||
|
@@ -10,9 +10,10 @@ flutter: | |
pluginClass: CloudFunctionsPlugin | ||
|
||
dependencies: | ||
meta: ^1.1.6 | ||
flutter: | ||
sdk: flutter | ||
firebase_core: "^0.2.2" | ||
firebase_core: ^0.2.2 | ||
|
||
dev_dependencies: | ||
flutter_test: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ name: firebase_admob | |
description: Firebase AdMob plugin for Flutter applications. | ||
author: Flutter Team <[email protected]> | ||
homepage: https://github.com/flutter/plugins/tree/master/packages/firebase_admob | ||
version: 0.5.6 | ||
version: 0.5.7 | ||
|
||
flutter: | ||
plugin: | ||
|
@@ -17,7 +17,7 @@ dependencies: | |
sdk: flutter | ||
|
||
dev_dependencies: | ||
mockito: ^2.0.2 | ||
mockito: ^3.0.0 | ||
flutter_test: | ||
sdk: flutter | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ description: Flutter plugin for Google Analytics for Firebase, an app measuremen | |
solution that provides insight on app usage and user engagement on Android and iOS. | ||
author: Flutter Team <[email protected]> | ||
homepage: https://github.com/flutter/plugins/tree/master/packages/firebase_analytics | ||
version: 1.0.2 | ||
version: 1.0.3 | ||
|
||
flutter: | ||
plugin: | ||
|
@@ -17,7 +17,8 @@ dependencies: | |
sdk: flutter | ||
|
||
dev_dependencies: | ||
mockito: ^2.0.2 | ||
test: ^1.3.0 | ||
mockito: ^3.0.0 | ||
flutter_test: | ||
sdk: flutter | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
name: firebase_auth_example | ||
description: Demonstrates how to use the firebase_auth plugin. | ||
author: Flutter Team <[email protected]> | ||
|
||
dependencies: | ||
flutter: | ||
sdk: flutter | ||
firebase_auth: | ||
path: ../ | ||
google_sign_in: | ||
path: ../../google_sign_in | ||
google_sign_in: ^3.0.4 | ||
|
||
flutter: | ||
uses-material-design: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ description: Flutter plugin for Firebase Auth, enabling Android and iOS | |
like Google, Facebook and Twitter. | ||
author: Flutter Team <[email protected]> | ||
homepage: https://github.com/flutter/plugins/tree/master/packages/firebase_auth | ||
version: 0.5.18 | ||
version: 0.5.19 | ||
|
||
flutter: | ||
plugin: | ||
|
@@ -18,6 +18,8 @@ dependencies: | |
sdk: flutter | ||
|
||
dev_dependencies: | ||
google_sign_in: ^3.0.4 | ||
test: ^1.3.0 | ||
flutter_test: | ||
sdk: flutter | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ description: Flutter plugin for Firebase Database, a cloud-hosted NoSQL database | |
with realtime data syncing across Android and iOS clients, and offline access. | ||
author: Flutter Team <[email protected]> | ||
homepage: https://github.com/flutter/plugins/tree/master/packages/firebase_database | ||
version: 1.0.3 | ||
version: 1.0.4 | ||
|
||
flutter: | ||
plugin: | ||
|
@@ -17,7 +17,8 @@ dependencies: | |
firebase_core: ^0.2.2 | ||
|
||
dev_dependencies: | ||
mockito: ^2.0.2 | ||
test: ^1.3.0 | ||
mockito: ^3.0.0 | ||
flutter_test: | ||
sdk: flutter | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ description: Flutter plugin for Firebase Cloud Messaging, a cross-platform | |
messaging solution that lets you reliably deliver messages on Android and iOS. | ||
author: Flutter Team <[email protected]> | ||
homepage: https://github.com/flutter/plugins/tree/master/packages/firebase_messaging | ||
version: 1.0.4 | ||
version: 1.0.5 | ||
|
||
flutter: | ||
plugin: | ||
|
@@ -18,7 +18,8 @@ dependencies: | |
sdk: flutter | ||
|
||
dev_dependencies: | ||
mockito: ^2.0.2 | ||
test: ^1.3.0 | ||
mockito: ^3.0.0 | ||
flutter_test: | ||
sdk: flutter | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
name: firebase_ml_vision_example | ||
description: Demonstrates how to use the firebase_ml_vision plugin. | ||
|
||
version: 1.0.0+1 | ||
author: Flutter Team <[email protected]> | ||
|
||
dependencies: | ||
flutter: | ||
sdk: flutter | ||
|
||
image_picker: "^0.4.5" | ||
image_picker: ^0.4.5 | ||
cupertino_icons: ^0.1.2 | ||
|
||
dev_dependencies: | ||
|
Oops, something went wrong.