diff --git a/CHANGELOG.md b/CHANGELOG.md index 55d4e402..f1269f7e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# 0.47.1 + +- Support for Kusama CC3 (network endpoints) +- Genesis hashes for accounts can now lookup against a range (so CC2-locked accounts will show on CC3) +- Language options have been removed from settings (these will be app-specific) +- QR display loops now have a timeout decay (slower as it loops) + # 0.46.1 - Add an example for using React Native (thanks to https://github.com/cameronfr) diff --git a/lerna.json b/lerna.json index 49c5324a..f8592c0d 100644 --- a/lerna.json +++ b/lerna.json @@ -10,5 +10,5 @@ "packages": [ "packages/*" ], - "version": "0.47.0-beta.12" + "version": "0.47.0" } diff --git a/packages/example-react/package.json b/packages/example-react/package.json index a76a8fbe..0cb35120 100644 --- a/packages/example-react/package.json +++ b/packages/example-react/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/example-react", - "version": "0.47.0-beta.12", + "version": "0.47.0", "description": "A very basic example with ui-* & react-* packages", "main": "index.js", "author": "Jaco Greeff ", diff --git a/packages/example-vue/package.json b/packages/example-vue/package.json index 6f84442a..fa198ed8 100644 --- a/packages/example-vue/package.json +++ b/packages/example-vue/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/example-vue", - "version": "0.47.0-beta.12", + "version": "0.47.0", "description": "A very basic example with ui-* & vue-* packages", "main": "index.js", "author": "Jaco Greeff ", diff --git a/packages/exampleReactNative/package.json b/packages/exampleReactNative/package.json index 81020479..13923ae3 100644 --- a/packages/exampleReactNative/package.json +++ b/packages/exampleReactNative/package.json @@ -1,6 +1,6 @@ { "name": "exampleReactNative", - "version": "0.47.0-beta.12", + "version": "0.47.0", "private": true, "workspaces": { "nohoist": [ @@ -23,9 +23,9 @@ "test": "jest" }, "dependencies": { - "@polkadot/reactnative-identicon": "^0.47.0-beta.12", - "@polkadot/ui-keyring": "^0.47.0-beta.12", - "@polkadot/ui-settings": "^0.47.0-beta.12", + "@polkadot/reactnative-identicon": "^0.47.0", + "@polkadot/ui-keyring": "^0.47.0", + "@polkadot/ui-settings": "^0.47.0", "@react-native-community/async-storage": "^1.6.2", "get-yarn-workspaces": "^1.0.2", "os-browserify": "^0.3.0", diff --git a/packages/react-identicon/package.json b/packages/react-identicon/package.json index 7c991127..ea0ee52b 100644 --- a/packages/react-identicon/package.json +++ b/packages/react-identicon/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/react-identicon", - "version": "0.47.0-beta.12", + "version": "0.47.0", "description": "Renders an SVG picture representing an address", "main": "index.js", "author": "Jaco Greeff ", @@ -10,8 +10,8 @@ "license": "Apache-2.0", "dependencies": { "@babel/runtime": "^7.7.4", - "@polkadot/ui-settings": "^0.47.0-beta.12", - "@polkadot/ui-shared": "^0.47.0-beta.12", + "@polkadot/ui-settings": "^0.47.0", + "@polkadot/ui-shared": "^0.47.0", "@types/color": "^3.0.0", "@types/react-copy-to-clipboard": "^4.3.0", "color": "^3.1.2", @@ -25,8 +25,8 @@ "react": "*" }, "devDependencies": { - "@polkadot/keyring": "^1.7.0-beta.8", - "@polkadot/util-crypto": "^1.7.0-beta.8", + "@polkadot/keyring": "^1.7.1", + "@polkadot/util-crypto": "^1.7.1", "xmlserializer": "^0.6.1" } } diff --git a/packages/react-qr/package.json b/packages/react-qr/package.json index 79b16bde..2a42c2eb 100644 --- a/packages/react-qr/package.json +++ b/packages/react-qr/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/react-qr", - "version": "0.47.0-beta.12", + "version": "0.47.0", "description": "Generates and reads QR codes", "main": "index.js", "author": "Jaco Greeff ", diff --git a/packages/reactnative-identicon/package.json b/packages/reactnative-identicon/package.json index a7de0b60..e7633bfc 100644 --- a/packages/reactnative-identicon/package.json +++ b/packages/reactnative-identicon/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/reactnative-identicon", - "version": "0.47.0-beta.12", + "version": "0.47.0", "description": "Renders an SVG picture representing an address", "main": "index.js", "author": "Jaco Greeff ", @@ -10,7 +10,7 @@ "license": "Apache-2.0", "dependencies": { "@babel/runtime": "^7.7.4", - "@polkadot/ui-shared": "^0.47.0-beta.12", + "@polkadot/ui-shared": "^0.47.0", "react-native-svg": "^9.13.3" }, "peerDependencies": { diff --git a/packages/ui-assets/package.json b/packages/ui-assets/package.json index 6c7ab8c1..b27fb109 100644 --- a/packages/ui-assets/package.json +++ b/packages/ui-assets/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/ui-assets", - "version": "0.47.0-beta.12", + "version": "0.47.0", "description": "Static assets shared accross projects", "main": "index.js", "author": "Jaco Greeff ", diff --git a/packages/ui-keyring/package.json b/packages/ui-keyring/package.json index b5332d94..f8b96b0a 100644 --- a/packages/ui-keyring/package.json +++ b/packages/ui-keyring/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/ui-keyring", - "version": "0.47.0-beta.12", + "version": "0.47.0", "main": "index.js", "repository": "https://github.com/polkadot-js/apps.git", "author": "Jaco Greeff ", @@ -30,9 +30,9 @@ "store": "^2.0.12" }, "devDependencies": { - "@polkadot/keyring": "^1.7.0-beta.8", - "@polkadot/types": "^0.97.0-beta.33", - "@polkadot/util": "^1.7.0-beta.8" + "@polkadot/keyring": "^1.7.1", + "@polkadot/types": "^0.97.0-beta.40", + "@polkadot/util": "^1.7.1" }, "optionalDependencies": { "@ledgerhq/hw-transport-node-hid": "^4.73.7" diff --git a/packages/ui-settings/package.json b/packages/ui-settings/package.json index 17c2ac3f..e4d215d2 100644 --- a/packages/ui-settings/package.json +++ b/packages/ui-settings/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/ui-settings", - "version": "0.47.0-beta.12", + "version": "0.47.0", "description": "Manages app settings", "main": "index.js", "author": "Jaco Greeff ", @@ -14,7 +14,7 @@ "store": "^2.0.12" }, "devDependencies": { - "@polkadot/util": "^1.7.0-beta.8" + "@polkadot/util": "^1.7.1" }, "peerDependencies": { "@polkadot/util": "*" diff --git a/packages/ui-settings/src/defaults/endpoints.ts b/packages/ui-settings/src/defaults/endpoints.ts index e1776843..169ea35f 100644 --- a/packages/ui-settings/src/defaults/endpoints.ts +++ b/packages/ui-settings/src/defaults/endpoints.ts @@ -50,7 +50,7 @@ const CHAIN_INFO: Record = { type: 'Substrate Testnet' }, kusama: { - chainDisplay: 'Kusama CC2', + chainDisplay: 'Kusama CC3', logo: 'kusama', type: 'Polkadot Canary' } @@ -82,7 +82,7 @@ const PROVIDERS: Record = { w3f: { providerDisplay: 'Web3 Foundation', nodes: { - kusama: 'wss://serinus-5.kusama.network/' + kusama: 'wss://cc3-5.kusama.network/' } } }; diff --git a/packages/ui-shared/package.json b/packages/ui-shared/package.json index 74eca077..583fcae0 100644 --- a/packages/ui-shared/package.json +++ b/packages/ui-shared/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/ui-shared", - "version": "0.47.0-beta.12", + "version": "0.47.0", "description": "Shared logic that is usable accross all frameworks-specific areas", "main": "index.js", "author": "Jaco Greeff ", @@ -17,6 +17,6 @@ "@polkadot/util-crypto": "*" }, "devDependencies": { - "@polkadot/util-crypto": "^1.7.0-beta.8" + "@polkadot/util-crypto": "^1.7.1" } } diff --git a/packages/vue-identicon/package.json b/packages/vue-identicon/package.json index cc630502..ed09c169 100644 --- a/packages/vue-identicon/package.json +++ b/packages/vue-identicon/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/vue-identicon", - "version": "0.47.0-beta.12", + "version": "0.47.0", "description": "Renders an SVG picture representing an address", "author": "Jaco Greeff ", "maintainers": [ @@ -10,7 +10,7 @@ "license": "Apache-2.0", "dependencies": { "@babel/runtime": "^7.7.4", - "@polkadot/ui-shared": "^0.47.0-beta.12", + "@polkadot/ui-shared": "^0.47.0", "jdenticon": "2.2.0" }, "peerDependencies": { diff --git a/yarn.lock b/yarn.lock index 3078c3c3..88099678 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2163,14 +2163,14 @@ typescript "^3.7.2" vuepress "^1.2.0" -"@polkadot/keyring@^1.7.0-beta.8": - version "1.7.0-beta.8" - resolved "https://registry.yarnpkg.com/@polkadot/keyring/-/keyring-1.7.0-beta.8.tgz#dc6f15ea629df9dcc0b3e220171148647721701f" - integrity sha512-uv+XIcTeihApUs75gDnaQDaxiJ1LmJDfayRREn+1LKlJMgYhCOdNhISSTn/3hLp+hJLHvIVZ8QEg818Tz+G7WA== +"@polkadot/keyring@^1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@polkadot/keyring/-/keyring-1.7.1.tgz#53a3dd87e547aaee0a877e4fc5fdfc4757e60a0d" + integrity sha512-CWCnU0zsaot0QvEiasKfhCiVlZCIVKOQGPzXiVE9JSjoqTQQJ0BEdaEfM4x0/bFFvvsn/8RcjLPpxBPSfe2eOg== dependencies: "@babel/runtime" "^7.7.4" - "@polkadot/util" "^1.7.0-beta.8" - "@polkadot/util-crypto" "^1.7.0-beta.8" + "@polkadot/util" "^1.7.1" + "@polkadot/util-crypto" "^1.7.1" "@polkadot/ts@^0.1.86": version "0.1.86" @@ -2179,24 +2179,24 @@ dependencies: "@types/chrome" "^0.0.91" -"@polkadot/types@^0.97.0-beta.33": - version "0.97.0-beta.33" - resolved "https://registry.yarnpkg.com/@polkadot/types/-/types-0.97.0-beta.33.tgz#d83d46eabc7b6d5c496f21792bff42dc736eefc9" - integrity sha512-MWHxn9pdh7BCR7tZOPp90jnRdhh1T4GP6sctYYDpskTldneMB+URP38rUoCJuH0c/zJ5zl0z1RUiFksU8Qy7Gg== +"@polkadot/types@^0.97.0-beta.40": + version "0.97.0-beta.40" + resolved "https://registry.yarnpkg.com/@polkadot/types/-/types-0.97.0-beta.40.tgz#d7f25e3652a4ef75059fa58fa1d53a9034ecbab1" + integrity sha512-Jj4ewqGnwq9T8Mb/r0b5PcqAAtpeBnfmpv7MiSdlsZDRs9iyiqzHn6PMh8AnjCdo+fA0pN8YA//LmQXkFPVpig== dependencies: "@babel/runtime" "^7.7.4" - "@polkadot/util" "^1.7.0-beta.8" - "@polkadot/util-crypto" "^1.7.0-beta.8" + "@polkadot/util" "^1.7.1" + "@polkadot/util-crypto" "^1.7.1" "@types/memoizee" "^0.4.3" memoizee "^0.4.14" -"@polkadot/util-crypto@^1.7.0-beta.8": - version "1.7.0-beta.8" - resolved "https://registry.yarnpkg.com/@polkadot/util-crypto/-/util-crypto-1.7.0-beta.8.tgz#900eb500a8fd02172590988872407bfb4dc612c6" - integrity sha512-bIhPp/l2e5zMVsDzb2FqXWlYFChkgZci2nF2skP5X/eD+XDOla5+iuGCvajpY3VIYm0SDu6OK5qmfXZ/gqs8OA== +"@polkadot/util-crypto@^1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@polkadot/util-crypto/-/util-crypto-1.7.1.tgz#6cb1ed1f7ecbea3b41100231830817e7fd116dc6" + integrity sha512-g0JCciJLJXbkc/Q+2QuJgCgS0Xfl7tO97ALdsI00bgSDA7zlh2zhjpx03Ve47hMndmn7K8ClIGrj4nxHx/95Tw== dependencies: "@babel/runtime" "^7.7.4" - "@polkadot/util" "^1.7.0-beta.8" + "@polkadot/util" "^1.7.1" "@polkadot/wasm-crypto" "^0.14.1" "@types/bip39" "^2.4.2" "@types/bs58" "^4.0.0" @@ -2212,10 +2212,10 @@ tweetnacl "^1.0.1" xxhashjs "^0.2.2" -"@polkadot/util@^1.7.0-beta.8": - version "1.7.0-beta.8" - resolved "https://registry.yarnpkg.com/@polkadot/util/-/util-1.7.0-beta.8.tgz#cf7c42f37b141fb647030fd91a805207f691794b" - integrity sha512-Wk+/9ORJJE12pb0D4OadHQM77mUHaTl4Czf1dnWfge0J3pizV3tXojxunFnQwZbCqyJGnYOkbqu+TDPytVVipw== +"@polkadot/util@^1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@polkadot/util/-/util-1.7.1.tgz#cb262fa5a441097c0c093532f70d0b7e0503fbb1" + integrity sha512-tWvh+vYDIiXDIWgAGd9zyJWlDKxQ5KYTKZ9uTlLxfuy1qXEdVOjlX9Qz5+FACU2742e8tTvtvM9KfK05VK5X/A== dependencies: "@babel/runtime" "^7.7.4" "@types/bn.js" "^4.11.5"