Skip to content

Commit c5c77c9

Browse files
authored
Bump deps (#2280)
1 parent 2a033e5 commit c5c77c9

File tree

11 files changed

+61
-58
lines changed

11 files changed

+61
-58
lines changed

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,18 @@
22

33
- **Important** `DispatchInfo` changed `paysFee` to an enum, if using an older version use, `DispatchInfo: 'DispatchInfoTo244'`
44
- Align imOnline `Heartbeat` with Substrate (Thanks to https://github.com/arjanz)
5+
- Adust EVM types to include `Vicinity` (Thanks to https://github.com/drewstone)
56
- Add `derive.democracy.locks` to return extended lock info based on votes
67
- Ensure metadata is only requested once upon startup (bypass on upgrade subscriptions)
78
- Expand testing around `ExtrinsicEra` construction
8-
- Expand `Registry` to direct access to available signed extensions (in addition to types)
9+
- Expand `Registry` to direct access to available signed extensions (in addition to exposed types)
910
- Cater for new `CheckSpecVersion` and `CheckTxVersion` signed extensions (with `SignerPayload` adjustments)
1011
- Cater for new `PrevalidateAttests` signed extensions (Polkadot claims)
12+
- Don't re-calculate submittable extrinsic hash on status checks (optimization)
1113
- Support for both old/new Tuples in `democracy.depositOf` in derives
1214
- Fix democracy `ProxyState` types
1315
- Extends types for Polkadot claims
16+
- Update `@polkadot/util` to 2.10
1417

1518
# 1.13.1 May 6, 2020
1619

@@ -27,7 +30,7 @@
2730

2831
# 1.12.2 Apr 30, 2020
2932

30-
- Update @polkadot/util to stable 2.9.1 (sadly missed in the previous version, stable should match to stable)
33+
- Update `@polkadot/util` to stable 2.9.1 (sadly missed in the previous version, stable should match to stable)
3134

3235
# 1.12.1 Apr 29, 2020
3336

packages/api-contract/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"@polkadot/api": "1.14.0-beta.19",
3131
"@polkadot/rpc-core": "1.14.0-beta.19",
3232
"@polkadot/types": "1.14.0-beta.19",
33-
"@polkadot/util": "^2.10.0-beta.5",
33+
"@polkadot/util": "^2.10.1",
3434
"bn.js": "^5.1.1",
3535
"rxjs": "^6.5.5"
3636
}

packages/api-derive/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@
3232
"@polkadot/rpc-core": "1.14.0-beta.19",
3333
"@polkadot/rpc-provider": "1.14.0-beta.19",
3434
"@polkadot/types": "1.14.0-beta.19",
35-
"@polkadot/util": "^2.10.0-beta.5",
36-
"@polkadot/util-crypto": "^2.10.0-beta.5",
35+
"@polkadot/util": "^2.10.1",
36+
"@polkadot/util-crypto": "^2.10.1",
3737
"bn.js": "^5.1.1",
3838
"memoizee": "^0.4.14",
3939
"rxjs": "^6.5.5"
4040
},
4141
"devDependencies": {
42-
"@polkadot/keyring": "^2.10.0-beta.5"
42+
"@polkadot/keyring": "^2.10.1"
4343
}
4444
}

packages/api/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,19 +28,19 @@
2828
"dependencies": {
2929
"@babel/runtime": "^7.9.6",
3030
"@polkadot/api-derive": "1.14.0-beta.19",
31-
"@polkadot/keyring": "^2.10.0-beta.5",
31+
"@polkadot/keyring": "^2.10.1",
3232
"@polkadot/metadata": "1.14.0-beta.19",
3333
"@polkadot/rpc-core": "1.14.0-beta.19",
3434
"@polkadot/rpc-provider": "1.14.0-beta.19",
3535
"@polkadot/types": "1.14.0-beta.19",
3636
"@polkadot/types-known": "1.14.0-beta.19",
37-
"@polkadot/util": "^2.10.0-beta.5",
38-
"@polkadot/util-crypto": "^2.10.0-beta.5",
37+
"@polkadot/util": "^2.10.1",
38+
"@polkadot/util-crypto": "^2.10.1",
3939
"bn.js": "^5.1.1",
4040
"eventemitter3": "^4.0.1",
4141
"rxjs": "^6.5.5"
4242
},
4343
"devDependencies": {
44-
"@polkadot/keyring": "^2.10.0-beta.5"
44+
"@polkadot/keyring": "^2.10.1"
4545
}
4646
}

