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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# React Native Module 26.0.0 Changelog

## Version 26.4.1 - April 10, 2026

Patch release that fixes a `UIViewControllerHierarchyInconsistency` crash in the Airship embedded view wrapper on iOS when an embedded view is pushed and popped on a navigation stack.

### Changes
- Fixed iOS embedded view wrapper to properly remove its hosted `UIHostingController` as a child view controller when its window is detached, avoiding a `UIViewControllerHierarchyInconsistency` crash on re-attachment.

## Version 26.4.0 - April 1, 2026

Minor release that updates the Android SDK to 20.6.1 and the iOS SDK to 20.6.0.
Expand Down
2 changes: 1 addition & 1 deletion ios/AirshipReactNative.swift
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public final class AirshipReactNative: NSObject, Sendable {
AirshipProxy.shared
}

public static let version: String = "26.4.0"
public static let version: String = "26.4.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": "26.4.0",
"version": "26.4.1",
"description": "Airship plugin for React Native apps.",
"source": "./src/index.tsx",
"main": "./lib/module/index.js",
Expand Down
Loading