diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b16bd8e127e..40594def1bb5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,22 @@ # CHANGELOG -## 2.2.2-x +## 2.3.1 Oct 19, 2020 + +Upgrade priority: Low. Recommended for `api-contracts` developers and those using large messages via Node.js WS. + +Contributed: + +- Adjust frame size for Node.js WebSockets (Thanks to https://github.com/mnaamani) +- Update warnings to reflect new docs URLs (Thanks to https://github.com/aphelionz) Changes: +- Expose `dispatch{Error, Info}` on all `.tx` results (less boilerplate on info checks) +- Add missing primitive types inside contracts type parsing - Adjust api-contract to expose `Contract.{query, tx}.` and `Blueprint.tx.` +- Rework contracts registry to be generic to all scale-info definitions +- Allow for auto-max weight on contract read/exec (useful in estimation) +- Fix memoization where `BigInt` params are passed ## 2.2.1 Oct 12, 2020 diff --git a/package.json b/package.json index 280fccd7d0bc..f1c24c2bb6f0 100644 --- a/package.json +++ b/package.json @@ -33,5 +33,5 @@ "@types/jest": "^26.0.14", "copyfiles": "^2.4.0" }, - "version": "2.2.2-11" + "version": "2.3.0" } diff --git a/packages/api-contract/package.json b/packages/api-contract/package.json index 5a5bb4ad0837..2a11fb6f8766 100644 --- a/packages/api-contract/package.json +++ b/packages/api-contract/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/api-contract", - "version": "2.2.2-11", + "version": "2.3.0", "description": "Interfaces for interacting with contracts and contract ABIs", "main": "index.js", "keywords": [ @@ -27,10 +27,10 @@ "homepage": "https://github.com/polkadot-js/api/tree/master/packages/api-contract#readme", "dependencies": { "@babel/runtime": "^7.12.1", - "@polkadot/api": "2.2.2-11", - "@polkadot/rpc-core": "2.2.2-11", - "@polkadot/types": "2.2.2-11", - "@polkadot/util": "^3.6.0-beta.16", + "@polkadot/api": "2.3.0", + "@polkadot/rpc-core": "2.3.0", + "@polkadot/types": "2.3.0", + "@polkadot/util": "^3.6.1", "bn.js": "^5.1.3", "rxjs": "^6.6.3" } diff --git a/packages/api-derive/package.json b/packages/api-derive/package.json index bbb16a341458..1f845a0f92df 100644 --- a/packages/api-derive/package.json +++ b/packages/api-derive/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/api-derive", - "version": "2.2.2-11", + "version": "2.3.0", "description": "Common functions used across Polkadot, derived from RPC calls and storage queries.", "main": "index.js", "keywords": [ @@ -28,17 +28,17 @@ "homepage": "https://github.com/polkadot-js/api/tree/master/packages/api-derive#readme", "dependencies": { "@babel/runtime": "^7.12.1", - "@polkadot/api": "2.2.2-11", - "@polkadot/rpc-core": "2.2.2-11", - "@polkadot/rpc-provider": "2.2.2-11", - "@polkadot/types": "2.2.2-11", - "@polkadot/util": "^3.6.0-beta.16", - "@polkadot/util-crypto": "^3.6.0-beta.16", + "@polkadot/api": "2.3.0", + "@polkadot/rpc-core": "2.3.0", + "@polkadot/rpc-provider": "2.3.0", + "@polkadot/types": "2.3.0", + "@polkadot/util": "^3.6.1", + "@polkadot/util-crypto": "^3.6.1", "bn.js": "^5.1.3", "memoizee": "^0.4.14", "rxjs": "^6.6.3" }, "devDependencies": { - "@polkadot/keyring": "^3.6.0-beta.16" + "@polkadot/keyring": "^3.6.1" } } diff --git a/packages/api/package.json b/packages/api/package.json index 3dbe869e4341..077caa43e2a9 100644 --- a/packages/api/package.json +++ b/packages/api/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/api", - "version": "2.2.2-11", + "version": "2.3.0", "description": "Promise and RxJS wrappers around the Polkadot JS RPC", "main": "index.js", "keywords": [ @@ -27,20 +27,20 @@ "homepage": "https://github.com/polkadot-js/api/tree/master/packages/api#readme", "dependencies": { "@babel/runtime": "^7.12.1", - "@polkadot/api-derive": "2.2.2-11", - "@polkadot/keyring": "^3.6.0-beta.16", - "@polkadot/metadata": "2.2.2-11", - "@polkadot/rpc-core": "2.2.2-11", - "@polkadot/rpc-provider": "2.2.2-11", - "@polkadot/types": "2.2.2-11", - "@polkadot/types-known": "2.2.2-11", - "@polkadot/util": "^3.6.0-beta.16", - "@polkadot/util-crypto": "^3.6.0-beta.16", + "@polkadot/api-derive": "2.3.0", + "@polkadot/keyring": "^3.6.1", + "@polkadot/metadata": "2.3.0", + "@polkadot/rpc-core": "2.3.0", + "@polkadot/rpc-provider": "2.3.0", + "@polkadot/types": "2.3.0", + "@polkadot/types-known": "2.3.0", + "@polkadot/util": "^3.6.1", + "@polkadot/util-crypto": "^3.6.1", "bn.js": "^5.1.3", "eventemitter3": "^4.0.7", "rxjs": "^6.6.3" }, "devDependencies": { - "@polkadot/keyring": "^3.6.0-beta.16" + "@polkadot/keyring": "^3.6.1" } } diff --git a/packages/metadata/package.json b/packages/metadata/package.json index a08cbd8b5105..535ecb8591e9 100644 --- a/packages/metadata/package.json +++ b/packages/metadata/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/metadata", - "version": "2.2.2-11", + "version": "2.3.0", "description": "Helpers to extract information from runtime metadata", "main": "index.js", "publishConfig": { @@ -27,13 +27,13 @@ "homepage": "https://github.com/polkadot-js/api/tree/master/packages/type-metadata#readme", "dependencies": { "@babel/runtime": "^7.12.1", - "@polkadot/types": "2.2.2-11", - "@polkadot/types-known": "2.2.2-11", - "@polkadot/util": "^3.6.0-beta.16", - "@polkadot/util-crypto": "^3.6.0-beta.16", + "@polkadot/types": "2.3.0", + "@polkadot/types-known": "2.3.0", + "@polkadot/util": "^3.6.1", + "@polkadot/util-crypto": "^3.6.1", "bn.js": "^5.1.3" }, "devDependencies": { - "@polkadot/keyring": "^3.6.0-beta.16" + "@polkadot/keyring": "^3.6.1" } } diff --git a/packages/rpc-core/package.json b/packages/rpc-core/package.json index 36032926a5ea..bad702b0cb40 100644 --- a/packages/rpc-core/package.json +++ b/packages/rpc-core/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/rpc-core", - "version": "2.2.2-11", + "version": "2.3.0", "description": "A JavaScript wrapper for the Polkadot JsonRPC interface", "main": "index.js", "keywords": [ @@ -27,14 +27,14 @@ "homepage": "https://github.com/polkadot-js/api/tree/master/packages/rpc-core#readme", "dependencies": { "@babel/runtime": "^7.12.1", - "@polkadot/metadata": "2.2.2-11", - "@polkadot/rpc-provider": "2.2.2-11", - "@polkadot/types": "2.2.2-11", - "@polkadot/util": "^3.6.0-beta.16", + "@polkadot/metadata": "2.3.0", + "@polkadot/rpc-provider": "2.3.0", + "@polkadot/types": "2.3.0", + "@polkadot/util": "^3.6.1", "memoizee": "^0.4.14", "rxjs": "^6.6.3" }, "devDependencies": { - "@polkadot/keyring": "^3.6.0-beta.16" + "@polkadot/keyring": "^3.6.1" } } diff --git a/packages/rpc-provider/package.json b/packages/rpc-provider/package.json index e5b0ed058ef2..093aab2cdaba 100644 --- a/packages/rpc-provider/package.json +++ b/packages/rpc-provider/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/rpc-provider", - "version": "2.2.2-11", + "version": "2.3.0", "description": "Transport providers for the API", "main": "index.js", "keywords": [ @@ -27,17 +27,17 @@ "homepage": "https://github.com/polkadot-js/api/tree/master/packages/rpc-provider#readme", "dependencies": { "@babel/runtime": "^7.12.1", - "@polkadot/metadata": "2.2.2-11", - "@polkadot/types": "2.2.2-11", - "@polkadot/util": "^3.6.0-beta.16", - "@polkadot/util-crypto": "^3.6.0-beta.16", + "@polkadot/metadata": "2.3.0", + "@polkadot/types": "2.3.0", + "@polkadot/util": "^3.6.1", + "@polkadot/util-crypto": "^3.6.1", "@polkadot/x-fetch": "^0.3.3", "@polkadot/x-ws": "^0.3.3", "bn.js": "^5.1.3", "eventemitter3": "^4.0.7" }, "devDependencies": { - "@polkadot/keyring": "^3.6.0-beta.16", + "@polkadot/keyring": "^3.6.1", "mock-socket": "^9.0.3", "nock": "^13.0.4" } diff --git a/packages/typegen/package.json b/packages/typegen/package.json index cbfaaa676e05..0d8af34dc63c 100644 --- a/packages/typegen/package.json +++ b/packages/typegen/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/typegen", - "version": "2.2.2-11", + "version": "2.3.0", "description": "Type generation scripts", "main": "index.js", "bin": { @@ -36,11 +36,11 @@ "@babel/core": "^7.12.3", "@babel/register": "^7.12.1", "@babel/runtime": "^7.12.1", - "@polkadot/api": "2.2.2-11", - "@polkadot/metadata": "2.2.2-11", - "@polkadot/rpc-provider": "2.2.2-11", - "@polkadot/types": "2.2.2-11", - "@polkadot/util": "^3.6.0-beta.16", + "@polkadot/api": "2.3.0", + "@polkadot/metadata": "2.3.0", + "@polkadot/rpc-provider": "2.3.0", + "@polkadot/types": "2.3.0", + "@polkadot/util": "^3.6.1", "handlebars": "^4.7.6", "websocket": "^1.0.32", "yargs": "^16.1.0" diff --git a/packages/types-known/package.json b/packages/types-known/package.json index c2007c2fa7bd..70893d9d5b39 100644 --- a/packages/types-known/package.json +++ b/packages/types-known/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/types-known", - "version": "2.2.2-11", + "version": "2.3.0", "description": "A JavaScript wrapper for the Polkadot JsonRPC interface", "main": "index.js", "keywords": [ @@ -27,8 +27,8 @@ "homepage": "https://github.com/polkadot-js/api/tree/master/packages/types-known#readme", "dependencies": { "@babel/runtime": "^7.12.1", - "@polkadot/types": "2.2.2-11", - "@polkadot/util": "^3.6.0-beta.16", + "@polkadot/types": "2.3.0", + "@polkadot/util": "^3.6.1", "bn.js": "^5.1.3" }, "devDependencies": { diff --git a/packages/types/package.json b/packages/types/package.json index e8ff6f84d672..708605a261ba 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/types", - "version": "2.2.2-11", + "version": "2.3.0", "description": "Implementation of the Parity codec", "main": "index.js", "keywords": [ @@ -27,16 +27,16 @@ "homepage": "https://github.com/polkadot-js/api/tree/master/packages/types#readme", "dependencies": { "@babel/runtime": "^7.12.1", - "@polkadot/metadata": "2.2.2-11", - "@polkadot/util": "^3.6.0-beta.16", - "@polkadot/util-crypto": "^3.6.0-beta.16", + "@polkadot/metadata": "2.3.0", + "@polkadot/util": "^3.6.1", + "@polkadot/util-crypto": "^3.6.1", "@types/bn.js": "^4.11.6", "bn.js": "^5.1.3", "memoizee": "^0.4.14", "rxjs": "^6.6.3" }, "devDependencies": { - "@polkadot/keyring": "^3.6.0-beta.16", + "@polkadot/keyring": "^3.6.1", "@types/memoizee": "^0.4.4" } } diff --git a/yarn.lock b/yarn.lock index 2a75312ed479..c9610a86afe9 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1729,47 +1729,47 @@ __metadata: resolution: "@polkadot/api-contract@workspace:packages/api-contract" dependencies: "@babel/runtime": ^7.12.1 - "@polkadot/api": 2.2.2-11 - "@polkadot/rpc-core": 2.2.2-11 - "@polkadot/types": 2.2.2-11 - "@polkadot/util": ^3.6.0-beta.16 + "@polkadot/api": 2.3.0 + "@polkadot/rpc-core": 2.3.0 + "@polkadot/types": 2.3.0 + "@polkadot/util": ^3.6.1 bn.js: ^5.1.3 rxjs: ^6.6.3 languageName: unknown linkType: soft -"@polkadot/api-derive@2.2.2-11, @polkadot/api-derive@workspace:packages/api-derive": +"@polkadot/api-derive@2.3.0, @polkadot/api-derive@workspace:packages/api-derive": version: 0.0.0-use.local resolution: "@polkadot/api-derive@workspace:packages/api-derive" dependencies: "@babel/runtime": ^7.12.1 - "@polkadot/api": 2.2.2-11 - "@polkadot/keyring": ^3.6.0-beta.16 - "@polkadot/rpc-core": 2.2.2-11 - "@polkadot/rpc-provider": 2.2.2-11 - "@polkadot/types": 2.2.2-11 - "@polkadot/util": ^3.6.0-beta.16 - "@polkadot/util-crypto": ^3.6.0-beta.16 + "@polkadot/api": 2.3.0 + "@polkadot/keyring": ^3.6.1 + "@polkadot/rpc-core": 2.3.0 + "@polkadot/rpc-provider": 2.3.0 + "@polkadot/types": 2.3.0 + "@polkadot/util": ^3.6.1 + "@polkadot/util-crypto": ^3.6.1 bn.js: ^5.1.3 memoizee: ^0.4.14 rxjs: ^6.6.3 languageName: unknown linkType: soft -"@polkadot/api@2.2.2-11, @polkadot/api@workspace:packages/api": +"@polkadot/api@2.3.0, @polkadot/api@workspace:packages/api": version: 0.0.0-use.local resolution: "@polkadot/api@workspace:packages/api" dependencies: "@babel/runtime": ^7.12.1 - "@polkadot/api-derive": 2.2.2-11 - "@polkadot/keyring": ^3.6.0-beta.16 - "@polkadot/metadata": 2.2.2-11 - "@polkadot/rpc-core": 2.2.2-11 - "@polkadot/rpc-provider": 2.2.2-11 - "@polkadot/types": 2.2.2-11 - "@polkadot/types-known": 2.2.2-11 - "@polkadot/util": ^3.6.0-beta.16 - "@polkadot/util-crypto": ^3.6.0-beta.16 + "@polkadot/api-derive": 2.3.0 + "@polkadot/keyring": ^3.6.1 + "@polkadot/metadata": 2.3.0 + "@polkadot/rpc-core": 2.3.0 + "@polkadot/rpc-provider": 2.3.0 + "@polkadot/types": 2.3.0 + "@polkadot/types-known": 2.3.0 + "@polkadot/util": ^3.6.1 + "@polkadot/util-crypto": ^3.6.1 bn.js: ^5.1.3 eventemitter3: ^4.0.7 rxjs: ^6.6.3 @@ -1870,65 +1870,65 @@ __metadata: languageName: node linkType: hard -"@polkadot/keyring@npm:^3.6.0-beta.16": - version: 3.6.0-beta.16 - resolution: "@polkadot/keyring@npm:3.6.0-beta.16" +"@polkadot/keyring@npm:^3.6.1": + version: 3.6.1 + resolution: "@polkadot/keyring@npm:3.6.1" dependencies: "@babel/runtime": ^7.12.1 - "@polkadot/util": 3.6.0-beta.16 - "@polkadot/util-crypto": 3.6.0-beta.16 - checksum: 40eae493a1aa6418aa1e861603a76c1441b2bea23b64e897d1a5a75e5c6d9566c76716b1f91e48a5783f7d9863626b8af62b467fdcdd315a4d1088f6468d2329 + "@polkadot/util": 3.6.1 + "@polkadot/util-crypto": 3.6.1 + checksum: 088dd674dee59ae523ea457bbf980b4f1eb9749702e082248c6ead93541dcbea4d2b780d16233db2363632ce70e2f3866ea445fdd14524e336e30cfb27aff07d languageName: node linkType: hard -"@polkadot/metadata@2.2.2-11, @polkadot/metadata@workspace:packages/metadata": +"@polkadot/metadata@2.3.0, @polkadot/metadata@workspace:packages/metadata": version: 0.0.0-use.local resolution: "@polkadot/metadata@workspace:packages/metadata" dependencies: "@babel/runtime": ^7.12.1 - "@polkadot/keyring": ^3.6.0-beta.16 - "@polkadot/types": 2.2.2-11 - "@polkadot/types-known": 2.2.2-11 - "@polkadot/util": ^3.6.0-beta.16 - "@polkadot/util-crypto": ^3.6.0-beta.16 + "@polkadot/keyring": ^3.6.1 + "@polkadot/types": 2.3.0 + "@polkadot/types-known": 2.3.0 + "@polkadot/util": ^3.6.1 + "@polkadot/util-crypto": ^3.6.1 bn.js: ^5.1.3 languageName: unknown linkType: soft -"@polkadot/networks@npm:3.6.0-beta.16": - version: 3.6.0-beta.16 - resolution: "@polkadot/networks@npm:3.6.0-beta.16" +"@polkadot/networks@npm:3.6.1": + version: 3.6.1 + resolution: "@polkadot/networks@npm:3.6.1" dependencies: "@babel/runtime": ^7.12.1 - checksum: 97cc3662e1e4a9889c01b5b500a67c7e9c9259ce8160cbfab49e6664ccaf73e5c2985a7e6d971fa0f1f1a747d8e92bca5458d4b1c26c2d8340be5674b1c2651b + checksum: a9fdeed5f3fada04040c51a9ac6fb66d305a9af57b65c4a71c72726771143eba171a413215f9165703e8e608614bd9a42851f23ea463cf64febc8dfd427d0fd5 languageName: node linkType: hard -"@polkadot/rpc-core@2.2.2-11, @polkadot/rpc-core@workspace:packages/rpc-core": +"@polkadot/rpc-core@2.3.0, @polkadot/rpc-core@workspace:packages/rpc-core": version: 0.0.0-use.local resolution: "@polkadot/rpc-core@workspace:packages/rpc-core" dependencies: "@babel/runtime": ^7.12.1 - "@polkadot/keyring": ^3.6.0-beta.16 - "@polkadot/metadata": 2.2.2-11 - "@polkadot/rpc-provider": 2.2.2-11 - "@polkadot/types": 2.2.2-11 - "@polkadot/util": ^3.6.0-beta.16 + "@polkadot/keyring": ^3.6.1 + "@polkadot/metadata": 2.3.0 + "@polkadot/rpc-provider": 2.3.0 + "@polkadot/types": 2.3.0 + "@polkadot/util": ^3.6.1 memoizee: ^0.4.14 rxjs: ^6.6.3 languageName: unknown linkType: soft -"@polkadot/rpc-provider@2.2.2-11, @polkadot/rpc-provider@workspace:packages/rpc-provider": +"@polkadot/rpc-provider@2.3.0, @polkadot/rpc-provider@workspace:packages/rpc-provider": version: 0.0.0-use.local resolution: "@polkadot/rpc-provider@workspace:packages/rpc-provider" dependencies: "@babel/runtime": ^7.12.1 - "@polkadot/keyring": ^3.6.0-beta.16 - "@polkadot/metadata": 2.2.2-11 - "@polkadot/types": 2.2.2-11 - "@polkadot/util": ^3.6.0-beta.16 - "@polkadot/util-crypto": ^3.6.0-beta.16 + "@polkadot/keyring": ^3.6.1 + "@polkadot/metadata": 2.3.0 + "@polkadot/types": 2.3.0 + "@polkadot/util": ^3.6.1 + "@polkadot/util-crypto": ^3.6.1 "@polkadot/x-fetch": ^0.3.3 "@polkadot/x-ws": ^0.3.3 bn.js: ^5.1.3 @@ -1954,11 +1954,11 @@ __metadata: "@babel/core": ^7.12.3 "@babel/register": ^7.12.1 "@babel/runtime": ^7.12.1 - "@polkadot/api": 2.2.2-11 - "@polkadot/metadata": 2.2.2-11 - "@polkadot/rpc-provider": 2.2.2-11 - "@polkadot/types": 2.2.2-11 - "@polkadot/util": ^3.6.0-beta.16 + "@polkadot/api": 2.3.0 + "@polkadot/metadata": 2.3.0 + "@polkadot/rpc-provider": 2.3.0 + "@polkadot/types": 2.3.0 + "@polkadot/util": ^3.6.1 "@types/websocket": ^1.0.1 "@types/yargs": ^15.0.9 handlebars: ^4.7.6 @@ -1973,27 +1973,27 @@ __metadata: languageName: unknown linkType: soft -"@polkadot/types-known@2.2.2-11, @polkadot/types-known@workspace:packages/types-known": +"@polkadot/types-known@2.3.0, @polkadot/types-known@workspace:packages/types-known": version: 0.0.0-use.local resolution: "@polkadot/types-known@workspace:packages/types-known" dependencies: "@babel/runtime": ^7.12.1 - "@polkadot/types": 2.2.2-11 - "@polkadot/util": ^3.6.0-beta.16 + "@polkadot/types": 2.3.0 + "@polkadot/util": ^3.6.1 "@types/bn.js": ^4.11.6 bn.js: ^5.1.3 languageName: unknown linkType: soft -"@polkadot/types@2.2.2-11, @polkadot/types@workspace:packages/types": +"@polkadot/types@2.3.0, @polkadot/types@workspace:packages/types": version: 0.0.0-use.local resolution: "@polkadot/types@workspace:packages/types" dependencies: "@babel/runtime": ^7.12.1 - "@polkadot/keyring": ^3.6.0-beta.16 - "@polkadot/metadata": 2.2.2-11 - "@polkadot/util": ^3.6.0-beta.16 - "@polkadot/util-crypto": ^3.6.0-beta.16 + "@polkadot/keyring": ^3.6.1 + "@polkadot/metadata": 2.3.0 + "@polkadot/util": ^3.6.1 + "@polkadot/util-crypto": ^3.6.1 "@types/bn.js": ^4.11.6 "@types/memoizee": ^0.4.4 bn.js: ^5.1.3 @@ -2002,13 +2002,13 @@ __metadata: languageName: unknown linkType: soft -"@polkadot/util-crypto@npm:3.6.0-beta.16, @polkadot/util-crypto@npm:^3.6.0-beta.16": - version: 3.6.0-beta.16 - resolution: "@polkadot/util-crypto@npm:3.6.0-beta.16" +"@polkadot/util-crypto@npm:3.6.1, @polkadot/util-crypto@npm:^3.6.1": + version: 3.6.1 + resolution: "@polkadot/util-crypto@npm:3.6.1" dependencies: "@babel/runtime": ^7.12.1 - "@polkadot/networks": 3.6.0-beta.16 - "@polkadot/util": 3.6.0-beta.16 + "@polkadot/networks": 3.6.1 + "@polkadot/util": 3.6.1 "@polkadot/wasm-crypto": ^1.4.1 base-x: ^3.0.8 bip39: ^3.0.2 @@ -2020,13 +2020,13 @@ __metadata: scryptsy: ^2.1.0 tweetnacl: ^1.0.3 xxhashjs: ^0.2.2 - checksum: 882fde3e1c283a37462510f9365d95f2d6cacc022eb304711032b24a9cc877241578424fbf40f174faa82e732753c7d25120e76c558997c9b78bf8169525a67a + checksum: 2b60b400ac9ebdfa5ac05e249b8d88c564a5739a7d8ec52f52c6743707eb05b0d9fd5a96bd9e52eb8f3045b71365cdc22318bef91c2529e0da8f669fa2e34593 languageName: node linkType: hard -"@polkadot/util@npm:3.6.0-beta.16, @polkadot/util@npm:^3.6.0-beta.16": - version: 3.6.0-beta.16 - resolution: "@polkadot/util@npm:3.6.0-beta.16" +"@polkadot/util@npm:3.6.1, @polkadot/util@npm:^3.6.1": + version: 3.6.1 + resolution: "@polkadot/util@npm:3.6.1" dependencies: "@babel/runtime": ^7.12.1 "@polkadot/x-textdecoder": ^0.3.3 @@ -2036,7 +2036,7 @@ __metadata: camelcase: ^5.3.1 chalk: ^4.1.0 ip-regex: ^4.2.0 - checksum: b19a2676af451208fc14e5c93cf3553ffb4e867e5403827519f0700c5f2f53d775a09b8fb292b5999d646a9e347e71b54f74f906273c99640dec1e29ec0ceea4 + checksum: fe56d11fa68eff4c26bfad8b3e8c5340adb46c8e8b6c0ff9215d52efe20f5237c0c2da1c2788ede17880b1ad4d99e82bd62524453ccf9ee08569e8949853adad languageName: node linkType: hard @@ -6456,9 +6456,9 @@ fsevents@^1.2.7: linkType: hard "highlight.js@npm:^10.2.0": - version: 10.2.1 - resolution: "highlight.js@npm:10.2.1" - checksum: a799dabfbf78ae5f369d113bfedcf0ba6ea4f9aefcc44d4b27a6d77ec0d6b90fc31b01137497c9710c7d87ec8b2613e613c9499d69bfa65282bcbaf8ca7daeaa + version: 10.3.1 + resolution: "highlight.js@npm:10.3.1" + checksum: fc7b665c4b00ea371b5a483dbd0586572a8229b24f5d7340afe0e9116364f36ec3b85d550c67f3dc622a19cf2649f6f01f0d2a926edcea9430bd050f79f5ce08 languageName: node linkType: hard