@metamask/snaps-controllers 11.2.1 → 11.2.2
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
CHANGED
|
@@ -7,11 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [11.2.2]
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- Increase size of request queue when Snap is starting up ([#3340](https://github.com/MetaMask/snaps/pull/3340))
|
|
15
|
+
|
|
10
16
|
## [11.2.1]
|
|
11
17
|
|
|
12
18
|
### Fixed
|
|
13
19
|
|
|
14
|
-
- Make
|
|
20
|
+
- Make comparison case sensitive in MultichainRouter ([#3310](https://github.com/MetaMask/snaps/pull/3310))
|
|
15
21
|
|
|
16
22
|
## [11.2.0]
|
|
17
23
|
|
|
@@ -709,7 +715,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
709
715
|
- The version of the package no longer needs to match the version of all other
|
|
710
716
|
MetaMask Snaps packages.
|
|
711
717
|
|
|
712
|
-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-controllers@11.2.
|
|
718
|
+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-controllers@11.2.2...HEAD
|
|
719
|
+
[11.2.2]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-controllers@11.2.1...@metamask/snaps-controllers@11.2.2
|
|
713
720
|
[11.2.1]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-controllers@11.2.0...@metamask/snaps-controllers@11.2.1
|
|
714
721
|
[11.2.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-controllers@11.1.0...@metamask/snaps-controllers@11.2.0
|
|
715
722
|
[11.1.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-controllers@11.0.1...@metamask/snaps-controllers@11.1.0
|
|
@@ -1690,7 +1690,7 @@ async function _SnapController_getEndowments(snapId) {
|
|
|
1690
1690
|
if (existingHandler) {
|
|
1691
1691
|
return existingHandler;
|
|
1692
1692
|
}
|
|
1693
|
-
const requestQueue = new RequestQueue_1.RequestQueue(
|
|
1693
|
+
const requestQueue = new RequestQueue_1.RequestQueue(100);
|
|
1694
1694
|
// We need to set up this promise map to map snapIds to their respective startPromises,
|
|
1695
1695
|
// because otherwise we would lose context on the correct startPromise.
|
|
1696
1696
|
const startPromises = new Map();
|