Skip to content

Commit

Permalink
Release 221.0.0 (#4805)
Browse files Browse the repository at this point in the history
## Explanation

<!--
Thanks for your contribution! Take a moment to answer these questions so
that reviewers have the information they need to properly understand
your changes:

* What is the current state of things and why does it need to change?
* What is the solution your changes offer and how does it work?
* Are there any changes whose purpose might not obvious to those
unfamiliar with the domain?
* If your primary goal was to update one package but you found you had
to update another one along the way, why did you do so?
* If you had to upgrade a dependency, why did you do so?
-->

Releasing new version of core including `signature-controller` and
`transaction-controller` changes


## Checklist

- [X] I've updated the test suite for new or updated code as appropriate
- [X] I've updated documentation (JSDoc, Markdown, etc.) for new or
updated code as appropriate
- [X] I've highlighted breaking changes using the "BREAKING" category
above as appropriate
- [X] I've prepared draft pull requests for clients and consumer
packages to resolve any breaking changes

---------

Co-authored-by: Matthew Walsh <[email protected]>
  • Loading branch information
OGPoyraz and matthewwalsh0 authored Oct 17, 2024
1 parent c0e7783 commit d6bbdff
Show file tree
Hide file tree
Showing 10 changed files with 37 additions and 16 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/core-monorepo",
"version": "220.0.0",
"version": "221.0.0",
"private": true,
"description": "Monorepo for packages shared between MetaMask clients",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/keyring-controller/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
"@metamask/eth-sig-util": "^7.0.1",
"@metamask/eth-simple-keyring": "^6.0.5",
"@metamask/keyring-api": "^8.1.3",
"@metamask/message-manager": "^10.1.1",
"@metamask/message-manager": "^11.0.0",
"@metamask/utils": "^9.1.0",
"async-mutex": "^0.5.0",
"ethereumjs-wallet": "^1.0.1",
Expand Down
5 changes: 4 additions & 1 deletion packages/message-manager/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]

## [11.0.0]

### Removed

- Remove all code related to `@metamask/signature-controller` ([#4785](https://github.com/MetaMask/core/pull/4785))
Expand Down Expand Up @@ -323,7 +325,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

All changes listed after this point were applied to this package following the monorepo conversion.

[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
[11.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
[10.1.1]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
[10.1.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
[10.0.3]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion packages/message-manager/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/message-manager",
"version": "10.1.1",
"version": "11.0.0",
"description": "Stores and manages interactions with signing requests",
"keywords": [
"MetaMask",
Expand Down
11 changes: 7 additions & 4 deletions packages/signature-controller/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]

## [20.0.0]

### Added

- Remove usage of `@metamask/message-manager` package ([#4785](https://github.com/MetaMask/core/pull/4785))
Expand All @@ -26,16 +28,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Remove usage of `@metamask/message-manager` package ([#4785](https://github.com/MetaMask/core/pull/4785))
- **BREAKING** Change `type` property in message state to enum values rather than `string`.
- Deprecreate the following state since the same data can be derived from `signatureRequests`:
- Deprecate the following state since the same data can be derived from `signatureRequests`:
- `unapprovedPersonalMsgs`
- `unapprovedTypedMessages`
- `unapprovedPersonalMsgCount`
- `unapprovedTypedMessagesCount`
- Deprecreate the following properties since the same data can be derived from the state:
- Deprecate the following properties since the same data can be derived from the state:
- `unapprovedPersonalMessagesCount`
- `unapprovedTypedMessagesCount`
- `messages`
- Deprecreate the following constructor options since they are no longer used:
- Deprecate the following constructor options since they are no longer used:
- `getAllState`
- `securityProviderRequest`

Expand Down Expand Up @@ -361,7 +363,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Initial release ([#1214](https://github.com/MetaMask/core/pull/1214))

[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
[20.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
[19.1.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
[19.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
[18.1.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion packages/signature-controller/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/signature-controller",
"version": "19.1.0",
"version": "20.0.0",
"description": "Processes signing requests in order to sign arbitrary and typed data",
"keywords": [
"MetaMask",
Expand Down
17 changes: 16 additions & 1 deletion packages/transaction-controller/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [37.3.0]

### Added

- Add types for bridge transactions ([#4714](https://github.com/MetaMask/core/pull/4714))

### Changed

- Reduce gas limit fallback from 95% to 35% of the block gas limit on failed gas limit estimations ([#4739](https://github.com/MetaMask/core/pull/4739))

### Fixed

- Use contract ABIs to decode the token balance responses ([#4775](https://github.com/MetaMask/core/pull/4775))

## [37.2.0]

### Added
Expand Down Expand Up @@ -1048,7 +1062,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
All changes listed after this point were applied to this package following the monorepo conversion.
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
[37.3.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
[37.2.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
[37.1.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
[37.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion packages/transaction-controller/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/transaction-controller",
"version": "37.2.0",
"version": "37.3.0",
"description": "Stores transactions alongside their periodically updated statuses and manages interactions such as approval and cancellation",
"keywords": [
"MetaMask",
Expand Down
2 changes: 1 addition & 1 deletion packages/user-operation-controller/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
"@metamask/gas-fee-controller": "^20.0.1",
"@metamask/keyring-controller": "^17.2.2",
"@metamask/network-controller": "^21.0.1",
"@metamask/transaction-controller": "^37.2.0",
"@metamask/transaction-controller": "^37.3.0",
"@types/jest": "^27.4.1",
"deepmerge": "^4.2.2",
"jest": "^27.5.1",
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2955,7 +2955,7 @@ __metadata:
"@metamask/eth-sig-util": "npm:^7.0.1"
"@metamask/eth-simple-keyring": "npm:^6.0.5"
"@metamask/keyring-api": "npm:^8.1.3"
"@metamask/message-manager": "npm:^10.1.1"
"@metamask/message-manager": "npm:^11.0.0"
"@metamask/scure-bip39": "npm:^2.1.1"
"@metamask/utils": "npm:^9.1.0"
"@types/jest": "npm:^27.4.1"
Expand Down Expand Up @@ -2992,7 +2992,7 @@ __metadata:
languageName: unknown
linkType: soft

"@metamask/message-manager@npm:^10.1.1, @metamask/message-manager@workspace:packages/message-manager":
"@metamask/message-manager@npm:^11.0.0, @metamask/message-manager@workspace:packages/message-manager":
version: 0.0.0-use.local
resolution: "@metamask/message-manager@workspace:packages/message-manager"
dependencies:
Expand Down Expand Up @@ -3666,7 +3666,7 @@ __metadata:
languageName: node
linkType: hard

"@metamask/transaction-controller@npm:^37.2.0, @metamask/transaction-controller@workspace:packages/transaction-controller":
"@metamask/transaction-controller@npm:^37.3.0, @metamask/transaction-controller@workspace:packages/transaction-controller":
version: 0.0.0-use.local
resolution: "@metamask/transaction-controller@workspace:packages/transaction-controller"
dependencies:
Expand Down Expand Up @@ -3734,7 +3734,7 @@ __metadata:
"@metamask/polling-controller": "npm:^10.0.1"
"@metamask/rpc-errors": "npm:^6.3.1"
"@metamask/superstruct": "npm:^3.1.0"
"@metamask/transaction-controller": "npm:^37.2.0"
"@metamask/transaction-controller": "npm:^37.3.0"
"@metamask/utils": "npm:^9.1.0"
"@types/jest": "npm:^27.4.1"
bn.js: "npm:^5.2.1"
Expand Down

0 comments on commit d6bbdff

Please sign in to comment.