diff --git a/CHANGELOG.md b/CHANGELOG.md index cb9d5ac1..3fab8fba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Flutter Plugin Changelog +## Version 8.0.3 - November 6, 2024 + +Patch release that resolves an issue with Firebase integrations and fixes an issue with opt-in checks when requestAuthorizationToUseNotifications is set to false on iOS. + +### Changes +- Updated Airship iOS SDK to [18.12.1](https://github.com/urbanairship/ios-library/releases/tag/18.12.0) +- Fixed issues caused by swizzling conflicts with some Firebase framework integrations. +- Fixed opt-in check permissions querying when requestAuthorizationToUseNotifications is set to false on iOS. + ## Version 8.0.2 - November 4, 2024 Patch release that updates to latest SDKs and resolves an issue with Firebase integrations. Applications that integrate with Firebase are encouraged to update. diff --git a/android/build.gradle b/android/build.gradle index bfdaf93f..d5a49453 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -5,7 +5,7 @@ buildscript { ext.kotlin_version = '1.9.0' ext.coroutine_version = '1.5.2' ext.datastore_preferences_version = '1.1.1' - ext.airship_framework_proxy_version = '11.0.2' + ext.airship_framework_proxy_version = '11.0.3' repositories { diff --git a/android/src/main/kotlin/com/airship/flutter/AirshipPluginVersion.kt b/android/src/main/kotlin/com/airship/flutter/AirshipPluginVersion.kt index e529e0aa..0b1ea7e1 100644 --- a/android/src/main/kotlin/com/airship/flutter/AirshipPluginVersion.kt +++ b/android/src/main/kotlin/com/airship/flutter/AirshipPluginVersion.kt @@ -2,6 +2,6 @@ package com.airship.flutter class AirshipPluginVersion { companion object { - const val AIRSHIP_PLUGIN_VERSION = "8.0.2" + const val AIRSHIP_PLUGIN_VERSION = "8.0.3" } } diff --git a/ios/Classes/AirshipPluginVersion.swift b/ios/Classes/AirshipPluginVersion.swift index bd9b517e..8845e7c8 100644 --- a/ios/Classes/AirshipPluginVersion.swift +++ b/ios/Classes/AirshipPluginVersion.swift @@ -1,5 +1,5 @@ import Foundation class AirshipPluginVersion { - static let pluginVersion = "8.0.2" + static let pluginVersion = "8.0.3" } diff --git a/ios/airship_flutter.podspec b/ios/airship_flutter.podspec index 65fe167e..3f40e4b0 100644 --- a/ios/airship_flutter.podspec +++ b/ios/airship_flutter.podspec @@ -1,5 +1,5 @@ -AIRSHIP_FLUTTER_VERSION="8.0.2" +AIRSHIP_FLUTTER_VERSION="8.0.3" # # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html @@ -20,6 +20,6 @@ Airship flutter plugin. s.public_header_files = 'Classes/**/*.h' s.dependency 'Flutter' s.ios.deployment_target = "14.0" - s.dependency "AirshipFrameworkProxy", "11.0.2" + s.dependency "AirshipFrameworkProxy", "11.0.3" end diff --git a/pubspec.yaml b/pubspec.yaml index 5244475f..1ab1c6e2 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: airship_flutter description: "Cross-platform plugin interface for the native Airship iOS and Android SDKs. Simplifies adding Airship to Flutter apps." -version: 8.0.2 +version: 8.0.3 homepage: https://www.airship.com/ repository: https://github.com/urbanairship/airship-flutter issue_tracker: https://github.com/urbanairship/airship-flutter/issues