From aefacc581f79e512c9810e6098fb98a906be96ad Mon Sep 17 00:00:00 2001 From: Ryan Lepinski Date: Fri, 13 Sep 2024 11:27:07 -0700 Subject: [PATCH] Release 19.3.2 (#592) --- CHANGELOG.md | 7 +++++++ example/ios/Podfile.lock | 4 ++-- ios/AirshipReactNative.swift | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 5 files changed, 13 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d22f665..2b70bb48 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # React Native Module Changelog +## Version 19.3.2 - September 13, 2024 +Patch release to fix a compile issue with the new Architecture on iOS and to fix a potential race condition on the event listeners when refreshing the JS bridge. + +### Changes +- Fixed compile issue when using new architecture on iOS +- Fixed potential race condition on events listeners when the JS bridge refreshes + ## Version 19.3.1 - September 5, 2024 Patch release to fix compile issue with 19.3.0 when using the old architecture on Android. diff --git a/example/ios/Podfile.lock b/example/ios/Podfile.lock index b72a85f7..950ef371 100644 --- a/example/ios/Podfile.lock +++ b/example/ios/Podfile.lock @@ -907,7 +907,7 @@ PODS: - React-Mapbuffer (0.73.4): - glog - React-debug - - react-native-airship (19.3.0): + - react-native-airship (19.3.2): - AirshipFrameworkProxy (= 7.3.0) - glog - RCT-Folly (= 2022.05.16.00) @@ -1311,7 +1311,7 @@ SPEC CHECKSUMS: React-jsinspector: 9ac353eccf6ab54d1e0a33862ba91221d1e88460 React-logger: 0a57b68dd2aec7ff738195f081f0520724b35dab React-Mapbuffer: 63913773ed7f96b814a2521e13e6d010282096ad - react-native-airship: 7fcefeebfac490aab222b93521e08ebd5b3d4581 + react-native-airship: 3bfdf6a727ac0c6d5d0c1fdfc7ffb771701a679b react-native-safe-area-context: b97eb6f9e3b7f437806c2ce5983f479f8eb5de4b React-nativeconfig: d7af5bae6da70fa15ce44f045621cf99ed24087c React-NativeModulesApple: 0123905d5699853ac68519607555a9a4f5c7b3ac diff --git a/ios/AirshipReactNative.swift b/ios/AirshipReactNative.swift index 8396d42d..957bcdca 100644 --- a/ios/AirshipReactNative.swift +++ b/ios/AirshipReactNative.swift @@ -39,7 +39,7 @@ public class AirshipReactNative: NSObject { AirshipProxy.shared } - public static let version: String = "19.3.1" + public static let version: String = "19.3.2" private let eventNotifier = EventNotifier() diff --git a/package-lock.json b/package-lock.json index 9b5f0e19..b009ff3b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@ua/react-native-airship", - "version": "18.0.0", + "version": "19.3.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@ua/react-native-airship", - "version": "18.0.0", + "version": "19.3.2", "license": "Apache-2.0", "devDependencies": { "@commitlint/config-conventional": "^17.0.2", diff --git a/package.json b/package.json index e6635025..007ddfdb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@ua/react-native-airship", - "version": "19.3.1", + "version": "19.3.2", "description": "Airship plugin for React Native apps.", "main": "lib/commonjs/index", "module": "lib/module/index",