Skip to content

Commit 13ec41d

Browse files
authored
Release/977.0.0 (MetaMask#8769)
## Explanation Release new versions of the chomp-api-service and money-account-upgrade-controller <!-- 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? --> ## References <!-- Are there any issues that this pull request is tied to? Are there other links that reviewers should consult to understand these changes better? Are there client or consumer pull requests to adopt any breaking changes? For example: * Fixes #12345 * Related to #67890 --> ## Checklist - [ ] I've updated the test suite for new or updated code as appropriate - [ ] I've updated documentation (JSDoc, Markdown, etc.) for new or updated code as appropriate - [ ] I've communicated my changes to consumers by [updating changelogs for packages I've changed](https://github.com/MetaMask/core/tree/main/docs/processes/updating-changelogs.md) - [ ] I've introduced [breaking changes](https://github.com/MetaMask/core/tree/main/docs/processes/breaking-changes.md) in this PR and have prepared draft pull requests for clients and consumer packages to resolve them <!-- CURSOR_SUMMARY --> --- > [!NOTE] > **Low Risk** > Low risk: this PR only updates package versions, changelogs, and dependency pins/lockfile entries with no code changes. > > **Overview** > Bumps the monorepo version to `977.0.0` and releases `@metamask/chomp-api-service@3.1.0` (documenting the updated retry policy that avoids retrying most 4xx responses). > > Releases `@metamask/money-account-upgrade-controller@2.0.0` and updates it to depend on `@metamask/chomp-api-service@^3.1.0`, with corresponding `CHANGELOG.md` and `yarn.lock` updates. > > <sup>Reviewed by [Cursor Bugbot](https://cursor.com/bugbot) for commit aa8e6c4. Bugbot is set up for automated code reviews on this repo. Configure [here](https://www.cursor.com/dashboard/bugbot).</sup> <!-- /CURSOR_SUMMARY -->
1 parent 2d99d75 commit 13ec41d

6 files changed

Lines changed: 15 additions & 8 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/core-monorepo",
3-
"version": "976.0.0",
3+
"version": "977.0.0",
44
"private": true,
55
"description": "Monorepo for packages shared between MetaMask clients",
66
"repository": {

packages/chomp-api-service/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [3.1.0]
11+
1012
### Changed
1113

1214
- `ChompApiService` no longer retries HTTP requests that fail with a 4xx response (other than 429), since those responses indicate the request itself is at fault and will not be resolved by re-issuing it. 5xx, 429, and non-HTTP errors (network/timeout) continue to be retried. Consumers can still override this by passing a `retryFilterPolicy` via `policyOptions`. ([#8621](https://github.com/MetaMask/core/pull/8621))
@@ -37,7 +39,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3739

3840
- Add `ChompApiService` ([#8413](https://github.com/MetaMask/core/pull/8413))
3941

40-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/chomp-api-service@3.0.1...HEAD
42+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/chomp-api-service@3.1.0...HEAD
43+
[3.1.0]: https://github.com/MetaMask/core/compare/@metamask/chomp-api-service@3.0.1...@metamask/chomp-api-service@3.1.0
4144
[3.0.1]: https://github.com/MetaMask/core/compare/@metamask/chomp-api-service@3.0.0...@metamask/chomp-api-service@3.0.1
4245
[3.0.0]: https://github.com/MetaMask/core/compare/@metamask/chomp-api-service@2.0.0...@metamask/chomp-api-service@3.0.0
4346
[2.0.0]: https://github.com/MetaMask/core/compare/@metamask/chomp-api-service@1.0.0...@metamask/chomp-api-service@2.0.0

packages/chomp-api-service/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/chomp-api-service",
3-
"version": "3.0.1",
3+
"version": "3.1.0",
44
"description": "Data service for the Chomp API",
55
"keywords": [
66
"Ethereum",

packages/money-account-upgrade-controller/CHANGELOG.md

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

88
## [Unreleased]
99

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

1214
- Add remaining steps in money account upgrade process ([#8621](https://github.com/MetaMask/core/pull/8621))
@@ -17,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1719
- **BREAKING:** `init()` now takes a `{ chainId, boringVaultAddress }` object instead of an `InitConfig`. The EIP-7702 delegator implementation and caveat enforcer addresses are resolved from `@metamask/delegation-deployments` for the target chain; `init()` throws if the chain is not supported by Delegation Framework 1.3.0. The `InitConfig` type is no longer exported. ([#8621](https://github.com/MetaMask/core/pull/8621))
1820
- Add `@metamask/authenticated-user-storage`, `@metamask/delegation-controller`, `@metamask/delegation-core`, and `@metamask/delegation-deployments` as dependencies. ([#8621](https://github.com/MetaMask/core/pull/8621))
1921
- Bump `@metamask/network-controller` from `^31.0.0` to `^31.1.0` ([#8765](https://github.com/MetaMask/core/pull/8765))
22+
- Bump `@metamask/chomp-api-service` from `^3.0.1` to `^3.1.0` ([#8769](https://github.com/MetaMask/core/pull/8769))
2023

2124
### Fixed
2225

@@ -76,7 +79,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7679

7780
- Add `MoneyAccountUpgradeController` with `upgradeAccount` method ([#8426](https://github.com/MetaMask/core/pull/8426))
7881

79-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/money-account-upgrade-controller@1.3.2...HEAD
82+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/money-account-upgrade-controller@2.0.0...HEAD
83+
[2.0.0]: https://github.com/MetaMask/core/compare/@metamask/money-account-upgrade-controller@1.3.2...@metamask/money-account-upgrade-controller@2.0.0
8084
[1.3.2]: https://github.com/MetaMask/core/compare/@metamask/money-account-upgrade-controller@1.3.1...@metamask/money-account-upgrade-controller@1.3.2
8185
[1.3.1]: https://github.com/MetaMask/core/compare/@metamask/money-account-upgrade-controller@1.3.0...@metamask/money-account-upgrade-controller@1.3.1
8286
[1.3.0]: https://github.com/MetaMask/core/compare/@metamask/money-account-upgrade-controller@1.2.0...@metamask/money-account-upgrade-controller@1.3.0

packages/money-account-upgrade-controller/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/money-account-upgrade-controller",
3-
"version": "1.3.2",
3+
"version": "2.0.0",
44
"description": "MetaMask Money account upgrade controller",
55
"keywords": [
66
"Ethereum",
@@ -55,7 +55,7 @@
5555
"dependencies": {
5656
"@metamask/authenticated-user-storage": "^1.0.1",
5757
"@metamask/base-controller": "^9.1.0",
58-
"@metamask/chomp-api-service": "^3.0.1",
58+
"@metamask/chomp-api-service": "^3.1.0",
5959
"@metamask/delegation-controller": "^3.0.0",
6060
"@metamask/delegation-core": "^2.0.0",
6161
"@metamask/delegation-deployments": "^1.3.0",

yarn.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3148,7 +3148,7 @@ __metadata:
31483148
languageName: unknown
31493149
linkType: soft
31503150

3151-
"@metamask/chomp-api-service@npm:^3.0.1, @metamask/chomp-api-service@workspace:packages/chomp-api-service":
3151+
"@metamask/chomp-api-service@npm:^3.1.0, @metamask/chomp-api-service@workspace:packages/chomp-api-service":
31523152
version: 0.0.0-use.local
31533153
resolution: "@metamask/chomp-api-service@workspace:packages/chomp-api-service"
31543154
dependencies:
@@ -4543,7 +4543,7 @@ __metadata:
45434543
"@metamask/authenticated-user-storage": "npm:^1.0.1"
45444544
"@metamask/auto-changelog": "npm:^6.1.0"
45454545
"@metamask/base-controller": "npm:^9.1.0"
4546-
"@metamask/chomp-api-service": "npm:^3.0.1"
4546+
"@metamask/chomp-api-service": "npm:^3.1.0"
45474547
"@metamask/delegation-controller": "npm:^3.0.0"
45484548
"@metamask/delegation-core": "npm:^2.0.0"
45494549
"@metamask/delegation-deployments": "npm:^1.3.0"

0 commit comments

Comments
 (0)