Skip to content

Commit

Permalink
Merge pull request #505 from urbanairship/release-15.2.4
Browse files Browse the repository at this point in the history
Release 15.2.4
  • Loading branch information
rlepinski authored Apr 29, 2023
2 parents 109d4ac + 69e1f3f commit 8ddd431
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 12 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# React Native Module Changelog

## Version 15.2.4 - April 28, 2023

Patch release that fixes a issue with modifying attributes on Android and an issue with
`NotificationResponseEvent` not being received if a push with a deep link is opened.

### Changes
- Fixed modifying attributes on Android
- Fixed issue with iOS not receiving subsequent NotificationResponseEvent

## Version 15.2.3 - April 18, 2023

Patch release that fixes a crash on Android when running an Android device older than 7. Apps that target API 23 or older should update.
Expand Down
2 changes: 1 addition & 1 deletion android/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Airship_targetSdkVersion=31
Airship_compileSdkVersion=31
Airship_ndkversion=21.4.7075529

Airship_airshipProxyVersion=2.0.5
Airship_airshipProxyVersion=2.0.7

# workaround for now, used for HMS
Airship_airshipVersion=16.9.2
Expand Down
7 changes: 4 additions & 3 deletions example/ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,10 @@ target 'AirshipExample' do
)
__apply_Xcode_12_5_M1_post_install_workaround(installer)
installer.pods_project.targets.each do |target|
if target.respond_to?(:product_type) and target.product_type == "com.apple.product-type.bundle"
target.build_configurations.each do |config|
config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO'
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
if target.respond_to?(:product_type) and target.product_type == "com.apple.product-type.bundle"
config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO'
end
end
end
Expand Down
12 changes: 6 additions & 6 deletions example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ PODS:
- Airship/Core
- Airship/PreferenceCenter (16.11.3):
- Airship/Core
- AirshipFrameworkProxy (2.0.5):
- AirshipFrameworkProxy (2.0.7):
- Airship (= 16.11.3)
- Airship/MessageCenter (= 16.11.3)
- Airship/PreferenceCenter (= 16.11.3)
Expand Down Expand Up @@ -318,8 +318,8 @@ PODS:
- React-jsinspector (0.71.1)
- React-logger (0.71.1):
- glog
- react-native-airship (15.2.3):
- AirshipFrameworkProxy (= 2.0.5)
- react-native-airship (15.2.4):
- AirshipFrameworkProxy (= 2.0.7)
- React-Core
- react-native-safe-area-context (4.5.0):
- RCT-Folly
Expand Down Expand Up @@ -583,7 +583,7 @@ EXTERNAL SOURCES:

SPEC CHECKSUMS:
Airship: c70eed50e429f97f5adb285423c7291fb7a032ae
AirshipFrameworkProxy: 2eefb77bb77b5120b0f48814b0d44439aa3ad415
AirshipFrameworkProxy: 393033df78ce5bd7f2faf4668d145f6d0a778060
boost: 57d2868c099736d80fcd648bf211b4431e51a558
CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99
DoubleConversion: 5189b271737e1565bdce30deb4a08d647e3f5f54
Expand Down Expand Up @@ -617,7 +617,7 @@ SPEC CHECKSUMS:
React-jsiexecutor: 60cf272aababc5212410e4249d17cea14fc36caa
React-jsinspector: ff56004b0c974b688a6548c156d5830ad751ae07
React-logger: 60a0b5f8bed667ecf9e24fecca1f30d125de6d75
react-native-airship: 25045092934bf6eabf483e803af0a6e31826b8b9
react-native-airship: bfdc6c4e1dcbc62c86a0619783bf06ef1009d83f
react-native-safe-area-context: 39c2d8be3328df5d437ac1700f4f3a4f75716acc
React-perflogger: ec8eef2a8f03ecfa6361c2c5fb9197ef4a29cc85
React-RCTActionSheet: a0c023b86cf4c862fa9c4eb0f6f91fbe878fb2de
Expand All @@ -638,6 +638,6 @@ SPEC CHECKSUMS:
Yoga: 921eb014669cf9c718ada68b08d362517d564e0c
YogaKit: f782866e155069a2cca2517aafea43200b01fd5a

PODFILE CHECKSUM: 1f39a4a9c9c7a29cfafef9780883057d76bf645c
PODFILE CHECKSUM: 752a5f51a2d0fb49d58f91573b1d2b520147bf4e

COCOAPODS: 1.11.3
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ua/react-native-airship",
"version": "15.2.3",
"version": "15.2.4",
"description": "Airship plugin for React Native apps.",
"main": "lib/commonjs/index",
"module": "lib/module/index",
Expand Down
2 changes: 1 addition & 1 deletion react-native-airship.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ Pod::Spec.new do |s|



s.dependency "AirshipFrameworkProxy", "2.0.5"
s.dependency "AirshipFrameworkProxy", "2.0.7"

end

0 comments on commit 8ddd431

Please sign in to comment.