Skip to content
Closed
Show file tree
Hide file tree
Changes from all 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/core-monorepo",
"version": "978.0.0",
"version": "979.0.0",
"private": true,
"description": "Monorepo for packages shared between MetaMask clients",
"repository": {
Expand Down
7 changes: 6 additions & 1 deletion packages/account-tree-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]

## [7.4.0]

### Added

- Add `AccountTreeController:accountGroup{Created,Updated,Removed}` events ([#8766](https://github.com/MetaMask/core/pull/8766))
Expand All @@ -15,6 +17,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed

- Bump `@metamask/accounts-controller` from `^38.0.0` to `^38.1.1` ([#8755](https://github.com/MetaMask/core/pull/8755), [#8774](https://github.com/MetaMask/core/pull/8774))
- Bump `@metamask/multichain-account-service` from `^9.0.0` to `^10.0.0` ([#8785](https://github.com/MetaMask/core/pull/8785))
- Bump `@metamask/profile-sync-controller` from `^28.0.2` to `^28.1.0` ([#8785](https://github.com/MetaMask/core/pull/8785))

## [7.3.0]

Expand Down Expand Up @@ -565,7 +569,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Initial release ([#5847](https://github.com/MetaMask/core/pull/5847))
- Grouping accounts into 3 main categories: Entropy source, Snap ID, keyring types.

[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/account-tree-controller@7.3.0...HEAD
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/account-tree-controller@7.4.0...HEAD
[7.4.0]: https://github.com/MetaMask/core/compare/@metamask/account-tree-controller@7.3.0...@metamask/account-tree-controller@7.4.0
[7.3.0]: https://github.com/MetaMask/core/compare/@metamask/account-tree-controller@7.2.0...@metamask/account-tree-controller@7.3.0
[7.2.0]: https://github.com/MetaMask/core/compare/@metamask/account-tree-controller@7.1.0...@metamask/account-tree-controller@7.2.0
[7.1.0]: https://github.com/MetaMask/core/compare/@metamask/account-tree-controller@7.0.0...@metamask/account-tree-controller@7.1.0
Expand Down
6 changes: 3 additions & 3 deletions packages/account-tree-controller/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/account-tree-controller",
"version": "7.3.0",
"version": "7.4.0",
"description": "Controller to group account together based on some pre-defined rules",
"keywords": [
"Ethereum",
Expand Down Expand Up @@ -58,8 +58,8 @@
"@metamask/keyring-api": "^23.1.0",
"@metamask/keyring-controller": "^25.5.0",
"@metamask/messenger": "^1.2.0",
"@metamask/multichain-account-service": "^9.0.0",
"@metamask/profile-sync-controller": "^28.0.2",
"@metamask/multichain-account-service": "^10.0.0",
"@metamask/profile-sync-controller": "^28.1.0",
"@metamask/snaps-controllers": "^19.0.0",
"@metamask/snaps-sdk": "^11.0.0",
"@metamask/snaps-utils": "^12.1.2",
Expand Down
5 changes: 5 additions & 0 deletions packages/assets-controller/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed

- Bump `@metamask/account-tree-controller` from `^7.3.0` to `^7.4.0` ([#8785](https://github.com/MetaMask/core/pull/8785))
- Bump `@metamask/assets-controllers` from `^108.0.0` to `^108.0.1` ([#8785](https://github.com/MetaMask/core/pull/8785))

### Fixed

- `RpcDataSource` no longer writes `{ amount: "NaN" }` entries into `assetsBalance` when state holds malformed native metadata ([#8781](https://github.com/MetaMask/core/pull/8781))
Expand Down
4 changes: 2 additions & 2 deletions packages/assets-controller/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@
"@ethereumjs/util": "^9.1.0",
"@ethersproject/abi": "^5.7.0",
"@ethersproject/providers": "^5.7.0",
"@metamask/account-tree-controller": "^7.3.0",
"@metamask/account-tree-controller": "^7.4.0",
"@metamask/accounts-controller": "^38.1.1",
"@metamask/assets-controllers": "^108.0.0",
"@metamask/assets-controllers": "^108.0.1",
"@metamask/base-controller": "^9.1.0",
"@metamask/client-controller": "^1.0.1",
"@metamask/controller-utils": "^12.1.0",
Expand Down
11 changes: 10 additions & 1 deletion packages/assets-controllers/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [108.0.1]

### Changed

- Bump `@metamask/account-tree-controller` from `^7.3.0` to `^7.4.0` ([#8785](https://github.com/MetaMask/core/pull/8785))
- Bump `@metamask/multichain-account-service` from `^9.0.0` to `^10.0.0` ([#8785](https://github.com/MetaMask/core/pull/8785))
- Bump `@metamask/profile-sync-controller` from `^28.0.2` to `^28.1.0` ([#8785](https://github.com/MetaMask/core/pull/8785))

## [108.0.0]

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

- Use Ethers for AssetsContractController ([#845](https://github.com/MetaMask/core/pull/845))

[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@108.0.0...HEAD
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@108.0.1...HEAD
[108.0.1]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@108.0.0...@metamask/assets-controllers@108.0.1
[108.0.0]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@107.0.0...@metamask/assets-controllers@108.0.0
[107.0.0]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@106.0.1...@metamask/assets-controllers@107.0.0
[106.0.1]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@106.0.0...@metamask/assets-controllers@106.0.1
Expand Down
8 changes: 4 additions & 4 deletions packages/assets-controllers/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/assets-controllers",
"version": "108.0.0",
"version": "108.0.1",
"description": "Controllers which manage interactions involving ERC-20, ERC-721, and ERC-1155 tokens (including NFTs)",
"keywords": [
"Ethereum",
Expand Down Expand Up @@ -60,7 +60,7 @@
"@ethersproject/contracts": "^5.7.0",
"@ethersproject/providers": "^5.7.0",
"@metamask/abi-utils": "^2.0.3",
"@metamask/account-tree-controller": "^7.3.0",
"@metamask/account-tree-controller": "^7.4.0",
"@metamask/accounts-controller": "^38.1.1",
"@metamask/approval-controller": "^9.0.1",
"@metamask/base-controller": "^9.1.0",
Expand All @@ -72,14 +72,14 @@
"@metamask/keyring-controller": "^25.5.0",
"@metamask/messenger": "^1.2.0",
"@metamask/metamask-eth-abis": "^3.1.1",
"@metamask/multichain-account-service": "^9.0.0",
"@metamask/multichain-account-service": "^10.0.0",
"@metamask/network-controller": "^32.0.0",
"@metamask/network-enablement-controller": "^5.1.1",
"@metamask/permission-controller": "^13.1.1",
"@metamask/phishing-controller": "^17.1.2",
"@metamask/polling-controller": "^16.0.5",
"@metamask/preferences-controller": "^23.1.0",
"@metamask/profile-sync-controller": "^28.0.2",
"@metamask/profile-sync-controller": "^28.1.0",
"@metamask/rpc-errors": "^7.0.2",
"@metamask/snaps-controllers": "^19.0.0",
"@metamask/snaps-sdk": "^11.0.0",
Expand Down
5 changes: 5 additions & 0 deletions packages/bridge-controller/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed

- Bump `@metamask/assets-controllers` from `^108.0.0` to `^108.0.1` ([#8785](https://github.com/MetaMask/core/pull/8785))
- Bump `@metamask/profile-sync-controller` from `^28.0.2` to `^28.1.0` ([#8785](https://github.com/MetaMask/core/pull/8785))

## [72.0.4]

### Changed
Expand Down
4 changes: 2 additions & 2 deletions packages/bridge-controller/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"@ethersproject/providers": "^5.7.0",
"@metamask/accounts-controller": "^38.1.1",
"@metamask/assets-controller": "^7.1.1",
"@metamask/assets-controllers": "^108.0.0",
"@metamask/assets-controllers": "^108.0.1",
"@metamask/base-controller": "^9.1.0",
"@metamask/controller-utils": "^12.1.0",
"@metamask/gas-fee-controller": "^26.2.1",
Expand All @@ -69,7 +69,7 @@
"@metamask/multichain-network-controller": "^3.1.1",
"@metamask/network-controller": "^32.0.0",
"@metamask/polling-controller": "^16.0.5",
"@metamask/profile-sync-controller": "^28.0.2",
"@metamask/profile-sync-controller": "^28.1.0",
"@metamask/remote-feature-flag-controller": "^4.2.1",
"@metamask/snaps-controllers": "^19.0.0",
"@metamask/transaction-controller": "^65.3.0",
Expand Down
4 changes: 4 additions & 0 deletions packages/bridge-status-controller/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed

- Bump `@metamask/profile-sync-controller` from `^28.0.2` to `^28.1.0` ([#8785](https://github.com/MetaMask/core/pull/8785))

## [71.1.4]

### Changed
Expand Down
2 changes: 1 addition & 1 deletion packages/bridge-status-controller/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
"@metamask/messenger": "^1.2.0",
"@metamask/network-controller": "^32.0.0",
"@metamask/polling-controller": "^16.0.5",
"@metamask/profile-sync-controller": "^28.0.2",
"@metamask/profile-sync-controller": "^28.1.0",
"@metamask/snaps-controllers": "^19.0.0",
"@metamask/superstruct": "^3.1.0",
"@metamask/transaction-controller": "^65.3.0",
Expand Down
1 change: 1 addition & 0 deletions packages/claims-controller/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed

- Bump `@metamask/controller-utils` from `^12.0.0` to `^12.1.0` ([#8774](https://github.com/MetaMask/core/pull/8774))
- Bump `@metamask/profile-sync-controller` from `^28.0.2` to `^28.1.0` ([#8785](https://github.com/MetaMask/core/pull/8785))

## [0.5.1]

Expand Down
2 changes: 1 addition & 1 deletion packages/claims-controller/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"@metamask/controller-utils": "^12.1.0",
"@metamask/keyring-controller": "^25.5.0",
"@metamask/messenger": "^1.2.0",
"@metamask/profile-sync-controller": "^28.0.2",
"@metamask/profile-sync-controller": "^28.1.0",
"@metamask/utils": "^11.9.0"
},
"devDependencies": {
Expand Down
1 change: 1 addition & 0 deletions packages/config-registry-controller/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed

- Bump `@metamask/controller-utils` from `^12.0.0` to `^12.1.0` ([#8774](https://github.com/MetaMask/core/pull/8774))
- Bump `@metamask/profile-sync-controller` from `^28.0.2` to `^28.1.0` ([#8785](https://github.com/MetaMask/core/pull/8785))

## [0.3.1]

Expand Down
2 changes: 1 addition & 1 deletion packages/config-registry-controller/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"@metamask/keyring-controller": "^25.5.0",
"@metamask/messenger": "^1.2.0",
"@metamask/polling-controller": "^16.0.5",
"@metamask/profile-sync-controller": "^28.0.2",
"@metamask/profile-sync-controller": "^28.1.0",
"@metamask/remote-feature-flag-controller": "^4.2.1",
"@metamask/superstruct": "^3.1.0",
"@metamask/utils": "^11.9.0",
Expand Down
1 change: 1 addition & 0 deletions packages/core-backend/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Bump `@metamask/accounts-controller` from `^38.1.0` to `^38.1.1` ([#8774](https://github.com/MetaMask/core/pull/8774))
- Bump `@metamask/controller-utils` from `^12.0.0` to `^12.1.0` ([#8774](https://github.com/MetaMask/core/pull/8774))
- Bump `@metamask/profile-sync-controller` from `^28.0.2` to `^28.1.0` ([#8785](https://github.com/MetaMask/core/pull/8785))

## [6.2.2]

Expand Down
2 changes: 1 addition & 1 deletion packages/core-backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"@metamask/controller-utils": "^12.1.0",
"@metamask/keyring-controller": "^25.5.0",
"@metamask/messenger": "^1.2.0",
"@metamask/profile-sync-controller": "^28.0.2",
"@metamask/profile-sync-controller": "^28.1.0",
"@metamask/utils": "^11.9.0",
"@tanstack/query-core": "^5.62.16",
"uuid": "^8.3.2"
Expand Down
4 changes: 4 additions & 0 deletions packages/earn-controller/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed

- Bump `@metamask/account-tree-controller` from `^7.3.0` to `^7.4.0` ([#8785](https://github.com/MetaMask/core/pull/8785))

## [12.1.2]

### Changed
Expand Down
2 changes: 1 addition & 1 deletion packages/earn-controller/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
"dependencies": {
"@ethersproject/bignumber": "^5.7.0",
"@ethersproject/providers": "^5.7.0",
"@metamask/account-tree-controller": "^7.3.0",
"@metamask/account-tree-controller": "^7.4.0",
"@metamask/base-controller": "^9.1.0",
"@metamask/controller-utils": "^12.1.0",
"@metamask/keyring-api": "^23.1.0",
Expand Down
6 changes: 5 additions & 1 deletion packages/multichain-account-service/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]

## [10.0.0]

### Changed

- **BREAKING:** The service messenger now requires the `SnapAccountService:ensureReady` action to be declared ([#8715](https://github.com/MetaMask/core/pull/8715))
Expand All @@ -18,6 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- The service messenger no longer needs `SnapController:getState`, `SnapController:stateChange` or `KeyringController:stateChange`.
- **BREAKING:** Rename `SnapAccountProvider.ensureCanUseSnapPlatform()` to `ensureReady()` ([#8715](https://github.com/MetaMask/core/pull/8715))
- Bump `@metamask/accounts-controller` from `^38.0.0` to `^38.1.1` ([#8755](https://github.com/MetaMask/core/pull/8755), [#8774](https://github.com/MetaMask/core/pull/8774))
- Bump `@metamask/snap-account-service` from `^0.0.0` to `^0.1.0` ([#8785](https://github.com/MetaMask/core/pull/8785))

## [9.0.0]

Expand Down Expand Up @@ -482,7 +485,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Add `MultichainAccountService` ([#6141](https://github.com/MetaMask/core/pull/6141), [#6165](https://github.com/MetaMask/core/pull/6165))
- This service manages multichain accounts/wallets.

[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/multichain-account-service@9.0.0...HEAD
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/multichain-account-service@10.0.0...HEAD
[10.0.0]: https://github.com/MetaMask/core/compare/@metamask/multichain-account-service@9.0.0...@metamask/multichain-account-service@10.0.0
[9.0.0]: https://github.com/MetaMask/core/compare/@metamask/multichain-account-service@8.0.1...@metamask/multichain-account-service@9.0.0
[8.0.1]: https://github.com/MetaMask/core/compare/@metamask/multichain-account-service@8.0.0...@metamask/multichain-account-service@8.0.1
[8.0.0]: https://github.com/MetaMask/core/compare/@metamask/multichain-account-service@7.1.0...@metamask/multichain-account-service@8.0.0
Expand Down
4 changes: 2 additions & 2 deletions packages/multichain-account-service/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/multichain-account-service",
"version": "9.0.0",
"version": "10.0.0",
"description": "Service to manage multichain accounts",
"keywords": [
"Ethereum",
Expand Down Expand Up @@ -64,7 +64,7 @@
"@metamask/keyring-snap-client": "^9.0.2",
"@metamask/keyring-utils": "^3.2.1",
"@metamask/messenger": "^1.2.0",
"@metamask/snap-account-service": "^0.0.0",
"@metamask/snap-account-service": "^0.1.0",
"@metamask/snaps-controllers": "^19.0.0",
"@metamask/snaps-sdk": "^11.0.0",
"@metamask/snaps-utils": "^12.1.2",
Expand Down
1 change: 1 addition & 0 deletions packages/notification-services-controller/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed

- Bump `@metamask/controller-utils` from `^12.0.0` to `^12.1.0` ([#8774](https://github.com/MetaMask/core/pull/8774))
- Bump `@metamask/profile-sync-controller` from `^28.0.2` to `^28.1.0` ([#8785](https://github.com/MetaMask/core/pull/8785))

## [23.1.1]

Expand Down
2 changes: 1 addition & 1 deletion packages/notification-services-controller/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@
"@metamask/controller-utils": "^12.1.0",
"@metamask/keyring-controller": "^25.5.0",
"@metamask/messenger": "^1.2.0",
"@metamask/profile-sync-controller": "^28.0.2",
"@metamask/profile-sync-controller": "^28.1.0",
"@metamask/utils": "^11.9.0",
"bignumber.js": "^9.1.2",
"firebase": "^11.2.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/perps-controller/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,13 +67,13 @@
"uuid": "^8.3.2"
},
"devDependencies": {
"@metamask/account-tree-controller": "^7.3.0",
"@metamask/account-tree-controller": "^7.4.0",
"@metamask/auto-changelog": "^6.1.0",
"@metamask/geolocation-controller": "^0.1.3",
"@metamask/keyring-controller": "^25.5.0",
"@metamask/keyring-internal-api": "^11.0.1",
"@metamask/network-controller": "^32.0.0",
"@metamask/profile-sync-controller": "^28.0.2",
"@metamask/profile-sync-controller": "^28.1.0",
"@metamask/remote-feature-flag-controller": "^4.2.1",
"@metamask/transaction-controller": "^65.3.0",
"@ts-bridge/cli": "^0.6.4",
Expand Down
1 change: 1 addition & 0 deletions packages/profile-metrics-controller/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Bump `@metamask/accounts-controller` from `^38.1.0` to `^38.1.1` ([#8774](https://github.com/MetaMask/core/pull/8774))
- Bump `@metamask/controller-utils` from `^12.0.0` to `^12.1.0` ([#8774](https://github.com/MetaMask/core/pull/8774))
- Bump `@metamask/profile-sync-controller` from `^28.0.2` to `^28.1.0` ([#8785](https://github.com/MetaMask/core/pull/8785))

## [3.1.4]

Expand Down
2 changes: 1 addition & 1 deletion packages/profile-metrics-controller/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"@metamask/keyring-controller": "^25.5.0",
"@metamask/messenger": "^1.2.0",
"@metamask/polling-controller": "^16.0.5",
"@metamask/profile-sync-controller": "^28.0.2",
"@metamask/profile-sync-controller": "^28.1.0",
"@metamask/transaction-controller": "^65.3.0",
"@metamask/utils": "^11.9.0",
"async-mutex": "^0.5.0"
Expand Down
5 changes: 4 additions & 1 deletion packages/profile-sync-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]

## [28.1.0]

### Added

- Add SRP profile pairing support (Accounts ADR 0006) ([#8504](https://github.com/MetaMask/core/pull/8504), [#8642](https://github.com/MetaMask/core/pull/8642))
Expand Down Expand Up @@ -865,7 +867,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Initial release

[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/profile-sync-controller@28.0.2...HEAD
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/profile-sync-controller@28.1.0...HEAD
[28.1.0]: https://github.com/MetaMask/core/compare/@metamask/profile-sync-controller@28.0.2...@metamask/profile-sync-controller@28.1.0
[28.0.2]: https://github.com/MetaMask/core/compare/@metamask/profile-sync-controller@28.0.1...@metamask/profile-sync-controller@28.0.2
[28.0.1]: https://github.com/MetaMask/core/compare/@metamask/profile-sync-controller@28.0.0...@metamask/profile-sync-controller@28.0.1
[28.0.0]: https://github.com/MetaMask/core/compare/@metamask/profile-sync-controller@27.1.0...@metamask/profile-sync-controller@28.0.0
Expand Down
2 changes: 1 addition & 1 deletion packages/profile-sync-controller/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/profile-sync-controller",
"version": "28.0.2",
"version": "28.1.0",
"description": "The profile sync helps developers synchronize data across multiple clients and devices in a privacy-preserving way. All data saved in the user storage database is encrypted client-side to preserve privacy. The user storage provides a modular design, giving developers the flexibility to construct and manage their storage spaces in a way that best suits their needs",
"keywords": [
"Ethereum",
Expand Down
6 changes: 5 additions & 1 deletion packages/snap-account-service/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.1.0]

### Added

- Add `SnapAccountService` ([#8414](https://github.com/MetaMask/core/pull/8414))
Expand Down Expand Up @@ -36,5 +38,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed

- Bump `@metamask/messenger` from `^1.1.1` to `^1.2.0` ([#8632](https://github.com/MetaMask/core/pull/8632))
- Bump `@metamask/account-tree-controller` from `^7.3.0` to `^7.4.0` ([#8785](https://github.com/MetaMask/core/pull/8785))

[Unreleased]: https://github.com/MetaMask/core/
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/snap-account-service@0.1.0...HEAD
[0.1.0]: https://github.com/MetaMask/core/releases/tag/@metamask/snap-account-service@0.1.0
Loading
Loading