@metamask/connect-multichain 0.12.0 → 0.12.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -1
- package/dist/browser/es/connect-multichain.mjs +1 -1
- package/dist/browser/iife/connect-multichain.js +4 -3
- package/dist/browser/iife/connect-multichain.js.map +1 -1
- package/dist/browser/iife/metafile-iife.json +1 -1
- package/dist/browser/umd/connect-multichain.js +1 -1
- package/dist/node/cjs/connect-multichain.js +1 -1
- package/dist/node/es/connect-multichain.mjs +1 -1
- package/dist/react-native/es/connect-multichain.mjs +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.12.1]
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- The QR code modal no longer attempts to create a blob for the MetaMask icon and instead embeds it directly as a `data:` uri. This was breaking the QR code rendering on websites with CSP `connect-src` policy missing `blob:`. ([#273](https://github.com/MetaMask/connect-monorepo/pull/273))
|
|
15
|
+
|
|
10
16
|
## [0.12.0]
|
|
11
17
|
|
|
12
18
|
### Added
|
|
@@ -245,7 +251,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
245
251
|
|
|
246
252
|
- Initial release
|
|
247
253
|
|
|
248
|
-
[Unreleased]: https://github.com/MetaMask/connect-monorepo/compare/@metamask/connect-multichain@0.12.
|
|
254
|
+
[Unreleased]: https://github.com/MetaMask/connect-monorepo/compare/@metamask/connect-multichain@0.12.1...HEAD
|
|
255
|
+
[0.12.1]: https://github.com/MetaMask/connect-monorepo/compare/@metamask/connect-multichain@0.12.0...@metamask/connect-multichain@0.12.1
|
|
249
256
|
[0.12.0]: https://github.com/MetaMask/connect-monorepo/compare/@metamask/connect-multichain@0.11.1...@metamask/connect-multichain@0.12.0
|
|
250
257
|
[0.11.1]: https://github.com/MetaMask/connect-monorepo/compare/@metamask/connect-multichain@0.11.0...@metamask/connect-multichain@0.11.1
|
|
251
258
|
[0.11.0]: https://github.com/MetaMask/connect-monorepo/compare/@metamask/connect-multichain@0.10.0...@metamask/connect-multichain@0.11.0
|
|
@@ -2758,7 +2758,7 @@ var _MetaMaskConnectMultichain = class _MetaMaskConnectMultichain extends Multic
|
|
|
2758
2758
|
versions: __spreadValues({
|
|
2759
2759
|
// typeof guard needed: Metro (React Native) bundles TS source directly,
|
|
2760
2760
|
// bypassing the tsup build that substitutes __PACKAGE_VERSION__.
|
|
2761
|
-
"connect-multichain": false ? "unknown" : "0.12.
|
|
2761
|
+
"connect-multichain": false ? "unknown" : "0.12.1"
|
|
2762
2762
|
}, (_f = options.versions) != null ? _f : {})
|
|
2763
2763
|
});
|
|
2764
2764
|
super(allOptions);
|
|
@@ -33353,8 +33353,9 @@ ${new this._window.XMLSerializer().serializeToString(e3)}`;
|
|
|
33353
33353
|
image: SVG,
|
|
33354
33354
|
imageOptions: {
|
|
33355
33355
|
hideBackgroundDots: true,
|
|
33356
|
-
crossOrigin:
|
|
33357
|
-
imageSize: 0.3
|
|
33356
|
+
crossOrigin: void 0,
|
|
33357
|
+
imageSize: 0.3,
|
|
33358
|
+
saveAsBlob: false
|
|
33358
33359
|
},
|
|
33359
33360
|
dotsOptions: {
|
|
33360
33361
|
color: "#222222",
|
|
@@ -38391,7 +38392,7 @@ ${new this._window.XMLSerializer().serializeToString(e3)}`;
|
|
|
38391
38392
|
versions: __spreadValues({
|
|
38392
38393
|
// typeof guard needed: Metro (React Native) bundles TS source directly,
|
|
38393
38394
|
// bypassing the tsup build that substitutes __PACKAGE_VERSION__.
|
|
38394
|
-
"connect-multichain": false ? "unknown" : "0.12.
|
|
38395
|
+
"connect-multichain": false ? "unknown" : "0.12.1"
|
|
38395
38396
|
}, (_f = options.versions) != null ? _f : {})
|
|
38396
38397
|
});
|
|
38397
38398
|
super(allOptions);
|