Skip to content

Commit 6909616

Browse files
authored
Release 21.8.1 (#675)
* Release 14.6.1 * Fix CI
1 parent 7a97854 commit 6909616

File tree

7 files changed

+14
-12
lines changed

7 files changed

+14
-12
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,9 @@ jobs:
1717
uses: ruby/setup-ruby@v1
1818
with:
1919
ruby-version: '3.0.1'
20-
21-
- name: Install CocoaPods
22-
run: gem install cocoapods -v '1.16.1'
2320

2421
- name: Select Xcode version
25-
run: sudo xcode-select -s '/Applications/Xcode_16.1.app/Contents/Developer'
22+
run: sudo xcode-select -s '/Applications/Xcode_16.4.app/Contents/Developer'
2623

2724
- name: Setup Node.js
2825
uses: actions/setup-node@v4
@@ -49,11 +46,9 @@ jobs:
4946
with:
5047
ruby-version: '3.0.1'
5148

52-
- name: Install CocoaPods
53-
run: gem install cocoapods -v '1.16.1'
5449

5550
- name: Select Xcode version
56-
run: sudo xcode-select -s '/Applications/Xcode_16.2.app/Contents/Developer'
51+
run: sudo xcode-select -s '/Applications/Xcode_16.4.app/Contents/Developer'
5752

5853
- name: Setup Node.js
5954
uses: actions/setup-node@v4

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33
[Migration Guides](https://github.com/urbanairship/react-native-airship/blob/main/MIGRATION.md)
44
[All Releases](https://github.com/urbanairship/react-native-airship/releases)
55

6+
## Version 21.8.1 - August 19, 2025
7+
Patch release with several bug fixes for Scenes, including an important reporting fix for embedded content.
8+
9+
### Changes
10+
- Updated Android SDK to [19.10.2](https://github.com/urbanairship/android-library/releases/tag/19.10.2)
11+
- Updated iOS SDK to [19.8.2](https://github.com/urbanairship/ios-library/releases/tag/19.8.2)
12+
613
## Version 21.8.0 - July 25, 2025
714
Minor release that adds support for Android log privacy level configuration and updates the Android SDK to 19.9.1 and the iOS SDK to 19.6.1.
815

android/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ Airship_minSdkVersion=23
33
Airship_targetSdkVersion=35
44
Airship_compileSdkVersion=35
55
Airship_ndkversion=26.1.10909125
6-
Airship_airshipProxyVersion=14.5.1
6+
Airship_airshipProxyVersion=14.6.1

ios/AirshipReactNative.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public class AirshipReactNative: NSObject {
3939
AirshipProxy.shared
4040
}
4141

42-
public static let version: String = "21.8.0"
42+
public static let version: String = "21.8.1"
4343

4444
private let eventNotifier = EventNotifier()
4545

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ua/react-native-airship",
3-
"version": "21.8.0",
3+
"version": "21.8.1",
44
"description": "Airship plugin for React Native apps.",
55
"main": "lib/commonjs/index",
66
"module": "lib/module/index",

react-native-airship.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ Pod::Spec.new do |s|
2222
s.dependency "React-Core"
2323
end
2424

25-
s.dependency "AirshipFrameworkProxy", "14.5.1"
25+
s.dependency "AirshipFrameworkProxy", "14.6.1"
2626
end

scripts/run_ci_tasks.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ if $IOS; then
5555
PROJECT_PLATFORM_PATH="$(pwd)"
5656
DERIVED_DATA=$(mktemp -d /tmp/ci-derived-data-XXXXX)
5757
TARGET_SDK='iphonesimulator'
58-
TEST_DESTINATION='platform=iOS Simulator,OS=18.1,name=iPhone 16 Pro Max'
58+
TEST_DESTINATION='platform=iOS Simulator,OS=18.4,name=iPhone 16 Pro Max'
5959

6060
# Use Debug configurations and a simulator SDK so the build process doesn't attempt to sign the output
6161
xcrun xcodebuild -workspace "${PROJECT_PLATFORM_PATH}/AirshipExample.xcworkspace" -derivedDataPath "${DERIVED_DATA}" -scheme "AirshipExample" -configuration Debug -sdk $TARGET_SDK -destination "${TEST_DESTINATION}"

0 commit comments

Comments
 (0)