Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/metamask-connect-monorepo",
"version": "3.0.0",
"version": "4.0.0",
"private": true,
"description": "MetaMask Connect Monorepo",
"repository": {
Expand Down
26 changes: 5 additions & 21 deletions packages/connect-evm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,28 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added

- Added `connectWith()` method which makes a request for the method to be paired together with a connection request ([#53](https://github.com/MetaMask/connect-monorepo/pull/53))
- This method expects param options `method`, `params`, `chainId`, and `account`
- `params` can be a function or a plain value. When it is a function, it will be called with the selected account as the first param and must return a value that will be used as the actual params for the request.
- Added `eventHandlers.connectAndSign` handler which is called on successful `connectAndSign` request with an object including the `accounts`, `chainId`, and `signResponse` ([#53](https://github.com/MetaMask/connect-monorepo/pull/53))
- Added `eventHandlers.connectWith` handler which is called on successful `connectWith` request with an object including the `accounts`, `chainId`, and `connectWithResponse` ([#53](https://github.com/MetaMask/connect-monorepo/pull/53))
- Added analytics tracking of request handling ([#46](https://github.com/MetaMask/connect-monorepo/pull/46))
- Initial release ([#21](https://github.com/MetaMask/connect-monorepo/pull/21))
## [0.1.0]

### Changed

- **BREAKING** Make the `dapp.name` and `dapp.url` properties required in `createMetamaskConnectEVM()` ([#56](https://github.com/MetaMask/connect-monorepo/pull/56))
- The `dapp.url` property is now always overwritten with the value of the page's url when MetaMask Connect is running in a browser context ([#56](https://github.com/MetaMask/connect-monorepo/pull/56))
- `connect()` now always returns `chainId`, previously it could undefined ([#53](https://github.com/MetaMask/connect-monorepo/pull/53))
### Added

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

- `ethereum_switchChain` fallback when chain is not configured ([#31](https://github.com/MetaMask/connect-monorepo/pull/31))
- Typedoc generation ([#31](https://github.com/MetaMask/connect-monorepo/pull/31))
- Permissioning accounts through `wallet_requestPermissions` ([#31](https://github.com/MetaMask/connect-monorepo/pull/31))
- Enable conditional logging through options in `createMetamaskConnectEVM` ([#31](https://github.com/MetaMask/connect-monorepo/pull/31))
- Fixed mobile deeplink bug that occurred when `MetamaskConnectEVM.connect()` was called and the transport was already connected ([#57](https://github.com/MetaMask/connect-monorepo/pull/57))

[Unreleased]: https://github.com/MetaMask/metamask-connect-monorepo/
[Unreleased]: https://github.com/MetaMask/metamask-connect-monorepo/compare/@metamask/[email protected]
[0.1.0]: https://github.com/MetaMask/metamask-connect-monorepo/releases/tag/@metamask/[email protected]
2 changes: 1 addition & 1 deletion packages/connect-evm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/connect-evm",
"version": "0.0.0",
"version": "0.1.0",
"description": "EVM Layer for MetaMask Connect",
"keywords": [
"MetaMask",
Expand Down
5 changes: 4 additions & 1 deletion packages/connect-multichain/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.0]

### Changed

- **BREAKING** Make the `dapp.name` and `dapp.url` properties required in `createMetamaskConnect()` ([#56](https://github.com/MetaMask/connect-monorepo/pull/56))
Expand Down Expand Up @@ -54,7 +56,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Initial release

[Unreleased]: https://github.com/MetaMask/metamask-connect-monorepo/compare/@metamask/[email protected]
[Unreleased]: https://github.com/MetaMask/metamask-connect-monorepo/compare/@metamask/[email protected]
[0.3.0]: https://github.com/MetaMask/metamask-connect-monorepo/compare/@metamask/[email protected]...@metamask/[email protected]
[0.2.1]: https://github.com/MetaMask/metamask-connect-monorepo/compare/@metamask/[email protected]...@metamask/[email protected]
[0.2.0]: https://github.com/MetaMask/metamask-connect-monorepo/compare/@metamask/[email protected]...@metamask/[email protected]
[0.1.0]: https://github.com/MetaMask/metamask-connect-monorepo/releases/tag/@metamask/[email protected]
2 changes: 1 addition & 1 deletion packages/connect-multichain/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/connect-multichain",
"version": "0.2.1",
"version": "0.3.0",
"description": "Multichain package for MetaMask Connect",
"keywords": [
"MetaMask",
Expand Down
Loading