Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 2 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,9 @@ jobs:
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.0.1'

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

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

- name: Setup Node.js
uses: actions/setup-node@v4
Expand All @@ -49,11 +46,9 @@ jobs:
with:
ruby-version: '3.0.1'

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

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

- name: Setup Node.js
uses: actions/setup-node@v4
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
[Migration Guides](https://github.com/urbanairship/react-native-airship/blob/main/MIGRATION.md)
[All Releases](https://github.com/urbanairship/react-native-airship/releases)

## Version 23.5.1 - August 19, 2025
Patch release with several bug fixes for Scenes, including an important reporting fix for embedded content.

### Changes
- Updated Android SDK to [19.10.2](https://github.com/urbanairship/android-library/releases/tag/19.10.2)
- Updated iOS SDK to [19.8.2](https://github.com/urbanairship/ios-library/releases/tag/19.8.2)

## Version 23.5.0 - July 26, 2025
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.

Expand Down
2 changes: 1 addition & 1 deletion android/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ Airship_minSdkVersion=23
Airship_targetSdkVersion=35
Airship_compileSdkVersion=35
Airship_ndkversion=26.1.10909125
Airship_airshipProxyVersion=14.5.1
Airship_airshipProxyVersion=14.6.1
2 changes: 1 addition & 1 deletion ios/AirshipReactNative.swift
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class AirshipReactNative: NSObject {
AirshipProxy.shared
}

public static let version: String = "23.5.0"
public static let version: String = "23.5.1"

private let eventNotifier = EventNotifier()

Expand Down
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": "23.5.0",
"version": "23.5.1",
"description": "Airship plugin for React Native apps.",
"source": "./src/index.tsx",
"main": "./lib/module/index.js",
Expand Down
2 changes: 1 addition & 1 deletion react-native-airship.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,5 @@ Pod::Spec.new do |s|
end
end

s.dependency "AirshipFrameworkProxy", "14.5.1"
s.dependency "AirshipFrameworkProxy", "14.6.1"
end
2 changes: 1 addition & 1 deletion scripts/run_ci_tasks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ if $IOS; then
PROJECT_PLATFORM_PATH="$(pwd)"
DERIVED_DATA=$(mktemp -d /tmp/ci-derived-data-XXXXX)
TARGET_SDK='iphonesimulator'
TEST_DESTINATION='platform=iOS Simulator,OS=18.1,name=iPhone 16 Pro Max'
TEST_DESTINATION='platform=iOS Simulator,OS=18.4,name=iPhone 16 Pro Max'

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