Skip to content

Commit 13eb341

Browse files
authored
Merge pull request #637 from ckb-js/rc/v0.109.2
2 parents 834193f + 9179d02 commit 13eb341

Some content is hidden

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

66 files changed

+8910
-6009
lines changed

.github/workflows/bundle.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
2828

2929
- name: Install Deps
30-
run: npx lerna bootstrap --mutex file:/tmp/.yarn-mutex --concurrency=1;
30+
run: npm install
3131

3232
- name: Compile
3333
run: |

.github/workflows/docs.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ jobs:
1313
persist-credentials: false
1414
- name: Install and build
1515
run: |
16-
npm install -g lerna
17-
lerna bootstrap
16+
npm install
1817
yarn run docs
1918
- name: Deploy
2019
uses: JamesIves/github-pages-deploy-action@3.7.1

.github/workflows/merge_master_into_develop.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@master
1717
- name: Request
18-
uses: repo-sync/pull-request@v3
18+
uses: repo-sync/pull-request@v2
1919
with:
2020
source_branch: master
2121
destination_branch: develop

.github/workflows/tests.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939

4040
- name: Install Deps
4141
if: ${{ steps.is_skip.outputs.IS_SKIP != 'true' }}
42-
run: npx lerna bootstrap --mutex file:/tmp/.yarn-mutex --concurrency=1;
42+
run: npm install
4343

4444
- name: Compile
4545
if: ${{ steps.is_skip.outputs.IS_SKIP != 'true' }}
@@ -51,7 +51,6 @@ jobs:
5151

5252
- name: Upload codecov
5353
if: matrix.os == 'macos-latest' && matrix.node == '18'
54-
uses: codecov/codecov-action@v1
54+
uses: codecov/codecov-action@v3
5555
with:
56-
token: ${{ secrets.CODECOV_TOKEN }}
5756
fail_ci_if_error: true

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
node_modules/
33
*.log
44
packages/*/lib
5+
packages/*/lib-esm
56
.idea
67
*/**/package-lock.json
78
*/**/debug.ts
@@ -14,7 +15,7 @@ playground.ts
1415
#docs
1516
/docs
1617
# ignore for deploy docs
17-
package-lock.json
18+
yarn.lock
1819

1920
# coverage
2021
coverage

CHANGELOG.md

+58
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,64 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [0.109.2](https://github.com/ckb-js/ckb-sdk-js/compare/v0.109.1...v0.109.2) (2024-07-19)
7+
8+
9+
### Features
10+
11+
* enable es module ([be3e757](https://github.com/ckb-js/ckb-sdk-js/commit/be3e757ba71a545e061074e03637778493943445))
12+
* export signWitnesses and calculateTransactionFee ([13c6b3d](https://github.com/ckb-js/ckb-sdk-js/commit/13c6b3def265a6dea39bc735b7267e3eb0355068))
13+
14+
15+
16+
17+
18+
## [0.109.2-alpha.1](https://github.com/ckb-js/ckb-sdk-js/compare/v0.109.2-alpha.0...v0.109.2-alpha.1) (2024-07-18)
19+
20+
21+
22+
23+
### Features
24+
25+
* export signWitnesses and calculateTransactionFee ([13c6b3d](https://github.com/ckb-js/ckb-sdk-js/commit/13c6b3def265a6dea39bc735b7267e3eb0355068))
26+
27+
28+
29+
30+
31+
## [0.109.2-alpha.0](https://github.com/ckb-js/ckb-sdk-js/compare/v0.109.1...v0.109.2-alpha.0) (2024-07-16)
32+
33+
34+
### Features
35+
36+
* enable es module ([#635](https://github.com/ckb-js/ckb-sdk-js/pull/635) & [be3e757](https://github.com/ckb-js/ckb-sdk-js/commit/be3e757ba71a545e061074e03637778493943445))
37+
38+
39+
40+
41+
## [0.109.1](https://github.com/ckb-js/ckb-sdk-js/compare/v0.109.0...v0.109.1) (2024-03-13)
42+
43+
44+
### Bug Fixes
45+
46+
* return empty array if payload of batch request is an empty array ([#616](https://github.com/ckb-js/ckb-sdk-js/issues/616)) ([f649fa6](https://github.com/ckb-js/ckb-sdk-js/commit/f649fa618b20b8dfe70b4547a7356726eee60443))
47+
48+
49+
### Features
50+
51+
* add data2 to script hash_type ([e887c7a](https://github.com/ckb-js/ckb-sdk-js/commit/e887c7a84f61957c3dfa19e4653e302f38daaba4))
52+
* support data2 in address transform ([4c61674](https://github.com/ckb-js/ckb-sdk-js/commit/4c61674c12a96d921a274c922c9490569742dc1d))
53+
54+
55+
56+
57+
# [0.109.1](https://github.com/nervosnetwork/ckb-sdk-js/compare/v0.109.0...v0.109.1) (2024-03-13)
58+
59+
* add data2 to script.hashType ([#629](https://github.com/ckb-js/ckb-sdk-js/pull/629))
60+
61+
62+
63+
664
# [0.109.0](https://github.com/nervosnetwork/ckb-sdk-js/compare/v0.107.0...v0.109.0) (2023-04-26)
765

866
**Note:** Version bump only for package ckb-sdk-js

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
⚠️ **This SDK is obsolete and maintained passively. Please check [Lumos](https://github.com/ckb-js/lumos/) which is updated actively.**
2+
3+
---
4+
15
# CKB SDK JavaScript
26

37
| Service | Master | Develop |

lerna.json

+1-6
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
11
{
2-
"packages": [
3-
"packages/*"
4-
],
5-
"npmClient": "yarn",
6-
"useWorkspaces": true,
7-
"version": "0.109.0"
2+
"version": "0.109.2"
83
}

0 commit comments

Comments
 (0)