packages/metadata/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@
2929
"@babel/runtime": "^7.9.6",
3030
"@polkadot/types": "1.14.0-beta.19",
3131
"@polkadot/types-known": "1.14.0-beta.19",
32-
"@polkadot/util": "^2.10.0-beta.5",
33-
"@polkadot/util-crypto": "^2.10.0-beta.5",
32+
"@polkadot/util": "^2.10.1",
33+
"@polkadot/util-crypto": "^2.10.1",
3434
"bn.js": "^5.1.1"
3535
},
3636
"devDependencies": {
37-
"@polkadot/keyring": "^2.10.0-beta.5"
37+
"@polkadot/keyring": "^2.10.1"
3838
}
3939
}

packages/rpc-core/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@
3030
"@polkadot/metadata": "1.14.0-beta.19",
3131
"@polkadot/rpc-provider": "1.14.0-beta.19",
3232
"@polkadot/types": "1.14.0-beta.19",
33-
"@polkadot/util": "^2.10.0-beta.5",
33+
"@polkadot/util": "^2.10.1",
3434
"memoizee": "^0.4.14",
3535
"rxjs": "^6.5.5"
3636
},
3737
"devDependencies": {
38-
"@polkadot/keyring": "^2.10.0-beta.5"
38+
"@polkadot/keyring": "^2.10.1"
3939
}
4040
}

packages/rpc-provider/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,15 @@
2929
"@babel/runtime": "^7.9.6",
3030
"@polkadot/metadata": "1.14.0-beta.19",
3131
"@polkadot/types": "1.14.0-beta.19",
32-
"@polkadot/util": "^2.10.0-beta.5",
33-
"@polkadot/util-crypto": "^2.10.0-beta.5",
32+
"@polkadot/util": "^2.10.1",
33+
"@polkadot/util-crypto": "^2.10.1",
3434
"bn.js": "^5.1.1",
3535
"eventemitter3": "^4.0.1",
3636
"isomorphic-fetch": "^2.2.1",
3737
"websocket": "^1.0.31"
3838
},
3939
"devDependencies": {
40-
"@polkadot/keyring": "^2.10.0-beta.5",
40+
"@polkadot/keyring": "^2.10.1",
4141
"mock-socket": "^9.0.3",
4242
"nock": "^12.0.3"
4343
}

packages/typegen/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"@polkadot/metadata": "1.14.0-beta.19",
4141
"@polkadot/rpc-provider": "1.14.0-beta.19",
4242
"@polkadot/types": "1.14.0-beta.19",
43-
"@polkadot/util": "^2.10.0-beta.5",
43+
"@polkadot/util": "^2.10.1",
4444
"handlebars": "^4.7.6",
4545
"websocket": "^1.0.31",
4646
"yargs": "^15.3.1"

packages/types-known/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"dependencies": {
2929
"@babel/runtime": "^7.9.6",
3030
"@polkadot/types": "1.14.0-beta.19",
31-
"@polkadot/util": "^2.10.0-beta.5",
31+
"@polkadot/util": "^2.10.1",
3232
"bn.js": "^5.1.1"
3333
},
3434
"devDependencies": {

packages/types/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@
2828
"dependencies": {
2929
"@babel/runtime": "^7.9.6",
3030
"@polkadot/metadata": "1.14.0-beta.19",
31-
"@polkadot/util": "^2.10.0-beta.5",
32-
"@polkadot/util-crypto": "^2.10.0-beta.5",
31+
"@polkadot/util": "^2.10.1",
32+
"@polkadot/util-crypto": "^2.10.1",
3333
"@types/bn.js": "^4.11.6",
3434
"bn.js": "^5.1.1",
3535
"memoizee": "^0.4.14",
3636
"rxjs": "^6.5.5"
3737
},
3838
"devDependencies": {
39-
"@polkadot/keyring": "^2.10.0-beta.5",
39+
"@polkadot/keyring": "^2.10.1",
4040
"@types/memoizee": "^0.4.4"
4141
}
4242
}

0 commit comments

Comments
 (0)