Skip to content

Commit 1e40815

Browse files
Release 108.0.0 (#1194)
feat: release 108.0.0
1 parent ea14232 commit 1e40815

File tree

7 files changed

+33
-7
lines changed

7 files changed

+33
-7
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "metamask-sdk-monorepo",
3-
"version": "107.0.0",
3+
"version": "108.0.0",
44
"private": true,
55
"repository": {
66
"type": "git",

packages/sdk-install-modal-web/CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.31.5]
10+
### Added
11+
- chore: add analytics to install modal ([#1189](https://github.com/MetaMask/metamask-sdk/pull/1189))
12+
13+
### Fixed
14+
- fix: correct event handler binding in modal components ([#1191](https://github.com/MetaMask/metamask-sdk/pull/1191))
15+
- fix: remove console log when render install modal ([#1190](https://github.com/MetaMask/metamask-sdk/pull/1190))
16+
917
## [0.31.2]
1018
### Fixed
1119
- Set initial modal tab based on preferDesktop option ([#1158](https://github.com/MetaMask/metamask-sdk/pull/1158))
@@ -173,7 +181,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
173181
- Update GitHub actions workflows ([#102](https://github.com/MetaMask/metamask-sdk/pull/102))
174182
- [FEAT] Yarn v3 migration ([#100](https://github.com/MetaMask/metamask-sdk/pull/100))
175183

176-
[Unreleased]: https://github.com/MetaMask/metamask-sdk/compare/@metamask/sdk-install-modal-web@0.31.2...HEAD
184+
[Unreleased]: https://github.com/MetaMask/metamask-sdk/compare/@metamask/sdk-install-modal-web@0.31.5...HEAD
185+
[0.31.5]: https://github.com/MetaMask/metamask-sdk/compare/@metamask/sdk-install-modal-web@0.31.2...@metamask/sdk-install-modal-web@0.31.5
177186
[0.31.2]: https://github.com/MetaMask/metamask-sdk/compare/@metamask/sdk-install-modal-web@0.31.1...@metamask/sdk-install-modal-web@0.31.2
178187
[0.31.1]: https://github.com/MetaMask/metamask-sdk/compare/@metamask/sdk-install-modal-web@0.31.0...@metamask/sdk-install-modal-web@0.31.1
179188
[0.31.0]: https://github.com/MetaMask/metamask-sdk/compare/@metamask/sdk-install-modal-web@0.30.2...@metamask/sdk-install-modal-web@0.31.0

packages/sdk-install-modal-web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/sdk-install-modal-web",
3-
"version": "0.31.2",
3+
"version": "0.31.5",
44
"description": "MetaMask SDK Install Modal for Web",
55
"homepage": "https://github.com/MetaMask/metamask-sdk#readme",
66
"bugs": {

packages/sdk-react/CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.31.5]
10+
### Added
11+
- feat: improves the react connected hook when using extension & emit terminate when using extension ([#1186](https://github.com/MetaMask/metamask-sdk/pull/1186))
12+
913
## [0.31.4]
1014
### Fixed
1115
- refactor(sdk): always send RPC requests via network and deeplink ([#1181](https://github.com/MetaMask/metamask-sdk/pull/1181))
@@ -295,7 +299,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
295299
- [fix] publishing config ([#135](https://github.com/MetaMask/metamask-sdk/pull/135))
296300
- [feat] initial beta released
297301

298-
[Unreleased]: https://github.com/MetaMask/metamask-sdk/compare/@metamask/sdk-react@0.31.4...HEAD
302+
[Unreleased]: https://github.com/MetaMask/metamask-sdk/compare/@metamask/sdk-react@0.31.5...HEAD
303+
[0.31.5]: https://github.com/MetaMask/metamask-sdk/compare/@metamask/sdk-react@0.31.4...@metamask/sdk-react@0.31.5
299304
[0.31.4]: https://github.com/MetaMask/metamask-sdk/compare/@metamask/sdk-react@0.31.3...@metamask/sdk-react@0.31.4
300305
[0.31.3]: https://github.com/MetaMask/metamask-sdk/compare/@metamask/sdk-react@0.31.2...@metamask/sdk-react@0.31.3
301306
[0.31.2]: https://github.com/MetaMask/metamask-sdk/compare/@metamask/sdk-react@0.31.1...@metamask/sdk-react@0.31.2

packages/sdk-react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/sdk-react",
3-
"version": "0.31.4",
3+
"version": "0.31.5",
44
"description": "A react component and react hooks to connect and use MetaMask",
55
"homepage": "https://github.com/MetaMask/metamask-sdk",
66
"bugs": {

packages/sdk/CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.31.5]
10+
### Added
11+
- feat: improves the react connected hook when using extension & emit terminate when using extension ([#1186](https://github.com/MetaMask/metamask-sdk/pull/1186))
12+
- chore: add analytics to install modal ([#1189](https://github.com/MetaMask/metamask-sdk/pull/1189))
13+
- feat: add MetaMask Flask provider support for EIP-6963 ([#1192](https://github.com/MetaMask/metamask-sdk/pull/1192))
14+
- chore: call getPermissions on accountsChanged when using extension ([#1185](https://github.com/MetaMask/metamask-sdk/pull/1185))
15+
16+
### Fixed
17+
- Fix nextjs localstorage issue ([#1193](https://github.com/MetaMask/metamask-sdk/pull/1193))
18+
- fix(MetaMaskInstaller): replace delete with assignment to undefined for window.ethereum ([#1162](https://github.com/MetaMask/metamask-sdk/pull/1162))
19+
920
## [0.31.4]
1021
### Fixed
1122
- refactor(sdk): always send RPC requests via network and deeplink ([#1181](https://github.com/MetaMask/metamask-sdk/pull/1181))
@@ -462,7 +473,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
462473
### Added
463474
- [FEAT] improve logging + update examples ([#99](https://github.com/MetaMask/metamask-sdk/pull/99))
464475

465-
[Unreleased]: https://github.com/MetaMask/metamask-sdk/compare/@metamask/sdk@0.31.4...HEAD
476+
[Unreleased]: https://github.com/MetaMask/metamask-sdk/compare/@metamask/sdk@0.31.5...HEAD
477+
[0.31.5]: https://github.com/MetaMask/metamask-sdk/compare/@metamask/sdk@0.31.4...@metamask/sdk@0.31.5
466478
[0.31.4]: https://github.com/MetaMask/metamask-sdk/compare/@metamask/sdk@0.31.3...@metamask/sdk@0.31.4
467479
[0.31.3]: https://github.com/MetaMask/metamask-sdk/compare/@metamask/sdk@0.31.2...@metamask/sdk@0.31.3
468480
[0.31.2]: https://github.com/MetaMask/metamask-sdk/compare/@metamask/sdk@0.31.1...@metamask/sdk@0.31.2

packages/sdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/sdk",
3-
"version": "0.31.4",
3+
"version": "0.31.5",
44
"description": "",
55
"homepage": "https://github.com/MetaMask/metamask-sdk#readme",
66
"bugs": {

0 commit comments

Comments
 (0)