diff --git a/.github/workflows/publish_android.yml b/.github/workflows/publish_android.yml index b66d4a63..5fe394d1 100644 --- a/.github/workflows/publish_android.yml +++ b/.github/workflows/publish_android.yml @@ -65,9 +65,12 @@ jobs: } - name: Generate Changelog + env: + CHANGELOG: ${{ inputs.build-changelog }} + CHANGELOG_PATH: ${{ github.workspace }}/android/fastlane/metadata/android/en-CA/changelogs run: | - mkdir -p ${{ github.workspace }}/android/fastlane/metadata/android/en-CA/changelogs - echo ${{ inputs.build-changelog }} > ${{ github.workspace }}/android/fastlane/metadata/android/en-CA/changelogs/default.txt + mkdir -p $CHANGELOG_PATH + echo $CHANGELOG > $CHANGELOG_PATH/default.txt - name: Deploy to Google Play Store working-directory: ${{ github.workspace }}/android diff --git a/.github/workflows/publish_ios.yml b/.github/workflows/publish_ios.yml index f2e0c0ce..2551da19 100644 --- a/.github/workflows/publish_ios.yml +++ b/.github/workflows/publish_ios.yml @@ -58,7 +58,12 @@ jobs: path: ${{ github.workspace }}/output - name: Generate Changelog - run: echo ${{ inputs.build-changelog }} > ${{ github.workspace }}/ios/fastlane/changelog.txt + env: + CHANGELOG: ${{ inputs.build-changelog }} + CHANGELOG_PATH: ${{ github.workspace }}/ios/fastlane + run: | + mkdir -p $CHANGELOG_PATH + echo $CHANGELOG > $CHANGELOG_PATH/changelog.txt - name: Deploy to App Store Connect working-directory: ${{ github.workspace }}/ios diff --git a/.github/workflows/publish_macos.yml b/.github/workflows/publish_macos.yml index 7828dc64..baea5ecc 100644 --- a/.github/workflows/publish_macos.yml +++ b/.github/workflows/publish_macos.yml @@ -58,7 +58,12 @@ jobs: path: ${{ github.workspace }}/output - name: Generate Changelog - run: echo ${{ inputs.build-changelog }} > ${{ github.workspace }}/macos/fastlane/changelog.txt + env: + CHANGELOG: ${{ inputs.build-changelog }} + CHANGELOG_PATH: ${{ github.workspace }}/macos/fastlane + run: | + mkdir -p $CHANGELOG_PATH + echo $CHANGELOG > $CHANGELOG_PATH/changelog.txt - name: Deploy to App Store Connect working-directory: ${{ github.workspace }}/macos diff --git a/pubspec.lock b/pubspec.lock index ab5f0600..45531b56 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -168,21 +168,21 @@ packages: name: cloud_firestore url: "https://pub.dartlang.org" source: hosted - version: "3.1.17" + version: "3.1.18" cloud_firestore_platform_interface: dependency: transitive description: name: cloud_firestore_platform_interface url: "https://pub.dartlang.org" source: hosted - version: "5.5.7" + version: "5.5.8" cloud_firestore_web: dependency: transitive description: name: cloud_firestore_web url: "https://pub.dartlang.org" source: hosted - version: "2.6.16" + version: "2.6.17" code_builder: dependency: transitive description: @@ -329,84 +329,84 @@ packages: name: firebase_auth url: "https://pub.dartlang.org" source: hosted - version: "3.3.19" + version: "3.3.20" firebase_auth_platform_interface: dependency: transitive description: name: firebase_auth_platform_interface url: "https://pub.dartlang.org" source: hosted - version: "6.2.7" + version: "6.2.8" firebase_auth_web: dependency: transitive description: name: firebase_auth_web url: "https://pub.dartlang.org" source: hosted - version: "3.3.16" + version: "3.3.17" firebase_core: dependency: "direct main" description: name: firebase_core url: "https://pub.dartlang.org" source: hosted - version: "1.17.1" + version: "1.18.0" firebase_core_platform_interface: dependency: transitive description: name: firebase_core_platform_interface url: "https://pub.dartlang.org" source: hosted - version: "4.4.0" + version: "4.4.1" firebase_core_web: dependency: transitive description: name: firebase_core_web url: "https://pub.dartlang.org" source: hosted - version: "1.6.4" + version: "1.6.5" firebase_messaging: dependency: "direct main" description: name: firebase_messaging url: "https://pub.dartlang.org" source: hosted - version: "11.4.1" + version: "11.4.2" firebase_messaging_platform_interface: dependency: transitive description: name: firebase_messaging_platform_interface url: "https://pub.dartlang.org" source: hosted - version: "3.5.1" + version: "3.5.2" firebase_messaging_web: dependency: transitive description: name: firebase_messaging_web url: "https://pub.dartlang.org" source: hosted - version: "2.4.1" + version: "2.4.2" firebase_storage: dependency: "direct main" description: name: firebase_storage url: "https://pub.dartlang.org" source: hosted - version: "10.2.17" + version: "10.2.18" firebase_storage_platform_interface: dependency: transitive description: name: firebase_storage_platform_interface url: "https://pub.dartlang.org" source: hosted - version: "4.1.7" + version: "4.1.8" firebase_storage_web: dependency: transitive description: name: firebase_storage_web url: "https://pub.dartlang.org" source: hosted - version: "3.2.16" + version: "3.2.17" fixnum: dependency: transitive description: @@ -547,7 +547,7 @@ packages: name: go_router url: "https://pub.dartlang.org" source: hosted - version: "3.1.1" + version: "4.0.0" google_nav_bar: dependency: "direct main" description: @@ -617,7 +617,7 @@ packages: name: in_app_purchase url: "https://pub.dartlang.org" source: hosted - version: "3.0.5" + version: "3.0.6" in_app_purchase_android: dependency: transitive description: @@ -1023,7 +1023,7 @@ packages: name: share_plus url: "https://pub.dartlang.org" source: hosted - version: "4.0.8" + version: "4.0.9" share_plus_linux: dependency: transitive description: diff --git a/pubspec.yaml b/pubspec.yaml index c322fa2c..18894998 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -10,7 +10,7 @@ dependencies: sdk: flutter badges: ^2.0.3 cached_network_image: ^3.2.1 - cloud_firestore: ^3.1.17 + cloud_firestore: ^3.1.18 collection: ^1.15.0 convert: ^3.0.2 device_preview: ^1.1.0 @@ -21,21 +21,21 @@ dependencies: expandable: ^5.0.1 fading_edge_scrollview: ^3.0.0 file_picker: ^4.6.1 - firebase_auth: ^3.3.19 - firebase_core: ^1.17.1 - firebase_messaging: ^11.4.1 - firebase_storage: ^10.2.17 + firebase_auth: ^3.3.20 + firebase_core: ^1.18.0 + firebase_messaging: ^11.4.2 + firebase_storage: ^10.2.18 fl_chart: ^0.46.0 flash: ^2.0.3+2 fluro: ^2.0.3 flutter_cache_manager: ^3.3.0 flutter_riverpod: ^2.0.0-dev.9 flutter_spinkit: ^5.1.0 - go_router: ^3.1.1 + go_router: ^4.0.0 google_nav_bar: ^5.0.6 hive: ^2.2.2 hive_flutter: ^1.1.0 - in_app_purchase: ^3.0.5 + in_app_purchase: ^3.0.6 infinite_scroll_pagination: ^3.2.0 intl: ^0.17.0 json_annotation: ^4.5.0 @@ -46,7 +46,7 @@ dependencies: percent_indicator: ^4.2.2 quick_actions: ^0.6.0+11 retrofit: ^3.0.1+1 - share_plus: ^4.0.8 + share_plus: ^4.0.9 shimmer: ^2.0.0 simple_icons: ^7.1.0 stack_trace: ^1.10.0