Skip to content
This repository was archived by the owner on Apr 18, 2025. It is now read-only.

Commit 51b5eb3

Browse files
authored
Merge pull request #275 from blocto/release/0.7.0
Release: Merge to publish new version to npm
2 parents 8211244 + 673cd8c commit 51b5eb3

File tree

175 files changed

+66021
-57255
lines changed

Some content is hidden

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

175 files changed

+66021
-57255
lines changed

.github/workflows/release-branch.yml

Lines changed: 9 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -44,20 +44,12 @@ jobs:
4444
commit_message: 'ci: bump package version'
4545
commit_options: '--no-verify'
4646

47-
- name: Create Release Pull Request to main branch
48-
uses: repo-sync/pull-request@v2
49-
with:
50-
source_branch: ${{ github.head_ref }}
51-
destination_branch: 'main'
52-
pr_title: 'Release: Merge to publish new version to npm'
53-
pr_body: |
54-
Please review and merge this Pull Request.
55-
Caution: Merge to main branch will trigger publish to npm.
56-
57-
- name: Create Release Pull Request to develop branch
58-
uses: repo-sync/pull-request@v2
59-
with:
60-
source_branch: ${{ github.head_ref }}
61-
destination_branch: 'develop'
62-
pr_title: 'Release: Merge back new version to develop'
63-
pr_body: 'Merge new prod release back to develop'
47+
- name: Create Release Pull Requests
48+
env:
49+
GITHUB_TOKEN: ${{ secrets.DEV_GITHUB_TOKEN }}
50+
MAIN_TITLE: 'Release: Merge to publish new version to npm'
51+
MAIN_BODY: 'Please review and merge this Pull Request. **Caution: Merge to main branch will trigger publish to npm.**'
52+
DEV_TITLE: 'Release: Merge back new version to develop'
53+
DEV_BODY: 'Merge new prod release back to develop'
54+
run: |
55+
gh pr create --title "$MAIN_TITLE" --body "$MAIN_BODY" --base main && gh pr create --title "$DEV_TITLE" --body "$DEV_BODY" --base develop

.github/workflows/test.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,11 @@ jobs:
3131
run: yarn
3232

3333
- name: Lint, Test, and Try to Build
34+
id: testWithCache
3435
run: yarn turbo lint test build --cache-dir=.turbo
36+
continue-on-error: true
37+
38+
- name: Try to do again without cache
39+
if: failure() && steps.testWithCache.outcome == 'failure'
40+
run: yarn turbo lint test build --force --cache-dir=.turbo
41+

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,5 +87,5 @@ yarn-debug.log*
8787
yarn-error.log*
8888

8989
# next.js
90-
/.next/
90+
.next
9191
/out/

adapters/aptos-wallet-adapter-plugin/CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
# @blocto/aptos-wallet-adapter-plugin
22

3+
## 0.2.5
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [2515a8f]
8+
- Updated dependencies [b40fbed]
9+
- Updated dependencies [4c769f9]
10+
- Updated dependencies [bbf2160]
11+
- Updated dependencies [a3b0243]
12+
- Updated dependencies [1288bd1]
13+
- @blocto/sdk@0.7.0
14+
15+
## 0.2.5-beta.0
16+
17+
### Patch Changes
18+
19+
- Updated dependencies [b40fbed]
20+
- Updated dependencies [4c769f9]
21+
- Updated dependencies [bbf2160]
22+
- Updated dependencies [a3b0243]
23+
- Updated dependencies [1288bd1]
24+
- @blocto/sdk@0.7.0-beta.0
25+
326
## 0.2.4
427

528
### Patch Changes

