Skip to content

Commit 879c5d7

Browse files
authored
6.8.1 (#4201)
* 6.8.1 * rx.queryAt param CHANGELOG
1 parent cdaec19 commit 879c5d7

File tree

12 files changed

+65
-61
lines changed

12 files changed

+65
-61
lines changed

CHANGELOG.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
11
# CHANGELOG
22

3-
## master
3+
## 6.8.1 Nov 11, 2021
4+
5+
Upgrade priority: Low. Recommended for chains with non-MultiSignature variants where `paymentInfo` is required.
46

57
Changes:
68

9+
- Adjust `paymentInfo` signatures to cater for non-MultiSignature variants
710
- Remove `::generic::` from names & namespaces under metadata v14
811
- Add Polkadot 9122 upgrade block
9-
- Cleanup Polkadot/Kusama/Wetsend/Rococo known types (>= v14 metadata)
12+
- Cleanup Polkadot/Kusama/Westend/Rococo known types (>= v14 metadata)
1013
- Internal `decorateMethod{Promise, Rx}` renamed to `to{Promise, Rx}Method`
11-
- Add short term provider-level caching for historic requests
14+
- Add RPC provider-level LRU for historic requests
15+
- Add optional known runtime version param to internal `rx.queryAt`
1216

1317

1418
## 6.7.2 Nov 9, 2021

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
},
1212
"sideEffects": false,
1313
"type": "commonjs",
14-
"version": "6.7.3-7",
14+
"version": "6.8.0",
1515
"workspaces": [
1616
"packages/*"
1717
],

packages/api-contract/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@
2020
"./detectPackage.cjs"
2121
],
2222
"type": "module",
23-
"version": "6.7.3-7",
23+
"version": "6.8.0",
2424
"main": "index.js",
2525
"dependencies": {
2626
"@babel/runtime": "^7.16.0",
27-
"@polkadot/api": "6.7.3-7",
28-
"@polkadot/types": "6.7.3-7",
27+
"@polkadot/api": "6.8.0",
28+
"@polkadot/types": "6.8.0",
2929
"@polkadot/util": "^7.8.2",
3030
"rxjs": "^7.4.0"
3131
}

packages/api-derive/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,19 +20,19 @@
2020
"./detectPackage.cjs"
2121
],
2222
"type": "module",
23-
"version": "6.7.3-7",
23+
"version": "6.8.0",
2424
"main": "index.js",
2525
"dependencies": {
2626
"@babel/runtime": "^7.16.0",
27-
"@polkadot/api": "6.7.3-7",
28-
"@polkadot/rpc-core": "6.7.3-7",
29-
"@polkadot/types": "6.7.3-7",
27+
"@polkadot/api": "6.8.0",
28+
"@polkadot/rpc-core": "6.8.0",
29+
"@polkadot/types": "6.8.0",
3030
"@polkadot/util": "^7.8.2",
3131
"@polkadot/util-crypto": "^7.8.2",
3232
"rxjs": "^7.4.0"
3333
},
3434
"devDependencies": {
3535
"@polkadot/keyring": "^7.8.2",
36-
"@polkadot/rpc-provider": "6.7.3-7"
36+
"@polkadot/rpc-provider": "6.8.0"
3737
}
3838
}

