Skip to content

Commit ed01485

Browse files
authored
Merge pull request #1454 from WalletConnect/develop
BOM_1.33.0
2 parents da14957 + 0aab48b commit ed01485

File tree

224 files changed

+3713
-1559
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

224 files changed

+3713
-1559
lines changed

.github/release-drafter.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
template: |
2+
## What's Changed
3+
4+
$CHANGES
5+
6+
**Full Changelog**: https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...$THIS_TAG
Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
name: Android Lint
2+
3+
on:
4+
push:
5+
branches:
6+
- develop
7+
- master
8+
pull_request:
9+
types: [opened, synchronize, reopened]
10+
11+
jobs:
12+
lint:
13+
name: Run Android Lint
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
- name: Checkout code
18+
uses: actions/checkout@v3
19+
20+
- name: Set up JDK 17
21+
uses: actions/setup-java@v3
22+
with:
23+
distribution: 'zulu'
24+
java-version: '17'
25+
architecture: x86_64
26+
27+
- name: Cache Gradle
28+
uses: actions/cache@v3
29+
with:
30+
path: |
31+
~/.gradle/caches
32+
~/.gradle/wrapper
33+
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
34+
restore-keys: |
35+
${{ runner.os }}-gradle-
36+
37+
- name: Setup Required files to build SDKs
38+
with:
39+
GOOGLE_SERVICES_JSON: ${{ secrets.GOOGLE_SERVICES_JSON }}
40+
FIREBASE_SERVICE_CREDENTIALS: ${{ secrets.FIREBASE_SERVICE_CREDENTIALS }}
41+
SECRETS_PROPERTIES: ${{ secrets.SECRETS_PROPERTIES }}
42+
ENCODED_STRING_DEBUG: ${{ secrets.WC_KOTLIN_DEBUG_KEYSTORE }}
43+
SIGNING_KEY_STORE_PATH_DEBUG: ${{ secrets.WC_KOTLIN_DEBUG_KEYSTORE_PATH }}
44+
ENCODED_STRING_INTERNAL: ${{ secrets.WC_KOTLIN_INTERNAL_KEYSTORE }}
45+
SIGNING_KEY_STORE_PATH_INTERNAL: ${{ secrets.WC_KOTLIN_INTERNAL_KEYSTORE_PATH }}
46+
ENCODED_STRING_UPLOAD: ${{ secrets.WC_KOTLIN_UPLOAD_KEYSTORE }}
47+
SIGNING_KEY_STORE_PATH_UPLOAD: ${{ secrets.WC_KOTLIN_UPLOAD_KEYSTORE_PATH }}
48+
uses: ./.github/actions/ci_setup
49+
50+
- name: Fetch Properties File
51+
env:
52+
SECRETS_PROPERTIES: ${{ secrets.SECRETS_PROPERTIES }}
53+
run: echo $SECRETS_PROPERTIES | base64 --decode > secrets.properties
54+
55+
- name: Grant execute permission for gradlew
56+
run: chmod +x gradlew
57+
58+
- name: Run lint
59+
run: ./gradlew lint
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Create Release
2+
3+
on:
4+
push:
5+
tags:
6+
- 'BOM_*.*.*'
7+
8+
jobs:
9+
create_release:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- name: Checkout repository
14+
uses: actions/checkout@v3
15+
16+
- name: Generate Release Notes
17+
id: drafter
18+
uses: release-drafter/release-drafter@v5
19+
with:
20+
config-name: release-drafter.yml
21+
env:
22+
GITHUB_TOKEN: ${{ secrets.ASSIGN_TO_PROJECT_GITHUB_TOKEN }}
23+
24+
- name: Create GitHub Release
25+
uses: actions/create-release@v1
26+
env:
27+
GITHUB_TOKEN: ${{ secrets.ASSIGN_TO_PROJECT_GITHUB_TOKEN }}
28+
with:
29+
tag_name: ${{ github.ref }}
30+
release_name: ${{ github.ref }}
31+
body: ${{ steps.drafter.outputs.changelog }}
32+
draft: false
33+
prerelease: false

