Skip to content

Commit 060df3f

Browse files
Merge pull request #358 from reown-com/develop
prep for v1.2.5
2 parents c126a62 + 2229486 commit 060df3f

File tree

22 files changed

+707
-295
lines changed

22 files changed

+707
-295
lines changed

.changeset/new-olives-approve.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
'@reown/appkit-scaffold-react-native': patch
3+
'@reown/appkit-ethers5-react-native': patch
4+
'@reown/appkit-ethers-react-native': patch
5+
'@reown/appkit-wagmi-react-native': patch
6+
'@reown/appkit-auth-ethers-react-native': patch
7+
'@reown/appkit-auth-wagmi-react-native': patch
8+
'@reown/appkit-coinbase-ethers-react-native': patch
9+
'@reown/appkit-coinbase-wagmi-react-native': patch
10+
'@reown/appkit-common-react-native': patch
11+
'@reown/appkit-core-react-native': patch
12+
'@reown/appkit-scaffold-utils-react-native': patch
13+
'@reown/appkit-siwe-react-native': patch
14+
'@reown/appkit-ui-react-native': patch
15+
'@reown/appkit-wallet-react-native': patch
16+
---
17+
18+
fix: set empty required chains for connections + updated ethereum provider version

.changeset/soft-waves-heal.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
'@reown/appkit-scaffold-react-native': patch
3+
'@reown/appkit-ethers5-react-native': patch
4+
'@reown/appkit-ethers-react-native': patch
5+
'@reown/appkit-wagmi-react-native': patch
6+
'@reown/appkit-auth-ethers-react-native': patch
7+
'@reown/appkit-auth-wagmi-react-native': patch
8+
'@reown/appkit-coinbase-ethers-react-native': patch
9+
'@reown/appkit-coinbase-wagmi-react-native': patch
10+
'@reown/appkit-common-react-native': patch
11+
'@reown/appkit-core-react-native': patch
12+
'@reown/appkit-scaffold-utils-react-native': patch
13+
'@reown/appkit-siwe-react-native': patch
14+
'@reown/appkit-ui-react-native': patch
15+
'@reown/appkit-wallet-react-native': patch
16+
---
17+
18+
fix: solved issue with apple login on iOS
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
name: Alpha Release
2+
3+
on:
4+
workflow_dispatch:
5+
6+
permissions:
7+
contents: read
8+
9+
jobs:
10+
alpha-release:
11+
runs-on: ubuntu-latest
12+
permissions:
13+
contents: write
14+
steps:
15+
- name: Checkout Repo
16+
uses: actions/checkout@v4
17+
with:
18+
fetch-depth: 0
19+
20+
- name: Setup Environment and Install Dependencies (Immutable)
21+
uses: ./.github/actions/setup
22+
23+
- name: Configure Git User
24+
run: |
25+
git config user.name "GitHub Actions Bot"
26+
git config user.email "github-actions[bot]@users.noreply.github.com"
27+
shell: bash
28+
29+
- name: Enter Pre-mode
30+
run: yarn changeset pre enter alpha
31+
shell: bash
32+
33+
- name: Version Packages for Alpha
34+
run: yarn changeset version
35+
shell: bash
36+
env:
37+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
38+
39+
- name: Update Lockfile
40+
run: yarn install --immutable false
41+
shell: bash
42+
43+
- name: Build Packages
44+
run: yarn changeset:prepublish
45+
shell: bash
46+
47+
- name: Configure NPM for Publishing
48+
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
49+
shell: bash
50+
51+
- name: Publish Alpha to NPM
52+
run: yarn changeset publish --tag alpha
53+
shell: bash
54+
env:
55+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
56+
57+
- name: Push Changes and Tags
58+
run: |
59+
git push --follow-tags
60+
shell: bash

.github/workflows/changesets.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
name: Release
1+
name: Changesets
2+
3+
permissions:
4+
contents: read
5+
pull-requests: write
6+
27
on:
38
push:
49
branches: [main]
@@ -21,7 +26,7 @@ jobs:
2126
- name: Checkout Repo
2227
uses: actions/checkout@v4
2328

24-
- name:
29+
- name: Setup Environment
2530
uses: ./.github/actions/setup
2631

2732
- name: Create Release Pull Request or Publish to NPM

.github/workflows/e2e.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
name: E2E Tests
22

3+
permissions:
4+
contents: read
5+
36
on:
47
workflow_dispatch:
58
workflow_call:

.github/workflows/expo-preview.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
name: expo-preview
1+
name: Expo Preview
2+
3+
permissions:
4+
contents: read
5+
26
on:
37
workflow_call:
48
workflow_dispatch:

.github/workflows/expo-update.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
name: expo-update
1+
name: Expo Update
2+
3+
permissions:
4+
contents: read
5+
26
on:
37
workflow_call:
48
workflow_dispatch:

.github/workflows/pull-request.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
name: Pull Request
2+
3+
permissions:
4+
contents: read
5+
26
on:
37
pull_request:
48
types: [opened, reopened, synchronize, ready_for_review]

.github/workflows/snapshot.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
name: Snapshot
2+
3+
permissions:
4+
contents: read
5+
26
on:
37
workflow_call:
48
workflow_dispatch:

.github/workflows/verify.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
name: Verify
2+
3+
permissions:
4+
contents: read
5+
26
on:
37
workflow_call:
48
workflow_dispatch:

0 commit comments

Comments
 (0)