packages/api/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,16 @@
2020
"./detectPackage.cjs"
2121
],
2222
"type": "module",
23-
"version": "6.7.3-7",
23+
"version": "6.8.0",
2424
"main": "index.js",
2525
"dependencies": {
2626
"@babel/runtime": "^7.16.0",
27-
"@polkadot/api-derive": "6.7.3-7",
27+
"@polkadot/api-derive": "6.8.0",
2828
"@polkadot/keyring": "^7.8.2",
29-
"@polkadot/rpc-core": "6.7.3-7",
30-
"@polkadot/rpc-provider": "6.7.3-7",
31-
"@polkadot/types": "6.7.3-7",
32-
"@polkadot/types-known": "6.7.3-7",
29+
"@polkadot/rpc-core": "6.8.0",
30+
"@polkadot/rpc-provider": "6.8.0",
31+
"@polkadot/types": "6.8.0",
32+
"@polkadot/types-known": "6.8.0",
3333
"@polkadot/util": "^7.8.2",
3434
"@polkadot/util-crypto": "^7.8.2",
3535
"eventemitter3": "^4.0.7",

packages/rpc-core/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@
2020
"./detectPackage.cjs"
2121
],
2222
"type": "module",
23-
"version": "6.7.3-7",
23+
"version": "6.8.0",
2424
"main": "index.js",
2525
"dependencies": {
2626
"@babel/runtime": "^7.16.0",
27-
"@polkadot/rpc-provider": "6.7.3-7",
28-
"@polkadot/types": "6.7.3-7",
27+
"@polkadot/rpc-provider": "6.8.0",
28+
"@polkadot/types": "6.8.0",
2929
"@polkadot/util": "^7.8.2",
3030
"rxjs": "^7.4.0"
3131
},

packages/rpc-provider/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@
2020
"./detectPackage.cjs"
2121
],
2222
"type": "module",
23-
"version": "6.7.3-7",
23+
"version": "6.8.0",
2424
"main": "index.js",
2525
"dependencies": {
2626
"@babel/runtime": "^7.16.0",
27-
"@polkadot/types": "6.7.3-7",
27+
"@polkadot/types": "6.8.0",
2828
"@polkadot/util": "^7.8.2",
2929
"@polkadot/util-crypto": "^7.8.2",
3030
"@polkadot/x-fetch": "^7.8.2",
@@ -34,7 +34,7 @@
3434
},
3535
"devDependencies": {
3636
"@polkadot/keyring": "^7.8.2",
37-
"@polkadot/types": "6.7.3-7",
37+
"@polkadot/types": "6.8.0",
3838
"mock-socket": "^9.0.7",
3939
"nock": "^13.1.4"
4040
}

packages/typegen/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"./detectPackage.cjs"
2121
],
2222
"type": "module",
23-
"version": "6.7.3-7",
23+
"version": "6.8.0",
2424
"main": "index.js",
2525
"bin": {
2626
"polkadot-types-chain-info": "./scripts/polkadot-types-chain-info.cjs",
@@ -33,10 +33,10 @@
3333
"@babel/core": "^7.16.0",
3434
"@babel/register": "^7.16.0",
3535
"@babel/runtime": "^7.16.0",
36-
"@polkadot/api": "6.7.3-7",
37-
"@polkadot/rpc-provider": "6.7.3-7",
38-
"@polkadot/types": "6.7.3-7",
39-
"@polkadot/types-support": "6.7.3-7",
36+
"@polkadot/api": "6.8.0",
37+
"@polkadot/rpc-provider": "6.8.0",
38+
"@polkadot/types": "6.8.0",
39+
"@polkadot/types-support": "6.8.0",
4040
"@polkadot/util": "^7.8.2",
4141
"handlebars": "^4.7.7",
4242
"websocket": "^1.0.34",

packages/types-known/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@
2020
"./detectPackage.cjs"
2121
],
2222
"type": "module",
23-
"version": "6.7.3-7",
23+
"version": "6.8.0",
2424
"main": "index.js",
2525
"dependencies": {
2626
"@babel/runtime": "^7.16.0",
2727
"@polkadot/networks": "^7.8.2",
28-
"@polkadot/types": "6.7.3-7",
28+
"@polkadot/types": "6.8.0",
2929
"@polkadot/util": "^7.8.2"
3030
}
3131
}

packages/types-support/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"./detectPackage.cjs"
2121
],
2222
"type": "module",
23-
"version": "6.7.3-7",
23+
"version": "6.8.0",
2424
"main": "index.js",
2525
"dependencies": {
2626
"@babel/runtime": "^7.16.0",

0 commit comments

Comments
 (0)