Skip to content

Commit b45ba55

Browse files
jiexiffmcgee725
andauthored
Release/33.0.0 (#288)
* Initialize Release 33.0.0 * Update Release 33.0.0 * bump playgrounds * lint --------- Co-authored-by: ffmcgee <joao.carlos@consensys.net>
1 parent af35b97 commit b45ba55

7 files changed

Lines changed: 32 additions & 11 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/connect-monorepo",
3-
"version": "32.0.0",
3+
"version": "33.0.0",
44
"private": true,
55
"description": "MetaMask Connect Monorepo",
66
"repository": {

packages/connect-evm/CHANGELOG.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.2.0]
11+
1012
### Added
1113

1214
- Send `sessionProperties: { 'eip1193-compatible': true }` on every `wallet_createSession` request issued by `connect-evm`. This lets wallets distinguish EIP-1193-style connections established through `@metamask/connect-evm` from pure Multichain API connections or other provider types (e.g. Solana Wallet Standard) ([#285](https://github.com/MetaMask/connect-monorepo/pull/285))
1315

16+
### Fixed
17+
18+
- Fix `wallet_switchEthereumChain` (and `EvmClient.switchChain()` when called without a `chainConfiguration` fallback) to forward the original `Unrecognized chain ID` error to the dapp instead of replacing it with `No chain configuration found.` ([#287](https://github.com/MetaMask/connect-monorepo/pull/287))
19+
1420
## [1.1.0]
1521

1622
### Changed
1723

1824
- Cleanup initialization promise logic ([#281](https://github.com/MetaMask/connect-monorepo/pull/281))
1925

20-
### Fixed
21-
22-
- Fix `wallet_switchEthereumChain` (and `EvmClient.switchChain()` when called without a `chainConfiguration` fallback) to forward the original `Unrecognized chain ID` error to the dapp instead of replacing it with `No chain configuration found.` ([#287](https://github.com/MetaMask/connect-monorepo/pull/287))
23-
2426
## [1.0.0]
2527

2628
### Changed
@@ -219,7 +221,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
219221

220222
- Initial release ([#58](https://github.com/MetaMask/connect-monorepo/pull/58))
221223

222-
[Unreleased]: https://github.com/MetaMask/connect-monorepo/compare/@metamask/connect-evm@1.1.0...HEAD
224+
[Unreleased]: https://github.com/MetaMask/connect-monorepo/compare/@metamask/connect-evm@1.2.0...HEAD
225+
[1.2.0]: https://github.com/MetaMask/connect-monorepo/compare/@metamask/connect-evm@1.1.0...@metamask/connect-evm@1.2.0
223226
[1.1.0]: https://github.com/MetaMask/connect-monorepo/compare/@metamask/connect-evm@1.0.0...@metamask/connect-evm@1.1.0
224227
[1.0.0]: https://github.com/MetaMask/connect-monorepo/compare/@metamask/connect-evm@0.11.2...@metamask/connect-evm@1.0.0
225228
[0.11.2]: https://github.com/MetaMask/connect-monorepo/compare/@metamask/connect-evm@0.11.1...@metamask/connect-evm@0.11.2

packages/connect-evm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/connect-evm",
3-
"version": "1.1.0",
3+
"version": "1.2.0",
44
"description": "EVM Layer for MetaMask Connect",
55
"keywords": [
66
"MetaMask",

playground/browser-playground/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.7.2]
11+
12+
### Changed
13+
14+
- Bump workspace dependencies:
15+
- @metamask/connect-evm@1.2.0
16+
- @metamask/connect-multichain@0.13.0
17+
1018
## [0.7.1]
1119

1220
### Changed
@@ -196,7 +204,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
196204

197205
- Initial release
198206

199-
[Unreleased]: https://github.com/MetaMask/connect-monorepo/compare/@metamask/browser-playground@0.7.1...HEAD
207+
[Unreleased]: https://github.com/MetaMask/connect-monorepo/compare/@metamask/browser-playground@0.7.2...HEAD
208+
[0.7.2]: https://github.com/MetaMask/connect-monorepo/compare/@metamask/browser-playground@0.7.1...@metamask/browser-playground@0.7.2
200209
[0.7.1]: https://github.com/MetaMask/connect-monorepo/compare/@metamask/browser-playground@0.7.0...@metamask/browser-playground@0.7.1
201210
[0.7.0]: https://github.com/MetaMask/connect-monorepo/compare/@metamask/browser-playground@0.6.6...@metamask/browser-playground@0.7.0
202211
[0.6.6]: https://github.com/MetaMask/connect-monorepo/compare/@metamask/browser-playground@0.6.5...@metamask/browser-playground@0.6.6

playground/browser-playground/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/browser-playground",
3-
"version": "0.7.1",
3+
"version": "0.7.2",
44
"description": "A browser test dapp for multichain api",
55
"keywords": [
66
"MetaMask",

playground/react-native-playground/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.4.2]
11+
12+
### Changed
13+
14+
- Bump workspace dependencies:
15+
- @metamask/connect-evm@1.2.0
16+
- @metamask/connect-multichain@0.13.0
17+
1018
## [0.4.1]
1119

1220
### Changed
@@ -145,7 +153,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
145153

146154
- Initial release
147155

148-
[Unreleased]: https://github.com/MetaMask/connect-monorepo/compare/@metamask/react-native-playground@0.4.1...HEAD
156+
[Unreleased]: https://github.com/MetaMask/connect-monorepo/compare/@metamask/react-native-playground@0.4.2...HEAD
157+
[0.4.2]: https://github.com/MetaMask/connect-monorepo/compare/@metamask/react-native-playground@0.4.1...@metamask/react-native-playground@0.4.2
149158
[0.4.1]: https://github.com/MetaMask/connect-monorepo/compare/@metamask/react-native-playground@0.4.0...@metamask/react-native-playground@0.4.1
150159
[0.4.0]: https://github.com/MetaMask/connect-monorepo/compare/@metamask/react-native-playground@0.3.6...@metamask/react-native-playground@0.4.0
151160
[0.3.6]: https://github.com/MetaMask/connect-monorepo/compare/@metamask/react-native-playground@0.3.5...@metamask/react-native-playground@0.3.6

playground/react-native-playground/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/react-native-playground",
3-
"version": "0.4.1",
3+
"version": "0.4.2",
44
"private": true,
55
"description": "A React Native test dapp for multichain api",
66
"keywords": [

0 commit comments

Comments
 (0)