diff --git a/package.json b/package.json index 21519f22e..07d65fa4a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "metamask-sdk-monorepo", - "version": "107.0.0", + "version": "108.0.0", "private": true, "repository": { "type": "git", diff --git a/packages/sdk-install-modal-web/CHANGELOG.md b/packages/sdk-install-modal-web/CHANGELOG.md index 079fd4cd7..c8d9e0929 100644 --- a/packages/sdk-install-modal-web/CHANGELOG.md +++ b/packages/sdk-install-modal-web/CHANGELOG.md @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.31.5] +### Added +- chore: add analytics to install modal ([#1189](https://github.com/MetaMask/metamask-sdk/pull/1189)) + +### Fixed +- fix: correct event handler binding in modal components ([#1191](https://github.com/MetaMask/metamask-sdk/pull/1191)) +- fix: remove console log when render install modal ([#1190](https://github.com/MetaMask/metamask-sdk/pull/1190)) + ## [0.31.2] ### Fixed - 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 - Update GitHub actions workflows ([#102](https://github.com/MetaMask/metamask-sdk/pull/102)) - [FEAT] Yarn v3 migration ([#100](https://github.com/MetaMask/metamask-sdk/pull/100)) -[Unreleased]: https://github.com/MetaMask/metamask-sdk/compare/@metamask/sdk-install-modal-web@0.31.2...HEAD +[Unreleased]: https://github.com/MetaMask/metamask-sdk/compare/@metamask/sdk-install-modal-web@0.31.5...HEAD +[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 [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 [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 [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 diff --git a/packages/sdk-install-modal-web/package.json b/packages/sdk-install-modal-web/package.json index 3064439e1..03eaf9500 100644 --- a/packages/sdk-install-modal-web/package.json +++ b/packages/sdk-install-modal-web/package.json @@ -1,6 +1,6 @@ { "name": "@metamask/sdk-install-modal-web", - "version": "0.31.2", + "version": "0.31.5", "description": "MetaMask SDK Install Modal for Web", "homepage": "https://github.com/MetaMask/metamask-sdk#readme", "bugs": { diff --git a/packages/sdk-react/CHANGELOG.md b/packages/sdk-react/CHANGELOG.md index 8c47de384..878da8fda 100644 --- a/packages/sdk-react/CHANGELOG.md +++ b/packages/sdk-react/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.31.5] +### Added +- feat: improves the react connected hook when using extension & emit terminate when using extension ([#1186](https://github.com/MetaMask/metamask-sdk/pull/1186)) + ## [0.31.4] ### Fixed - 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 - [fix] publishing config ([#135](https://github.com/MetaMask/metamask-sdk/pull/135)) - [feat] initial beta released -[Unreleased]: https://github.com/MetaMask/metamask-sdk/compare/@metamask/sdk-react@0.31.4...HEAD +[Unreleased]: https://github.com/MetaMask/metamask-sdk/compare/@metamask/sdk-react@0.31.5...HEAD +[0.31.5]: https://github.com/MetaMask/metamask-sdk/compare/@metamask/sdk-react@0.31.4...@metamask/sdk-react@0.31.5 [0.31.4]: https://github.com/MetaMask/metamask-sdk/compare/@metamask/sdk-react@0.31.3...@metamask/sdk-react@0.31.4 [0.31.3]: https://github.com/MetaMask/metamask-sdk/compare/@metamask/sdk-react@0.31.2...@metamask/sdk-react@0.31.3 [0.31.2]: https://github.com/MetaMask/metamask-sdk/compare/@metamask/sdk-react@0.31.1...@metamask/sdk-react@0.31.2 diff --git a/packages/sdk-react/package.json b/packages/sdk-react/package.json index cc3963a90..507f20685 100644 --- a/packages/sdk-react/package.json +++ b/packages/sdk-react/package.json @@ -1,6 +1,6 @@ { "name": "@metamask/sdk-react", - "version": "0.31.4", + "version": "0.31.5", "description": "A react component and react hooks to connect and use MetaMask", "homepage": "https://github.com/MetaMask/metamask-sdk", "bugs": { diff --git a/packages/sdk/CHANGELOG.md b/packages/sdk/CHANGELOG.md index 5a4df1c8c..f517d745f 100644 --- a/packages/sdk/CHANGELOG.md +++ b/packages/sdk/CHANGELOG.md @@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.31.5] +### Added +- feat: improves the react connected hook when using extension & emit terminate when using extension ([#1186](https://github.com/MetaMask/metamask-sdk/pull/1186)) +- chore: add analytics to install modal ([#1189](https://github.com/MetaMask/metamask-sdk/pull/1189)) +- feat: add MetaMask Flask provider support for EIP-6963 ([#1192](https://github.com/MetaMask/metamask-sdk/pull/1192)) +- chore: call getPermissions on accountsChanged when using extension ([#1185](https://github.com/MetaMask/metamask-sdk/pull/1185)) + +### Fixed +- Fix nextjs localstorage issue ([#1193](https://github.com/MetaMask/metamask-sdk/pull/1193)) +- fix(MetaMaskInstaller): replace delete with assignment to undefined for window.ethereum ([#1162](https://github.com/MetaMask/metamask-sdk/pull/1162)) + ## [0.31.4] ### Fixed - 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 ### Added - [FEAT] improve logging + update examples ([#99](https://github.com/MetaMask/metamask-sdk/pull/99)) -[Unreleased]: https://github.com/MetaMask/metamask-sdk/compare/@metamask/sdk@0.31.4...HEAD +[Unreleased]: https://github.com/MetaMask/metamask-sdk/compare/@metamask/sdk@0.31.5...HEAD +[0.31.5]: https://github.com/MetaMask/metamask-sdk/compare/@metamask/sdk@0.31.4...@metamask/sdk@0.31.5 [0.31.4]: https://github.com/MetaMask/metamask-sdk/compare/@metamask/sdk@0.31.3...@metamask/sdk@0.31.4 [0.31.3]: https://github.com/MetaMask/metamask-sdk/compare/@metamask/sdk@0.31.2...@metamask/sdk@0.31.3 [0.31.2]: https://github.com/MetaMask/metamask-sdk/compare/@metamask/sdk@0.31.1...@metamask/sdk@0.31.2 diff --git a/packages/sdk/package.json b/packages/sdk/package.json index 53031e736..9a5084354 100644 --- a/packages/sdk/package.json +++ b/packages/sdk/package.json @@ -1,6 +1,6 @@ { "name": "@metamask/sdk", - "version": "0.31.4", + "version": "0.31.5", "description": "", "homepage": "https://github.com/MetaMask/metamask-sdk#readme", "bugs": {