Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
7c4c1b4
Fix dependabot security vulnerabilities by upgrading dependencies
ignaciosantise Feb 23, 2026
cb7a87b
Fix qs version inconsistency in expo-multichain overrides
ignaciosantise Feb 23, 2026
2f507bc
Fix ajv resolution breaking lint, remove qs from expo-multichain
ignaciosantise Feb 23, 2026
54ff4b9
Update expo-multichain lockfile after removing qs override
ignaciosantise Feb 23, 2026
a348447
Merge pull request #536 from reown-com/fix-dependabot-alerts
ignaciosantise Feb 23, 2026
e9f7e80
chore: remove explicit model override, rely on action default claude-…
devin-ai-integration[bot] Feb 25, 2026
cb507a8
chore: update claude model to claude-sonnet-4-6 in auto-review workflow
devin-ai-integration[bot] Feb 25, 2026
04d0538
Merge pull request #537 from reown-com/devin/1772024978-update-claude…
ignaciosantise Feb 25, 2026
7dc0a60
chore: fix high dependabot alerts for node-forge and picomatch
ignaciosantise Mar 30, 2026
817e09e
chore: add picomatch override to expo-multichain example
ignaciosantise Mar 30, 2026
ef1f084
fix: scope picomatch overrides in expo-multichain to avoid v3 downgrade
ignaciosantise Mar 30, 2026
1de64e9
Merge pull request #545 from reown-com/fix-high-dependabot-alerts
ignaciosantise Mar 30, 2026
fb4b0e5
chore: fix 41 dependabot alerts with non-breaking version bumps
ignaciosantise Mar 30, 2026
a120dc3
Merge pull request #546 from reown-com/fix-dep-alerts-batch2
ignaciosantise Mar 30, 2026
4af3f58
fix: support expo router modal wrappers
ignaciosantise Apr 9, 2026
4d9e9a5
chore: align release bumps for appkit adapters
ignaciosantise Apr 9, 2026
e4a938d
chore: bump all packages in changeset
ignaciosantise Apr 9, 2026
e90c597
chore: bump claude auto review version
ignaciosantise Apr 9, 2026
24cb419
chore: removed model from params
ignaciosantise Apr 9, 2026
bfd5507
Merge pull request #550 from reown-com/update-claude-review
ignaciosantise Apr 9, 2026
f98c49f
fix: wrap modal content inside RN modal
ignaciosantise Apr 9, 2026
dbe5a80
chore: code improvements
ignaciosantise Apr 9, 2026
f6b43cc
chore: minor changes
ignaciosantise Apr 10, 2026
17460e1
Merge pull request #549 from reown-com/fix/expo-router-modal-wrapper
ignaciosantise Apr 10, 2026
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
13 changes: 13 additions & 0 deletions .changeset/sharp-cars-approve.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
'@reown/appkit-bitcoin-react-native': patch
'@reown/appkit-coinbase-react-native': patch
'@reown/appkit-common-react-native': patch
'@reown/appkit-core-react-native': patch
'@reown/appkit-ethers-react-native': patch
'@reown/appkit-react-native': patch
'@reown/appkit-solana-react-native': patch
'@reown/appkit-ui-react-native': patch
'@reown/appkit-wagmi-react-native': patch
---

fix: add modalContentWrapper prop to work around Expo Router modal layering issues
5 changes: 2 additions & 3 deletions .github/workflows/claude-auto-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,9 @@ jobs:
fetch-depth: 0

- name: Claude Auto Review
uses: WalletConnect/actions/claude/auto-review@1483e05460107d74c575e31af948ce20f9df6387
uses: WalletConnect/actions/claude/auto-review@abf509235bc59f907de7905071c6910a0ac5de94
with:
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
model: claude-sonnet-4-5-20250929
timeout_minutes: "60"
project_context: |
This is the AppKit React Native SDK, a comprehensive wallet connection and blockchain interaction library for React Native applications.
Expand All @@ -51,4 +50,4 @@ jobs:
- **Code Quality**: ESLint + Prettier rules, JSDoc for public APIs, no inline styles
- **Import Organization**: React/RN → External libs → @reown packages → Relative imports
- **Blockchain Support**: Multi-chain with EVM, Solana, and Bitcoin adapters
- **Developer Experience**: Clean package exports, strongly typed APIs, comprehensive error handling
- **Developer Experience**: Clean package exports, strongly typed APIs, comprehensive error handling
2 changes: 1 addition & 1 deletion apps/native/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
},
"devDependencies": {
"@babel/core": "7.26.10",
"@playwright/test": "1.49.1",
"@playwright/test": "1.55.1",
"@types/gh-pages": "6",
"@types/node": "22.10.1",
"@types/react": "~18.2.79",
Expand Down
4 changes: 3 additions & 1 deletion examples/expo-multichain/app/_layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,9 @@ export default function RootLayout() {
<Stack.Screen name="+not-found" />
</Stack>
<StatusBar style="auto" />
{/* This is a workaround for the Android modal issue. https://github.com/expo/expo/issues/32991#issuecomment-2489620459 */}
{/* Mount AppKit once in the root layout to avoid Android Expo Router modal layering issues.
If your app already uses react-native-screens and transparentModal still hides the modal,
pass modalContentWrapper={FullWindowOverlay} here. */}
<View style={{ position: 'absolute', height: '100%', width: '100%' }}>
<AppKit />
</View>
Expand Down
Loading
Loading