.github/workflows/ci_relay.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
- name: Run Relay CI
2626
env:
27-
TEST_RELAY_URL: wss://relay.walletconnect.com
27+
TEST_RELAY_URL: wss://relay.walletconnect.org
2828
TEST_PROJECT_ID: ${{ secrets.WC_CLOUD_PROJECT_ID }}
2929
NOTIFY_INTEGRATION_TESTS_PROJECT_ID: ${{ secrets.NOTIFY_INTEGRATION_TESTS_PROJECT_ID }}
3030
NOTIFY_INTEGRATION_TESTS_SECRET: ${{ secrets.NOTIFY_INTEGRATION_TESTS_SECRET }}
Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
name: Release Artifacts - Sonatype
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
8+
jobs:
9+
release:
10+
name: Release Artifacts
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- name: Checkout repository
15+
uses: actions/checkout@v3
16+
17+
- name: Set up JDK 17
18+
uses: actions/setup-java@v3
19+
with:
20+
distribution: 'zulu'
21+
java-version: '17'
22+
architecture: x86_64
23+
24+
- name: Cache Gradle
25+
uses: actions/cache@v3
26+
with:
27+
path: |
28+
~/.gradle/caches
29+
~/.gradle/wrapper
30+
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
31+
restore-keys: |
32+
${{ runner.os }}-gradle-
33+
34+
- name: Setup Required files to build SDKs
35+
with:
36+
GOOGLE_SERVICES_JSON: ${{ secrets.GOOGLE_SERVICES_JSON }}
37+
FIREBASE_SERVICE_CREDENTIALS: ${{ secrets.FIREBASE_SERVICE_CREDENTIALS }}
38+
SECRETS_PROPERTIES: ${{ secrets.SECRETS_PROPERTIES }}
39+
ENCODED_STRING_DEBUG: ${{ secrets.WC_KOTLIN_DEBUG_KEYSTORE }}
40+
SIGNING_KEY_STORE_PATH_DEBUG: ${{ secrets.WC_KOTLIN_DEBUG_KEYSTORE_PATH }}
41+
ENCODED_STRING_INTERNAL: ${{ secrets.WC_KOTLIN_INTERNAL_KEYSTORE }}
42+
SIGNING_KEY_STORE_PATH_INTERNAL: ${{ secrets.WC_KOTLIN_INTERNAL_KEYSTORE_PATH }}
43+
ENCODED_STRING_UPLOAD: ${{ secrets.WC_KOTLIN_UPLOAD_KEYSTORE }}
44+
SIGNING_KEY_STORE_PATH_UPLOAD: ${{ secrets.WC_KOTLIN_UPLOAD_KEYSTORE_PATH }}
45+
uses: ./.github/actions/ci_setup
46+
47+
- name: Fetch Properties File
48+
env:
49+
SECRETS_PROPERTIES: ${{ secrets.SECRETS_PROPERTIES }}
50+
run: echo $SECRETS_PROPERTIES | base64 --decode > secrets.properties
51+
52+
- name: Grant execute permission for gradlew
53+
run: chmod +x ./gradlew
54+
55+
- name: Run Release all SDKs locally task
56+
env:
57+
SIGNING_KEY_ID: ${{ secrets.SIGNING_KEY_ID }}
58+
SIGNING_KEY: ${{ secrets.SIGNING_KEY }}
59+
SIGNING_PASSWORD: ${{ secrets.SIGNING_PASSWORD }}
60+
SONATYPE_STAGING_PROFILE_ID: ${{ secrets.SONATYPE_STAGING_PROFILE_ID }}
61+
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }}
62+
OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }}
63+
run: |
64+
./gradlew releaseAllSDKs -Ptype=local
65+
66+
- name: Run Publish all SDKs to Sonatype task
67+
env:
68+
SIGNING_KEY_ID: ${{ secrets.SIGNING_KEY_ID }}
69+
SIGNING_KEY: ${{ secrets.SIGNING_KEY }}
70+
SIGNING_PASSWORD: ${{ secrets.SIGNING_PASSWORD }}
71+
SONATYPE_STAGING_PROFILE_ID: ${{ secrets.SONATYPE_STAGING_PROFILE_ID }}
72+
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }}
73+
OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }}
74+
run: |
75+
./gradlew releaseAllSDKs -Ptype=sonatype
76+
77+
- name: Run Close and Release staging repositories task
78+
env:
79+
SIGNING_KEY_ID: ${{ secrets.SIGNING_KEY_ID }}
80+
SIGNING_KEY: ${{ secrets.SIGNING_KEY }}
81+
SIGNING_PASSWORD: ${{ secrets.SIGNING_PASSWORD }}
82+
SONATYPE_STAGING_PROFILE_ID: ${{ secrets.SONATYPE_STAGING_PROFILE_ID }}
83+
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }}
84+
OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }}
85+
run: |
86+
./gradlew closeAndReleaseMultipleRepositories

.github/workflows/ci_scheduled.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727

2828
- name: Run Relay CI
2929
env:
30-
TEST_RELAY_URL: wss://relay.walletconnect.com
30+
TEST_RELAY_URL: wss://relay.walletconnect.org
3131
TEST_PROJECT_ID: ${{ secrets.WC_CLOUD_PROJECT_ID }}
3232
with:
3333
SECRETS_PROPERTIES: ${{ secrets.SECRETS_PROPERTIES }}

ReadMe.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ dependencies {
2323

2424
| BOM | [Core SDK](core/android) | [Sign SDK](protocol/sign) | [Auth SDK](protocol/auth) | [Chat SDK](protocol/chat) | [Notify SDK](protocol/notify) | [web3wallet](product/web3wallet) | [web3modal](product/web3modal) | [WalletConnectModal](product/walletconnectmodal) |
2525
|-----------------------------------------------------------------------------------------|--------------------------|---------------------------|---------------------------|---------------------------|:------------------------------|----------------------------------|--------------------------------|--------------------------------------------------|
26+
| 1.33.0 | 1.33.0 | 2.33.0 | 1.28.4 | 1.0.0.beta31 | 1.3.5 | 1.33.0 | 1.6.0 | 1.5.5 |
2627
| 1.32.1 | 1.32.0 | 2.32.0 | 1.28.3 | 1.0.0.beta30 | 1.3.4 | 1.32.1 | 1.5.4 | 1.5.4 |
2728
| 1.31.3 | 1.31.2 | 2.31.2 | 1.28.2 | 1.0.0.beta30 | 1.3.2 | 1.31.2 | 1.5.2 | 1.5.2 |
2829
| 1.31.1 | 1.31.1 | 2.31.1 | 1.28.1 | 1.0.0.beta26 | 1.3.1 | 1.31.1 | 1.5.1 | 1.5.1 |

0 commit comments

Comments
 (0)