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
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v20.19.0
v20.19.4
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,13 @@ Versioning](https://semver.org/spec/v2.0.0.html).
- Expo SDK 55 requires React Native's New Architecture
- Tested with Expo SDK 55

## [1.1.0] - 2026-06-24

### Changed
- Updated to Expo SDK 55 (React Native 0.83.2, React 19.2.0)
- Updated `@iterable/react-native-sdk` peer dependency to `^3.0.0`
- Updated minimum Node.js version to 20.19.4
Comment on lines +22 to +27

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@lposen does this Copilot comment sounds reasonable to you?

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No -- see above


## [1.0.1] - 2025-07-16

### Changed
Expand Down
24 changes: 9 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ the native code is generated through `expo prebuild`.
- [πŸš€ Quick Start](#-quick-start)
- [πŸ”§ Configuration](#-configuration)
- [Plugin Options](#plugin-options)
- [Disabling New Architecture](#disabling-new-architecture)
- [New Architecture](#new-architecture)
- [Adding push capabilities](#adding-push-capabilities)
- [iOS](#ios)
- [Android](#android)
Expand Down Expand Up @@ -129,15 +129,14 @@ Add the plugin to your `app.json` or `app.config.js`:
| `enableTimeSensitivePush` | boolean | `true` | Whether to enable time-sensitive push notifications (iOS only) |
| `requestPermissionsForPushNotifications` | boolean | `false` | Whether to request permissions for push notifications (iOS only) |

### Disabling New Architecture
### New Architecture

`@iterable/react-native-sdk` is _NOT_ compatible with Reacts New Architecture,
so this needs to be disabled in your `app.json`:
Expo SDK 55 requires React Native's [New Architecture](https://reactnative.dev/architecture/landing-page). Ensure `newArchEnabled` is set to `true` in your `app.json`:

```json
{
"expo": {
Comment on lines +134 to 138
"newArchEnabled": false
"newArchEnabled": true
}
}
```
Expand Down Expand Up @@ -374,14 +373,9 @@ If you encounter the error "Signing for 'IterableExpoRichPush' requires a develo

## βœ… Requirements and Limitations

- From v2.0.2,`@iterable/react-native-sdk` supports React Native's New
Architecture](https://reactnative.dev/architecture/landing-page) through the
Interop Layer. We are in the process of updating the SDK to fully support the
New Architecture, and suggest using the legacy architecture in the meantime.
*TLDR;* Use the New Architecture at your own risk -- you may encounter
significant issues.
- See [Disabling New Architecture](#disabling-new-architecture) for
instructions on how to disable new architecture in your app.
- From v2.0.2, `@iterable/react-native-sdk` supports React Native's New
Architecture. Expo SDK 55 requires the New
Architecture; see [New Architecture](#new-architecture) for configuration.
Comment on lines +376 to +378

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

+1

- Your expo app needs to be run as a [development
build](https://docs.expo.dev/develop/development-builds/introduction/) instead
of through Expo Go. Both
Expand All @@ -391,8 +385,8 @@ If you encounter the error "Signing for 'IterableExpoRichPush' requires a develo
- `@iterable/iterable-expo-plugin` is intended for managed workflows, and will
overwrite the files in your `ios` and `android` directories. Any manual
changes to those directories will be overwritten on the next build.
- This plugin has been tested on Expo version 52+. While it may work on
previous versions, they are not supported.
- This plugin has been tested on Expo SDK 55. While it may work on previous
versions, they are not supported.

## πŸŽ‰ Features

Expand Down
16 changes: 8 additions & 8 deletions example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,18 @@
"@iterable/react-native-sdk": "^3.0.0",
"@react-navigation/native": "^7.0.19",
"@react-navigation/stack": "^7.2.3",
"expo": "^53.0.19",
"expo-build-properties": "~0.14.8",
"expo-system-ui": "~5.0.10",
"react": "19.0.0",
"react-native": "0.79.5",
"react-native-safe-area-context": "5.4.0",
"expo": "^55.0.0",
"expo-build-properties": "~55.0.14",
"expo-system-ui": "~55.0.18",
"react": "19.2.0",
"react-native": "0.83.2",
"react-native-safe-area-context": "5.6.0",
"react-native-vector-icons": "^10.2.0",
"react-native-webview": "13.13.5"
"react-native-webview": "14.0.1"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@types/react": "~19.0.10",
"@types/react": "~19.2.0",
"typescript": "^5.3.3"
},
"private": true,
Expand Down
Loading
Loading