diff --git a/CHANGELOG.md b/CHANGELOG.md index 65684344..5683972c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # CHANGELOG +## 0.70.1 Feb 28, 2021 + +Changes: + +- Use `detectPackage` with `packageInfo` & check for monorepo dependencies +- Remove `mkdirp` resolution to ensure local views work with Webpack +- Updated to `@polkadot/{hw-ledger, keyring, util, util-crypto}` 5.9.2 + + ## 0.69.1 Feb 7, 2021 Changes: diff --git a/package.json b/package.json index 6a4e8df1..2a77845b 100644 --- a/package.json +++ b/package.json @@ -27,8 +27,8 @@ "test:one": "polkadot-dev-run-test" }, "devDependencies": { - "@babel/core": "^7.13.1", - "@babel/runtime": "^7.13.7", + "@babel/core": "^7.13.8", + "@babel/runtime": "^7.13.8", "@polkadot/dev": "^0.61.30", "@polkadot/ts": "^0.3.59", "@types/jest": "^26.0.20", @@ -43,5 +43,5 @@ "webpack-cli": "^3.3.12", "webpack-serve": "^3.2.0" }, - "version": "0.69.2-3" + "version": "0.70.0" } diff --git a/packages/example-react/package.json b/packages/example-react/package.json index 564c4dee..816b6c57 100644 --- a/packages/example-react/package.json +++ b/packages/example-react/package.json @@ -1,12 +1,12 @@ { "name": "@polkadot/example-react", - "version": "0.69.2-3", + "version": "0.70.0", "description": "A very basic example with ui-* & react-* packages", "main": "index.js", "author": "Jaco Greeff ", "maintainers": [], "license": "Apache-2.0", "dependencies": { - "@babel/runtime": "^7.13.7" + "@babel/runtime": "^7.13.8" } } diff --git a/packages/example-vue/package.json b/packages/example-vue/package.json index 3c6dbd26..5d461455 100644 --- a/packages/example-vue/package.json +++ b/packages/example-vue/package.json @@ -1,12 +1,12 @@ { "name": "@polkadot/example-vue", - "version": "0.69.2-3", + "version": "0.70.0", "description": "A very basic example with ui-* & vue-* packages", "main": "index.js", "author": "Jaco Greeff ", "maintainers": [], "license": "Apache-2.0", "dependencies": { - "@babel/runtime": "^7.13.7" + "@babel/runtime": "^7.13.8" } } diff --git a/packages/exampleReactNative/package.json b/packages/exampleReactNative/package.json index 13bc4a12..ec2d6690 100644 --- a/packages/exampleReactNative/package.json +++ b/packages/exampleReactNative/package.json @@ -1,6 +1,6 @@ { "name": "exampleReactNative", - "version": "0.69.2-3", + "version": "0.70.0", "private": true, "scripts": { "copy-workspace-packages": "yarn copy-identicon && yarn copy-ui-shared", @@ -13,9 +13,9 @@ }, "dependencies": { "@polkadot/keyring": "^5.9.2", - "@polkadot/reactnative-identicon": "0.69.2-3", - "@polkadot/ui-keyring": "0.69.2-3", - "@polkadot/ui-settings": "0.69.2-3", + "@polkadot/reactnative-identicon": "0.70.0", + "@polkadot/ui-keyring": "0.70.0", + "@polkadot/ui-settings": "0.70.0", "@polkadot/util": "^5.9.2", "@polkadot/util-crypto": "^5.9.2", "@react-native-community/async-storage": "^1.12.1", @@ -30,8 +30,8 @@ "stream-http": "^3.1.1" }, "devDependencies": { - "@babel/core": "^7.13.1", - "@babel/runtime": "^7.13.7", + "@babel/core": "^7.13.8", + "@babel/runtime": "^7.13.8", "@react-native-community/cli-platform-ios": "^4.13.0", "@types/react-test-renderer": "17.0.1", "babel-jest": "^26.6.3", diff --git a/packages/react-identicon/package.json b/packages/react-identicon/package.json index 4321c8d7..e4ab3590 100644 --- a/packages/react-identicon/package.json +++ b/packages/react-identicon/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/react-identicon", - "version": "0.69.2-3", + "version": "0.70.0", "description": "Renders an SVG picture representing an address", "main": "index.js", "sideEffects": [ @@ -11,10 +11,10 @@ "maintainers": [], "license": "Apache-2.0", "dependencies": { - "@babel/runtime": "^7.13.7", + "@babel/runtime": "^7.13.8", "@polkadot/keyring": "^5.9.2", - "@polkadot/ui-settings": "0.69.2-3", - "@polkadot/ui-shared": "0.69.2-3", + "@polkadot/ui-settings": "0.70.0", + "@polkadot/ui-shared": "0.70.0", "@polkadot/util": "^5.9.2", "@polkadot/util-crypto": "^5.9.2", "color": "^3.1.3", diff --git a/packages/react-qr/package.json b/packages/react-qr/package.json index 6c32655d..77cb2463 100644 --- a/packages/react-qr/package.json +++ b/packages/react-qr/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/react-qr", - "version": "0.69.2-3", + "version": "0.70.0", "description": "Generates and reads QR codes", "main": "index.js", "sideEffects": false, @@ -8,7 +8,7 @@ "maintainers": [], "license": "Apache-2.0", "dependencies": { - "@babel/runtime": "^7.13.7", + "@babel/runtime": "^7.13.8", "@polkadot/util": "^5.9.2", "@polkadot/util-crypto": "^5.9.2", "qrcode-generator": "^1.4.4", diff --git a/packages/reactnative-identicon/package.json b/packages/reactnative-identicon/package.json index 12aad3b8..0da3de51 100644 --- a/packages/reactnative-identicon/package.json +++ b/packages/reactnative-identicon/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/reactnative-identicon", - "version": "0.69.2-3", + "version": "0.70.0", "description": "Renders an SVG picture representing an address", "main": "index.js", "sideEffects": [ @@ -11,8 +11,8 @@ "maintainers": [], "license": "Apache-2.0", "dependencies": { - "@babel/runtime": "^7.13.7", - "@polkadot/ui-shared": "0.69.2-3", + "@babel/runtime": "^7.13.8", + "@polkadot/ui-shared": "0.70.0", "@polkadot/util": "^5.9.2", "@polkadot/util-crypto": "^5.9.2", "react-native-svg": "^12.1.0" @@ -24,6 +24,6 @@ "react-native": "*" }, "devDependencies": { - "@types/react-native": "^0.63.49" + "@types/react-native": "^0.63.50" } } diff --git a/packages/ui-assets/package.json b/packages/ui-assets/package.json index c579ff34..0058bd5c 100644 --- a/packages/ui-assets/package.json +++ b/packages/ui-assets/package.json @@ -1,12 +1,12 @@ { "name": "@polkadot/ui-assets", - "version": "0.69.2-3", + "version": "0.70.0", "description": "Static assets shared accross projects", "main": "index.js", "author": "Jaco Greeff ", "maintainers": [], "license": "Apache-2.0", "dependencies": { - "@babel/runtime": "^7.13.7" + "@babel/runtime": "^7.13.8" } } diff --git a/packages/ui-keyring/package.json b/packages/ui-keyring/package.json index b4584473..958667f3 100644 --- a/packages/ui-keyring/package.json +++ b/packages/ui-keyring/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/ui-keyring", - "version": "0.69.2-3", + "version": "0.70.0", "main": "index.js", "sideEffects": [ "./detectPackage.js", @@ -12,10 +12,10 @@ "contributors": [], "license": "Apache-2.0", "dependencies": { - "@babel/runtime": "^7.13.7", + "@babel/runtime": "^7.13.8", "@polkadot/hw-ledger": "^5.9.2", "@polkadot/keyring": "^5.9.2", - "@polkadot/ui-settings": "0.69.2-3", + "@polkadot/ui-settings": "0.70.0", "@polkadot/util": "^5.9.2", "@polkadot/x-rxjs": "^5.9.2", "mkdirp": "^1.0.4", diff --git a/packages/ui-settings/package.json b/packages/ui-settings/package.json index 27cbd4f2..bf463e51 100644 --- a/packages/ui-settings/package.json +++ b/packages/ui-settings/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/ui-settings", - "version": "0.69.2-3", + "version": "0.70.0", "description": "Manages app settings", "main": "index.js", "sideEffects": false, @@ -8,7 +8,7 @@ "maintainers": [], "license": "Apache-2.0", "dependencies": { - "@babel/runtime": "^7.13.7", + "@babel/runtime": "^7.13.8", "@polkadot/networks": "^5.9.2", "@polkadot/util": "^5.9.2", "eventemitter3": "^4.0.7", diff --git a/packages/ui-shared/package.json b/packages/ui-shared/package.json index b7a1d4fb..5f41c3fb 100644 --- a/packages/ui-shared/package.json +++ b/packages/ui-shared/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/ui-shared", - "version": "0.69.2-3", + "version": "0.70.0", "description": "Shared logic that is usable accross all frameworks-specific areas", "main": "index.js", "sideEffects": false, @@ -8,7 +8,7 @@ "maintainers": [], "license": "Apache-2.0", "dependencies": { - "@babel/runtime": "^7.13.7", + "@babel/runtime": "^7.13.8", "color": "^3.1.3" }, "peerDependencies": { diff --git a/packages/vue-identicon/package.json b/packages/vue-identicon/package.json index 8827a552..db260c07 100644 --- a/packages/vue-identicon/package.json +++ b/packages/vue-identicon/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/vue-identicon", - "version": "0.69.2-3", + "version": "0.70.0", "description": "Renders an SVG picture representing an address", "author": "Jaco Greeff ", "maintainers": [], @@ -11,8 +11,8 @@ ], "license": "Apache-2.0", "dependencies": { - "@babel/runtime": "^7.13.7", - "@polkadot/ui-shared": "0.69.2-3", + "@babel/runtime": "^7.13.8", + "@polkadot/ui-shared": "0.70.0", "@polkadot/util": "^5.9.2", "@polkadot/util-crypto": "^5.9.2", "jdenticon": "3.1.0" diff --git a/yarn.lock b/yarn.lock index 64ecdee1..c04fce15 100644 --- a/yarn.lock +++ b/yarn.lock @@ -51,23 +51,23 @@ __metadata: languageName: node linkType: hard -"@babel/compat-data@npm:^7.13.0, @babel/compat-data@npm:^7.13.5": - version: 7.13.6 - resolution: "@babel/compat-data@npm:7.13.6" - checksum: 0bed7ac3e2c4597140e56db034e2b7a664516c7f094ee521a15efee814a208e3937fd9a5ac12e8d3d6ccfcbbfd35ceced75163fc7b2d9ca71b48d8fcfbc6f990 +"@babel/compat-data@npm:^7.13.0, @babel/compat-data@npm:^7.13.5, @babel/compat-data@npm:^7.13.8": + version: 7.13.8 + resolution: "@babel/compat-data@npm:7.13.8" + checksum: e07e24737973206dd17439224945a354352ce0896d5a0bdd22fc637464eb650bdf6651a42352dc35fa8d55842ce1b66e545a1e3c096ee8f45947dcc32a44be44 languageName: node linkType: hard -"@babel/core@npm:7.13.1, @babel/core@npm:^7.0.0, @babel/core@npm:^7.1.0, @babel/core@npm:^7.13.1, @babel/core@npm:^7.7.5": - version: 7.13.1 - resolution: "@babel/core@npm:7.13.1" +"@babel/core@npm:7.13.8, @babel/core@npm:^7.0.0, @babel/core@npm:^7.1.0, @babel/core@npm:^7.13.1, @babel/core@npm:^7.13.8, @babel/core@npm:^7.7.5": + version: 7.13.8 + resolution: "@babel/core@npm:7.13.8" dependencies: "@babel/code-frame": ^7.12.13 "@babel/generator": ^7.13.0 - "@babel/helper-compilation-targets": ^7.13.0 + "@babel/helper-compilation-targets": ^7.13.8 "@babel/helper-module-transforms": ^7.13.0 "@babel/helpers": ^7.13.0 - "@babel/parser": ^7.13.0 + "@babel/parser": ^7.13.4 "@babel/template": ^7.12.13 "@babel/traverse": ^7.13.0 "@babel/types": ^7.13.0 @@ -76,9 +76,9 @@ __metadata: gensync: ^1.0.0-beta.2 json5: ^2.1.2 lodash: ^4.17.19 - semver: 7.0.0 + semver: ^6.3.0 source-map: ^0.5.0 - checksum: 3adc8e8ce201f7e45a83c6715b11b353e5083339cf32dc84db10bda63b63e4cd785b57ee8d51e0e049a60ebbbf7cd45d594475b6511607b57917076fd5acd888 + checksum: f3c61e635aa41e127775d1191a65aedd4cf90008625eb93ddbd86214ebae6b0793cefd10503b2a4df8aa510d0e1108dfd15e29bde9bbffc899a50015f56f49c4 languageName: node linkType: hard @@ -112,17 +112,17 @@ __metadata: languageName: node linkType: hard -"@babel/helper-compilation-targets@npm:^7.13.0": - version: 7.13.0 - resolution: "@babel/helper-compilation-targets@npm:7.13.0" +"@babel/helper-compilation-targets@npm:^7.13.0, @babel/helper-compilation-targets@npm:^7.13.8": + version: 7.13.8 + resolution: "@babel/helper-compilation-targets@npm:7.13.8" dependencies: - "@babel/compat-data": ^7.13.0 + "@babel/compat-data": ^7.13.8 "@babel/helper-validator-option": ^7.12.17 browserslist: ^4.14.5 - semver: 7.0.0 + semver: ^6.3.0 peerDependencies: "@babel/core": ^7.0.0 - checksum: 55a5af52e24e21ad8033178e55e6fd480375f0c1558ab80de9927c62635fc10ba9e7345020a3c8ad254b8312f21aa9b1198c65043a50671a520c9439bac03fcc + checksum: dbee371e5ff226bb03a036d1af858f038ab6e71fac1ff5014bf69411b71af187bcdb0e49d5352ec5ef5e83186c9b88ee83b74295ba900691095b31017ec59f89 languageName: node linkType: hard @@ -358,7 +358,7 @@ __metadata: languageName: node linkType: hard -"@babel/parser@npm:^7.0.0, @babel/parser@npm:^7.1.0, @babel/parser@npm:^7.12.13, @babel/parser@npm:^7.13.0": +"@babel/parser@npm:^7.0.0, @babel/parser@npm:^7.1.0, @babel/parser@npm:^7.12.13, @babel/parser@npm:^7.13.0, @babel/parser@npm:^7.13.4": version: 7.13.4 resolution: "@babel/parser@npm:7.13.4" bin: @@ -2182,7 +2182,7 @@ __metadata: version: 0.0.0-use.local resolution: "@polkadot/example-react@workspace:packages/example-react" dependencies: - "@babel/runtime": ^7.13.7 + "@babel/runtime": ^7.13.8 languageName: unknown linkType: soft @@ -2190,7 +2190,7 @@ __metadata: version: 0.0.0-use.local resolution: "@polkadot/example-vue@workspace:packages/example-vue" dependencies: - "@babel/runtime": ^7.13.7 + "@babel/runtime": ^7.13.8 languageName: unknown linkType: soft @@ -2247,10 +2247,10 @@ __metadata: version: 0.0.0-use.local resolution: "@polkadot/react-identicon@workspace:packages/react-identicon" dependencies: - "@babel/runtime": ^7.13.7 + "@babel/runtime": ^7.13.8 "@polkadot/keyring": ^5.9.2 - "@polkadot/ui-settings": 0.69.2-3 - "@polkadot/ui-shared": 0.69.2-3 + "@polkadot/ui-settings": 0.70.0 + "@polkadot/ui-shared": 0.70.0 "@polkadot/util": ^5.9.2 "@polkadot/util-crypto": ^5.9.2 "@types/react-copy-to-clipboard": ^5.0.0 @@ -2277,7 +2277,7 @@ __metadata: version: 0.0.0-use.local resolution: "@polkadot/react-qr@workspace:packages/react-qr" dependencies: - "@babel/runtime": ^7.13.7 + "@babel/runtime": ^7.13.8 "@polkadot/util": ^5.9.2 "@polkadot/util-crypto": ^5.9.2 "@types/react-qr-reader": ^2.1.3 @@ -2294,15 +2294,15 @@ __metadata: languageName: unknown linkType: soft -"@polkadot/reactnative-identicon@0.69.2-3, @polkadot/reactnative-identicon@workspace:packages/reactnative-identicon": +"@polkadot/reactnative-identicon@0.70.0, @polkadot/reactnative-identicon@workspace:packages/reactnative-identicon": version: 0.0.0-use.local resolution: "@polkadot/reactnative-identicon@workspace:packages/reactnative-identicon" dependencies: - "@babel/runtime": ^7.13.7 - "@polkadot/ui-shared": 0.69.2-3 + "@babel/runtime": ^7.13.8 + "@polkadot/ui-shared": 0.70.0 "@polkadot/util": ^5.9.2 "@polkadot/util-crypto": ^5.9.2 - "@types/react-native": ^0.63.49 + "@types/react-native": ^0.63.50 react-native-svg: ^12.1.0 peerDependencies: "@polkadot/util": "*" @@ -2325,18 +2325,18 @@ __metadata: version: 0.0.0-use.local resolution: "@polkadot/ui-assets@workspace:packages/ui-assets" dependencies: - "@babel/runtime": ^7.13.7 + "@babel/runtime": ^7.13.8 languageName: unknown linkType: soft -"@polkadot/ui-keyring@0.69.2-3, @polkadot/ui-keyring@workspace:packages/ui-keyring": +"@polkadot/ui-keyring@0.70.0, @polkadot/ui-keyring@workspace:packages/ui-keyring": version: 0.0.0-use.local resolution: "@polkadot/ui-keyring@workspace:packages/ui-keyring" dependencies: - "@babel/runtime": ^7.13.7 + "@babel/runtime": ^7.13.8 "@polkadot/hw-ledger": ^5.9.2 "@polkadot/keyring": ^5.9.2 - "@polkadot/ui-settings": 0.69.2-3 + "@polkadot/ui-settings": 0.70.0 "@polkadot/util": ^5.9.2 "@polkadot/x-rxjs": ^5.9.2 "@types/mkdirp": ^1.0.1 @@ -2350,11 +2350,11 @@ __metadata: languageName: unknown linkType: soft -"@polkadot/ui-settings@0.69.2-3, @polkadot/ui-settings@workspace:packages/ui-settings": +"@polkadot/ui-settings@0.70.0, @polkadot/ui-settings@workspace:packages/ui-settings": version: 0.0.0-use.local resolution: "@polkadot/ui-settings@workspace:packages/ui-settings" dependencies: - "@babel/runtime": ^7.13.7 + "@babel/runtime": ^7.13.8 "@polkadot/networks": ^5.9.2 "@polkadot/util": ^5.9.2 "@types/store": ^2.0.2 @@ -2366,11 +2366,11 @@ __metadata: languageName: unknown linkType: soft -"@polkadot/ui-shared@0.69.2-3, @polkadot/ui-shared@workspace:packages/ui-shared": +"@polkadot/ui-shared@0.70.0, @polkadot/ui-shared@workspace:packages/ui-shared": version: 0.0.0-use.local resolution: "@polkadot/ui-shared@workspace:packages/ui-shared" dependencies: - "@babel/runtime": ^7.13.7 + "@babel/runtime": ^7.13.8 "@polkadot/util": ^5.9.2 "@polkadot/util-crypto": ^5.9.2 "@types/color": ^3.0.1 @@ -2427,8 +2427,8 @@ __metadata: version: 0.0.0-use.local resolution: "@polkadot/vue-identicon@workspace:packages/vue-identicon" dependencies: - "@babel/runtime": ^7.13.7 - "@polkadot/ui-shared": 0.69.2-3 + "@babel/runtime": ^7.13.8 + "@polkadot/ui-shared": 0.70.0 "@polkadot/util": ^5.9.2 "@polkadot/util-crypto": ^5.9.2 jdenticon: 3.1.0 @@ -2993,12 +2993,12 @@ __metadata: languageName: node linkType: hard -"@types/react-native@npm:^0.63.49": - version: 0.63.49 - resolution: "@types/react-native@npm:0.63.49" +"@types/react-native@npm:^0.63.50": + version: 0.63.50 + resolution: "@types/react-native@npm:0.63.50" dependencies: "@types/react": "*" - checksum: 38adc64eeb836141dd1f2516351534192c74731cf15d5ea5239f7b37086762a737877854fedf0605475fe02afc661747a614180bcfe177fc6b876d9e96cf089f + checksum: 9f7b3cb22d5a34da3a09bd331b77d29db885231cd81abd5fa50e08a5d089c48095ad1875123915712decb304706040121f8627e28c9a9826328d3df241823a43 languageName: node linkType: hard @@ -6997,12 +6997,12 @@ __metadata: version: 0.0.0-use.local resolution: "exampleReactNative@workspace:packages/exampleReactNative" dependencies: - "@babel/core": ^7.13.1 - "@babel/runtime": ^7.13.7 + "@babel/core": ^7.13.8 + "@babel/runtime": ^7.13.8 "@polkadot/keyring": ^5.9.2 - "@polkadot/reactnative-identicon": 0.69.2-3 - "@polkadot/ui-keyring": 0.69.2-3 - "@polkadot/ui-settings": 0.69.2-3 + "@polkadot/reactnative-identicon": 0.70.0 + "@polkadot/ui-keyring": 0.70.0 + "@polkadot/ui-settings": 0.70.0 "@polkadot/util": ^5.9.2 "@polkadot/util-crypto": ^5.9.2 "@react-native-community/async-storage": ^1.12.1 @@ -13957,8 +13957,8 @@ fsevents@~2.1.2: version: 0.0.0-use.local resolution: "root-workspace-0b6124@workspace:." dependencies: - "@babel/core": ^7.13.1 - "@babel/runtime": ^7.13.7 + "@babel/core": ^7.13.8 + "@babel/runtime": ^7.13.8 "@polkadot/dev": ^0.61.30 "@polkadot/ts": ^0.3.59 "@types/jest": ^26.0.20