Skip to content

Commit 3ed04d0

Browse files
Version Packages
1 parent 4edfce4 commit 3ed04d0

Some content is hidden

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

59 files changed

+315
-336
lines changed

.changeset/cold-years-dream.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/eight-pots-invent.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/flat-feet-fold.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/fluffy-pens-heal.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/fluffy-rabbits-tell.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changeset/gold-seals-pretend.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/grumpy-plants-pretend.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/honest-trainers-remain.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changeset/kind-chefs-sniff.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/many-years-tap.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/metal-points-tease.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/pre.json

Lines changed: 0 additions & 44 deletions
This file was deleted.

.changeset/rare-mugs-begin.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/soft-guests-camp.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changeset/spicy-chefs-marry.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/wild-dodos-notice.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

packages/base/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @ckb-lumos/base
22

3+
## 0.22.0
4+
5+
### Minor Changes
6+
7+
- [#601](https://github.com/ckb-js/lumos/pull/601) [`7e89b4a`](https://github.com/ckb-js/lumos/commit/7e89b4a1b382e9c6fb4e1305bdaf1521bc0cde6e) Thanks [@homura](https://github.com/homura)! - **BREAKING CHANGE**: unpacked number of `blockchain.*.unpack` should be `Hexadecimal` instead of `number` or`BI`
8+
39
## 0.22.0-next.5
410

511
## 0.22.0-next.4

packages/base/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ckb-lumos/base",
3-
"version": "0.22.0-next.5",
3+
"version": "0.22.0",
44
"description": "Base data structures and utilities used in lumos",
55
"author": "Xuejie Xiao <[email protected]>",
66
"homepage": "https://github.com/ckb-js/lumos#readme",
@@ -44,9 +44,9 @@
4444
]
4545
},
4646
"dependencies": {
47-
"@ckb-lumos/bi": "0.22.0-next.5",
48-
"@ckb-lumos/codec": "0.22.0-next.5",
49-
"@ckb-lumos/toolkit": "0.22.0-next.5",
47+
"@ckb-lumos/bi": "0.22.0",
48+
"@ckb-lumos/codec": "0.22.0",
49+
"@ckb-lumos/toolkit": "0.22.0",
5050
"@types/blake2b": "^2.1.0",
5151
"@types/lodash.isequal": "^4.5.5",
5252
"blake2b": "^2.1.3",

packages/bi/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# @ckb-lumos/bi
22

3+
## 0.22.0
4+
35
## 0.22.0-next.5
46

57
## 0.22.0-next.4

packages/bi/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ckb-lumos/bi",
3-
"version": "0.22.0-next.5",
3+
"version": "0.22.0",
44
"description": "Bigint support in lumos",
55
"author": "",
66
"homepage": "https://github.com/ckb-js/lumos#readme",

packages/ckb-indexer/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# @ckb-lumos/ckb-indexer
22

3+
## 0.22.0
4+
35
## 0.22.0-next.5
46

57
## 0.22.0-next.4

packages/ckb-indexer/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ckb-lumos/ckb-indexer",
3-
"version": "0.22.0-next.5",
3+
"version": "0.22.0",
44
"description": "CKB Indexer",
55
"author": "Xuejie Xiao <[email protected]>",
66
"homepage": "https://github.com/ckb-js/lumos#readme",
@@ -19,16 +19,16 @@
1919
"src"
2020
],
2121
"dependencies": {
22-
"@ckb-lumos/base": "0.22.0-next.5",
23-
"@ckb-lumos/bi": "0.22.0-next.5",
24-
"@ckb-lumos/codec": "0.22.0-next.5",
25-
"@ckb-lumos/rpc": "0.22.0-next.5",
26-
"@ckb-lumos/toolkit": "0.22.0-next.5",
22+
"@ckb-lumos/base": "0.22.0",
23+
"@ckb-lumos/bi": "0.22.0",
24+
"@ckb-lumos/codec": "0.22.0",
25+
"@ckb-lumos/rpc": "0.22.0",
26+
"@ckb-lumos/toolkit": "0.22.0",
2727
"cross-fetch": "^3.1.5",
2828
"events": "^3.3.0"
2929
},
3030
"devDependencies": {
31-
"@ckb-lumos/testkit": "0.22.0-next.5",
31+
"@ckb-lumos/testkit": "0.22.0",
3232
"@types/lodash.uniqby": "^4.7.7",
3333
"@types/request": "^2.48.8",
3434
"@types/sinon": "^10.0.6",

packages/codec/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @ckb-lumos/codec
22

3+
## 0.22.0
4+
5+
### Minor Changes
6+
7+
- [#586](https://github.com/ckb-js/lumos/pull/586) [`ee8a352`](https://github.com/ckb-js/lumos/commit/ee8a35272bb1794794fc195c5b2bc7f0985c5da3) Thanks [@homura](https://github.com/homura)! - feat: supported union works with custom id
8+
9+
### Patch Changes
10+
11+
- [#635](https://github.com/ckb-js/lumos/pull/635) [`3f37c5b`](https://github.com/ckb-js/lumos/commit/3f37c5bf34eca113271b7215d473d2cc36dd934b) Thanks [@homura](https://github.com/homura)! - feat: export mol layout definition to ensure tsc can infer types
12+
313
## 0.22.0-next.5
414

515
### Patch Changes

packages/codec/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ckb-lumos/codec",
3-
"version": "0.22.0-next.5",
3+
"version": "0.22.0",
44
"description": "Make your own molecule binding in JavaScript(TypeScript)",
55
"author": "",
66
"homepage": "https://github.com/ckb-js/lumos#readme",
@@ -28,7 +28,7 @@
2828
"clean": "rm -rf lib"
2929
},
3030
"dependencies": {
31-
"@ckb-lumos/bi": "0.22.0-next.5"
31+
"@ckb-lumos/bi": "0.22.0"
3232
},
3333
"publishConfig": {
3434
"access": "public"

packages/common-scripts/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# @ckb-lumos/common-scripts
22

3+
## 0.22.0
4+
5+
### Minor Changes
6+
7+
- [#596](https://github.com/ckb-js/lumos/pull/596) [`ad483d9`](https://github.com/ckb-js/lumos/commit/ad483d9cb55ad38db9604fde456033b9513bc7f1) Thanks [@homura](https://github.com/homura)! - feat: support registered lock in dao operations
8+
9+
- [#607](https://github.com/ckb-js/lumos/pull/607) [`b44fb39`](https://github.com/ckb-js/lumos/commit/b44fb3967d8c0cec40e8a39a885b33a515c2d9d4) Thanks [@homura](https://github.com/homura)! - feat: supported bitcoin auth in omnilock
10+
11+
- [#623](https://github.com/ckb-js/lumos/pull/623) [`028d28e`](https://github.com/ckb-js/lumos/commit/028d28e463fd2f8b58b722684ad9fac982b3b923) Thanks [@homura](https://github.com/homura)! - feat: omnilock bitcoin auth message is changed to `CKB (Bitcoin Layer) transaction: 0x`
12+
13+
- [#624](https://github.com/ckb-js/lumos/pull/624) [`31e2f29`](https://github.com/ckb-js/lumos/commit/31e2f297c2452376917c8b516aaf4e9485cbac7f) Thanks [@homura](https://github.com/homura)! - feat: update mainnet omnilock config
14+
315
## 0.22.0-next.5
416

517
### Minor Changes

packages/common-scripts/package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ckb-lumos/common-scripts",
3-
"version": "0.22.0-next.5",
3+
"version": "0.22.0",
44
"description": "Common script support in lumos",
55
"author": "Xuejie Xiao <[email protected]>",
66
"homepage": "https://github.com/ckb-js/lumos#readme",
@@ -19,13 +19,13 @@
1919
"src"
2020
],
2121
"dependencies": {
22-
"@ckb-lumos/base": "0.22.0-next.5",
23-
"@ckb-lumos/bi": "0.22.0-next.5",
24-
"@ckb-lumos/codec": "0.22.0-next.5",
25-
"@ckb-lumos/config-manager": "0.22.0-next.5",
26-
"@ckb-lumos/helpers": "0.22.0-next.5",
27-
"@ckb-lumos/rpc": "0.22.0-next.5",
28-
"@ckb-lumos/toolkit": "0.22.0-next.5",
22+
"@ckb-lumos/base": "0.22.0",
23+
"@ckb-lumos/bi": "0.22.0",
24+
"@ckb-lumos/codec": "0.22.0",
25+
"@ckb-lumos/config-manager": "0.22.0",
26+
"@ckb-lumos/helpers": "0.22.0",
27+
"@ckb-lumos/rpc": "0.22.0",
28+
"@ckb-lumos/toolkit": "0.22.0",
2929
"bs58": "^5.0.0",
3030
"bech32": "^2.0.0",
3131
"immutable": "^4.3.0"
@@ -55,8 +55,8 @@
5555
]
5656
},
5757
"devDependencies": {
58-
"@ckb-lumos/debugger": "0.22.0-next.5",
59-
"@ckb-lumos/hd": "0.22.0-next.5",
58+
"@ckb-lumos/debugger": "0.22.0",
59+
"@ckb-lumos/hd": "0.22.0",
6060
"@types/keccak": "^3.0.1",
6161
"@unisat/wallet-sdk": "^1.1.2",
6262
"keccak": "^3.0.1"

packages/config-manager/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# @ckb-lumos/config-manager
22

3+
## 0.22.0
4+
5+
### Minor Changes
6+
7+
- [#610](https://github.com/ckb-js/lumos/pull/610) [`0353ba3`](https://github.com/ckb-js/lumos/commit/0353ba357454255703ba86f98b44333c6c966492) Thanks [@homura](https://github.com/homura)! - feat: `refreshScriptConfigs` to refresh deployment config
8+
9+
- [#623](https://github.com/ckb-js/lumos/pull/623) [`028d28e`](https://github.com/ckb-js/lumos/commit/028d28e463fd2f8b58b722684ad9fac982b3b923) Thanks [@homura](https://github.com/homura)! - feat: omnilock bitcoin auth message is changed to `CKB (Bitcoin Layer) transaction: 0x`
10+
11+
- [#605](https://github.com/ckb-js/lumos/pull/605) [`330ec9a`](https://github.com/ckb-js/lumos/commit/330ec9a79dc024e7860aa4785fe9c3bcfffc0767) Thanks [@homura](https://github.com/homura)! - feat: update testnet omnilock config
12+
13+
- [#606](https://github.com/ckb-js/lumos/pull/606) [`349be74`](https://github.com/ckb-js/lumos/commit/349be74dd828c68036373c8eae6dd912c711551f) Thanks [@homura](https://github.com/homura)! - feat: **deprecated** the `helpers` in `config-manager` to avoid confused with `@ckb-lumos/helpers`
14+
15+
### Patch Changes
16+
17+
- [#614](https://github.com/ckb-js/lumos/pull/614) [`5ee0349`](https://github.com/ckb-js/lumos/commit/5ee0349c5d0d5294acafe4788fd225609bfc7235) Thanks [@homura](https://github.com/homura)! - feat: update omnilock script config
18+
319
## 0.22.0-next.5
420

521
## 0.22.0-next.4

packages/config-manager/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ckb-lumos/config-manager",
3-
"version": "0.22.0-next.5",
3+
"version": "0.22.0",
44
"description": "Config manager for lumos",
55
"author": "Xuejie Xiao <[email protected]>",
66
"homepage": "https://github.com/ckb-js/lumos#readme",
@@ -34,10 +34,10 @@
3434
"url": "https://github.com/ckb-js/lumos/issues"
3535
},
3636
"dependencies": {
37-
"@ckb-lumos/base": "0.22.0-next.5",
38-
"@ckb-lumos/bi": "0.22.0-next.5",
39-
"@ckb-lumos/codec": "0.22.0-next.5",
40-
"@ckb-lumos/rpc": "0.22.0-next.5",
37+
"@ckb-lumos/base": "0.22.0",
38+
"@ckb-lumos/bi": "0.22.0",
39+
"@ckb-lumos/codec": "0.22.0",
40+
"@ckb-lumos/rpc": "0.22.0",
4141
"@types/deep-freeze-strict": "^1.1.0",
4242
"deep-freeze-strict": "^1.1.1"
4343
},

packages/debugger/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @ckb-lumos/debugger
22

3+
## 0.22.0
4+
5+
### Minor Changes
6+
7+
- [#607](https://github.com/ckb-js/lumos/pull/607) [`b44fb39`](https://github.com/ckb-js/lumos/commit/b44fb3967d8c0cec40e8a39a885b33a515c2d9d4) Thanks [@homura](https://github.com/homura)! - feat: update default ckb-debugger version to 0.112
8+
39
## 0.22.0-next.5
410

511
## 0.22.0-next.4

0 commit comments

Comments
 (0)