This commit is contained in:
Jaco
2021-06-14 10:15:25 +03:00
committed by GitHub
parent 0adac5f9fa
commit 8866703ad2
14 changed files with 970 additions and 984 deletions
+7
View File
@@ -1,5 +1,12 @@
# CHANGELOG
## 0.80.1, Jun 14, 2021
Changes:
- Updated to `@polkadot/{hw-ledger, keyring, util, util-crypto}` 6.8.1
## 0.79.1, Jun 6, 2021
Changes:
+6 -6
View File
@@ -27,10 +27,10 @@
"test:one": "polkadot-dev-run-test"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/runtime": "^7.14.0",
"@polkadot/dev": "^0.62.38",
"@polkadot/ts": "^0.3.86",
"@babel/core": "^7.14.5",
"@babel/runtime": "^7.14.5",
"@polkadot/dev": "^0.62.42",
"@polkadot/ts": "^0.3.90",
"@types/jest": "^26.0.23",
"babel-plugin-transform-vue-template": "^0.4.2",
"empty": "^0.10.1",
@@ -38,10 +38,10 @@
"react-dom": "^17.0.2",
"react-is": "^17.0.2",
"react-native": "^0.64.2",
"vue-template-compiler": "^2.6.13",
"vue-template-compiler": "^2.6.14",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-serve": "^3.2.0"
},
"version": "0.79.2-2"
"version": "0.80.0"
}
+2 -2
View File
@@ -1,12 +1,12 @@
{
"name": "@polkadot/example-react",
"version": "0.79.2-2",
"version": "0.80.0",
"description": "A very basic example with ui-* & react-* packages",
"main": "index.js",
"author": "Jaco Greeff <jacogr@gmail.com>",
"maintainers": [],
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime": "^7.14.0"
"@babel/runtime": "^7.14.5"
}
}
+2 -2
View File
@@ -1,12 +1,12 @@
{
"name": "@polkadot/example-vue",
"version": "0.79.2-2",
"version": "0.80.0",
"description": "A very basic example with ui-* & vue-* packages",
"main": "index.js",
"author": "Jaco Greeff <jacogr@gmail.com>",
"maintainers": [],
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime": "^7.14.0"
"@babel/runtime": "^7.14.5"
}
}
+9 -9
View File
@@ -1,6 +1,6 @@
{
"name": "exampleReactNative",
"version": "0.79.2-2",
"version": "0.80.0",
"private": true,
"scripts": {
"copy-workspace-packages": "yarn copy-identicon && yarn copy-ui-shared",
@@ -12,12 +12,12 @@
"test": "jest"
},
"dependencies": {
"@polkadot/keyring": "^6.7.1",
"@polkadot/reactnative-identicon": "0.79.2-2",
"@polkadot/ui-keyring": "0.79.2-2",
"@polkadot/ui-settings": "0.79.2-2",
"@polkadot/util": "^6.7.1",
"@polkadot/util-crypto": "^6.7.1",
"@polkadot/keyring": "^6.8.1",
"@polkadot/reactnative-identicon": "0.80.0",
"@polkadot/ui-keyring": "0.80.0",
"@polkadot/ui-settings": "0.80.0",
"@polkadot/util": "^6.8.1",
"@polkadot/util-crypto": "^6.8.1",
"@react-native-community/async-storage": "^1.12.1",
"fast-text-encoding": "^1.0.3",
"get-yarn-workspaces": "^1.0.2",
@@ -30,8 +30,8 @@
"stream-http": "^3.2.0"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/runtime": "^7.14.0",
"@babel/core": "^7.14.5",
"@babel/runtime": "^7.14.5",
"@react-native-community/cli-platform-ios": "^5.0.1-alpha.2",
"@types/react-test-renderer": "17.0.1",
"babel-jest": "^27.0.2",
+9 -9
View File
@@ -1,6 +1,6 @@
{
"name": "@polkadot/react-identicon",
"version": "0.79.2-2",
"version": "0.80.0",
"type": "module",
"description": "Renders an SVG picture representing an address",
"main": "index.js",
@@ -12,12 +12,12 @@
"maintainers": [],
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime": "^7.14.0",
"@polkadot/keyring": "^6.7.1",
"@polkadot/ui-settings": "0.79.2-2",
"@polkadot/ui-shared": "0.79.2-2",
"@polkadot/util": "^6.7.1",
"@polkadot/util-crypto": "^6.7.1",
"@babel/runtime": "^7.14.5",
"@polkadot/keyring": "^6.8.1",
"@polkadot/ui-settings": "0.80.0",
"@polkadot/ui-shared": "0.80.0",
"@polkadot/util": "^6.8.1",
"@polkadot/util-crypto": "^6.8.1",
"color": "^3.1.3",
"ethereum-blockies-base64": "^1.0.2",
"jdenticon": "3.1.0",
@@ -35,8 +35,8 @@
},
"devDependencies": {
"@types/react-copy-to-clipboard": "^5.0.0",
"@types/react-dom": "^17.0.6",
"@types/styled-components": "^5.1.9",
"@types/react-dom": "^17.0.7",
"@types/styled-components": "^5.1.10",
"styled-components": "^5.3.0",
"xmlserializer": "^0.6.1"
}
+5 -5
View File
@@ -1,6 +1,6 @@
{
"name": "@polkadot/react-qr",
"version": "0.79.2-2",
"version": "0.80.0",
"type": "module",
"description": "Generates and reads QR codes",
"main": "index.js",
@@ -9,16 +9,16 @@
"maintainers": [],
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime": "^7.14.0",
"@polkadot/util": "^6.7.1",
"@polkadot/util-crypto": "^6.7.1",
"@babel/runtime": "^7.14.5",
"@polkadot/util": "^6.8.1",
"@polkadot/util-crypto": "^6.8.1",
"qrcode-generator": "^1.4.4",
"react-qr-reader": "^2.2.1",
"styled-components": "^5.3.0"
},
"devDependencies": {
"@types/react-qr-reader": "^2.1.3",
"@types/styled-components": "^5.1.9"
"@types/styled-components": "^5.1.10"
},
"peerDependencies": {
"@polkadot/util": "*",
+5 -5
View File
@@ -1,6 +1,6 @@
{
"name": "@polkadot/reactnative-identicon",
"version": "0.79.2-2",
"version": "0.80.0",
"type": "module",
"description": "Renders an SVG picture representing an address",
"main": "index.js",
@@ -12,10 +12,10 @@
"maintainers": [],
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime": "^7.14.0",
"@polkadot/ui-shared": "0.79.2-2",
"@polkadot/util": "^6.7.1",
"@polkadot/util-crypto": "^6.7.1",
"@babel/runtime": "^7.14.5",
"@polkadot/ui-shared": "0.80.0",
"@polkadot/util": "^6.8.1",
"@polkadot/util-crypto": "^6.8.1",
"react-native-svg": "^12.1.1"
},
"peerDependencies": {
+2 -2
View File
@@ -1,12 +1,12 @@
{
"name": "@polkadot/ui-assets",
"version": "0.79.2-2",
"version": "0.80.0",
"description": "Static assets shared accross projects",
"main": "index.js",
"author": "Jaco Greeff <jacogr@gmail.com>",
"maintainers": [],
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime": "^7.14.0"
"@babel/runtime": "^7.14.5"
}
}
+7 -7
View File
@@ -1,6 +1,6 @@
{
"name": "@polkadot/ui-keyring",
"version": "0.79.2-2",
"version": "0.80.0",
"type": "module",
"main": "index.js",
"sideEffects": [
@@ -13,12 +13,12 @@
"contributors": [],
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime": "^7.14.0",
"@polkadot/hw-ledger": "^6.7.1",
"@polkadot/keyring": "^6.7.1",
"@polkadot/ui-settings": "0.79.2-2",
"@polkadot/util": "^6.7.1",
"@polkadot/x-rxjs": "^6.7.1",
"@babel/runtime": "^7.14.5",
"@polkadot/hw-ledger": "^6.8.1",
"@polkadot/keyring": "^6.8.1",
"@polkadot/ui-settings": "0.80.0",
"@polkadot/util": "^6.8.1",
"@polkadot/x-rxjs": "^6.8.1",
"mkdirp": "^1.0.4",
"store": "^2.0.12"
},
+4 -4
View File
@@ -1,6 +1,6 @@
{
"name": "@polkadot/ui-settings",
"version": "0.79.2-2",
"version": "0.80.0",
"type": "module",
"description": "Manages app settings",
"main": "index.js",
@@ -9,9 +9,9 @@
"maintainers": [],
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime": "^7.14.0",
"@polkadot/networks": "^6.7.1",
"@polkadot/util": "^6.7.1",
"@babel/runtime": "^7.14.5",
"@polkadot/networks": "^6.8.1",
"@polkadot/util": "^6.8.1",
"eventemitter3": "^4.0.7",
"store": "^2.0.12"
},
+4 -4
View File
@@ -1,6 +1,6 @@
{
"name": "@polkadot/ui-shared",
"version": "0.79.2-2",
"version": "0.80.0",
"type": "module",
"description": "Shared logic that is usable accross all frameworks-specific areas",
"main": "index.js",
@@ -9,7 +9,7 @@
"maintainers": [],
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime": "^7.14.0",
"@babel/runtime": "^7.14.5",
"color": "^3.1.3"
},
"peerDependencies": {
@@ -17,8 +17,8 @@
"@polkadot/util-crypto": "*"
},
"devDependencies": {
"@polkadot/util": "^6.7.1",
"@polkadot/util-crypto": "^6.7.1",
"@polkadot/util": "^6.8.1",
"@polkadot/util-crypto": "^6.8.1",
"@types/color": "^3.0.1",
"@types/xmlserializer": "^0.6.2"
}
+6 -6
View File
@@ -1,6 +1,6 @@
{
"name": "@polkadot/vue-identicon",
"version": "0.79.2-2",
"version": "0.80.0",
"type": "module",
"description": "Renders an SVG picture representing an address",
"author": "Jaco Greeff <jacogr@gmail.com>",
@@ -12,10 +12,10 @@
],
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime": "^7.14.0",
"@polkadot/ui-shared": "0.79.2-2",
"@polkadot/util": "^6.7.1",
"@polkadot/util-crypto": "^6.7.1",
"@babel/runtime": "^7.14.5",
"@polkadot/ui-shared": "0.80.0",
"@polkadot/util": "^6.8.1",
"@polkadot/util-crypto": "^6.8.1",
"jdenticon": "3.1.0"
},
"peerDependencies": {
@@ -24,6 +24,6 @@
"vue": "*"
},
"devDependencies": {
"vue": "^2.6.13"
"vue": "^2.6.14"
}
}
+902 -923
View File
File diff suppressed because it is too large Load Diff