feat(expo): update for 1.1.5#213
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 60a89b3d0e
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| ### Patch Changes | ||
|
|
||
| - 45be124: Fix purchase events being dropped on cold start when using a custom purchase controller, which left the paywall spinner stuck forever. The native module emitted events through a single static reference that was overwritten by every module instance, so when more than one app context exists (e.g. expo-dev-client's launcher plus the app) the reference could point at an instance whose JS runtime never subscribed and `onPurchase`/`onPurchaseRestore` were silently dropped. Native events are now emitted to every live module instance (tracked weakly) instead of only the most recently created one. | ||
| - 85fce3f: Add `shouldShowWebPurchaseConfirmationAlert` to `PaywallOptions` in the compat layer. |
There was a problem hiding this comment.
Remove the non-upstream changelog bullet
/workspace/docs/AGENTS.md says SDK changelogs must copy the upstream reference/<sdk>/CHANGELOG.md verbatim. I checked the upstream v1.1.5 tag's CHANGELOG.md, and the 1.1.5 section contains only the 45be124 entry; 85fce3f is present in the tag diff but not in the release changelog. Keeping this line makes the docs changelog diverge from the official release notes, so remove it unless upstream adds it to the changelog.
Useful? React with 👍 / 👎.
Deploying with
|
| Status | Name | Latest Commit | Updated (UTC) |
|---|---|---|---|
| 🔵 In progress View logs |
superwall-docs-staging | 65ab12d | Jun 16 2026, 07:17 PM |
Summary
v1.1.4 -> v1.1.5
Upstream References
Checklist of doc updates
Changes in this release (v1.1.4 -> v1.1.5)
Verification
Note
Low Risk
Content-only documentation updates with no application or SDK code changes in this repository.
Overview
Updates Expo SDK docs for v1.1.5: the welcome and SDK reference overview pages now show v1.1.5 via
SdkLatestVersion(was v1.1.4).Adds a 1.1.5 section to
changelog.mdxdocumenting the upstream patch: purchase/onPurchaseRestoreevents are no longer dropped on cold start with a custom purchase controller when multiple native module instances exist (e.g. expo-dev-client launcher + app), because native events are broadcast to all live module instances instead of a single overwritten static reference.Reviewed by Cursor Bugbot for commit 65ab12d. Bugbot is set up for automated code reviews on this repo. Configure here.