adapters/aptos-wallet-adapter-plugin/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@blocto/aptos-wallet-adapter-plugin",
3-
"version": "0.2.4",
3+
"version": "0.2.5",
44
"description": "Blocto Wallet plugin to use with Aptos Wallet Adapter",
55
"author": "Blocto Wallet",
66
"main": "./dist/index.js",
@@ -19,7 +19,7 @@
1919
},
2020
"dependencies": {
2121
"@aptos-labs/wallet-adapter-core": "^2.2.0",
22-
"@blocto/sdk": "^0.6.0",
22+
"@blocto/sdk": "^0.7.0",
2323
"aptos": "^1.9.1"
2424
},
2525
"devDependencies": {

adapters/connectkit-connector/CHANGELOG.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,48 @@
11
# @blocto/connectkit-connector
22

3+
## 0.2.0
4+
5+
### Minor Changes
6+
7+
- 464a645: enhance the connecting experience with connectkit using @blocto/connectkit-connector
8+
9+
### Patch Changes
10+
11+
- 2515a8f: Fix wrongly disconnect chain when account not changed
12+
- b40fbed: Fix skip calling enable() when request wallet_disconnect method
13+
- 4c769f9: Clear error message when add not supported chain
14+
- bbf2160: Make loadSwitchableNetwork rpcUrls optional
15+
- a3b0243: Seperate evm accounts from other chains in storage data structure
16+
- Updated dependencies [2515a8f]
17+
- Updated dependencies [b40fbed]
18+
- Updated dependencies [4c769f9]
19+
- Updated dependencies [bbf2160]
20+
- Updated dependencies [a3b0243]
21+
- @blocto/wagmi-connector@1.2.1
22+
23+
## 0.1.2-beta.1
24+
25+
### Patch Changes
26+
27+
- 2515a8f: Fix wrongly disconnect chain when account not changed
28+
- Updated dependencies [2515a8f]
29+
- @blocto/sdk@0.7.0-beta.1
30+
31+
## 0.1.2-beta.0
32+
33+
### Patch Changes
34+
35+
- b40fbed: Fix skip calling enable() when request wallet_disconnect method
36+
- 4c769f9: Clear error message when add not supported chain
37+
- bbf2160: Make loadSwitchableNetwork rpcUrls optional
38+
- a3b0243: Seperate evm accounts from other chains in storage data structure
39+
- Updated dependencies [b40fbed]
40+
- Updated dependencies [4c769f9]
41+
- Updated dependencies [bbf2160]
42+
- Updated dependencies [a3b0243]
43+
- Updated dependencies [1288bd1]
44+
- @blocto/sdk@0.7.0-beta.0
45+
346
## 0.1.1
447

548
### Patch Changes

adapters/connectkit-connector/package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "@blocto/connectkit-connector",
33
"description": "blocto wallet connector to use with connectkit",
4-
"author": "Calvin Chang",
5-
"version": "0.1.1",
4+
"author": "Blocto Wallet",
5+
"version": "0.2.0",
66
"type": "module",
77
"main": "./dist/index.umd.cjs",
88
"module": "./dist/index.js",
@@ -17,26 +17,26 @@
1717
},
1818
"devDependencies": {
1919
"@types/node": "^20.2.5",
20+
"@types/react": "^18",
21+
"connectkit": "^1",
22+
"react": "^18",
2023
"typescript": "^5.1.3",
24+
"viem": "^1.2.9",
2125
"vite": "^4.3.9",
2226
"vite-plugin-dts": "^2.3.0",
23-
"wagmi": "^1",
24-
"viem": "^1.2.9",
25-
"connectkit": "^1",
26-
"react": "^18",
27-
"@types/react": "^18"
27+
"wagmi": "^1"
2828
},
2929
"files": [
3030
"/dist"
3131
],
3232
"dependencies": {
33-
"@blocto/sdk": "^0.6.0"
33+
"@blocto/wagmi-connector": "^1.2.1"
3434
},
3535
"peerDependencies": {
36-
"wagmi": "^1",
36+
"connectkit": "^1.5.3",
37+
"react": "^18",
3738
"viem": "^1",
38-
"connectkit": "^1",
39-
"react": "^18"
39+
"wagmi": "^1"
4040
},
4141
"resolutions": {
4242
"viem": "1.3.0"

0 commit comments

Comments
 (0)