Skip to content

Commit abe1266

Browse files
authored
Release/22.0.0 (#189)
* Update Release 22.0.0 * Update changelog
1 parent c1b7761 commit abe1266

File tree

9 files changed

+36
-20
lines changed

9 files changed

+36
-20
lines changed

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+
## [22.0.0]
11+
1012
## [21.0.0]
1113

1214
## [20.0.0]
@@ -37,7 +39,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3739

3840
## [7.0.0]
3941

40-
[Unreleased]: https://github.com/metamask/smart-accounts-kit/compare/delegator-sdk-monorepo@21.0.0...HEAD
42+
[Unreleased]: https://github.com/metamask/smart-accounts-kit/compare/delegator-sdk-monorepo@22.0.0...HEAD
43+
[22.0.0]: https://github.com/metamask/smart-accounts-kit/compare/delegator-sdk-monorepo@21.0.0...delegator-sdk-monorepo@22.0.0
4144
[21.0.0]: https://github.com/metamask/smart-accounts-kit/compare/delegator-sdk-monorepo@20.0.0...delegator-sdk-monorepo@21.0.0
4245
[20.0.0]: https://github.com/metamask/smart-accounts-kit/compare/delegator-sdk-monorepo@19.0.0...delegator-sdk-monorepo@20.0.0
4346
[19.0.0]: https://github.com/metamask/smart-accounts-kit/compare/delegator-sdk-monorepo@18.0.0...delegator-sdk-monorepo@19.0.0

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "delegator-sdk-monorepo",
3-
"version": "21.0.0",
3+
"version": "22.0.0",
44
"license": "(MIT-0 OR Apache-2.0)",
55
"private": true,
66
"repository": {

packages/delegation-core/CHANGELOG.md

Lines changed: 9 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+
## [0.4.0]
11+
1012
### Added
1113

1214
- Add terms builders for all enforcers implemented in @metamask/smart-accounts-kit ([#139](https://github.com/metamask/smart-accounts-kit/pull/139))
@@ -32,6 +34,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3234
- `createOwnershipTransferTerms`
3335
- `createRedeemerTerms`
3436
- `createSpecificActionERC20TransferBatchTerms`
37+
- New utils `encodeDelegation` and `decodeDelegation` ([#153](https://github.com/metamask/smart-accounts-kit/pull/153))
38+
39+
### Changed
40+
41+
- Default `delegation.salt` and `caveat.args` should be `0x00` ([#138](https://github.com/metamask/smart-accounts-kit/pull/138))
3542

3643
### Fixed
3744

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

7279
- Add @metamask/delegation-core package, providing utility types, delegation hashing, and terms encoding for a limited set of caveat enforcers.
7380

74-
[Unreleased]: https://github.com/metamask/smart-accounts-kit/compare/@metamask/delegation-core@0.3.0...HEAD
81+
[Unreleased]: https://github.com/metamask/smart-accounts-kit/compare/@metamask/delegation-core@0.4.0...HEAD
82+
[0.4.0]: https://github.com/metamask/smart-accounts-kit/compare/@metamask/delegation-core@0.3.0...@metamask/delegation-core@0.4.0
7583
[0.3.0]: https://github.com/metamask/smart-accounts-kit/compare/@metamask/delegation-core@0.2.0...@metamask/delegation-core@0.3.0
7684
[0.2.0]: https://github.com/metamask/smart-accounts-kit/compare/@metamask/delegation-core@0.2.0-rc.1...@metamask/delegation-core@0.2.0
7785
[0.2.0-rc.1]: https://github.com/metamask/smart-accounts-kit/compare/@metamask/delegation-core@0.1.0...@metamask/delegation-core@0.2.0-rc.1

packages/delegation-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/delegation-core",
3-
"version": "0.3.0",
3+
"version": "0.4.0",
44
"description": "Low level core functionality for interacting with the Delegation Framework",
55
"license": "(MIT-0 OR Apache-2.0)",
66
"type": "module",

packages/delegation-deployments/CHANGELOG.md

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

88
## [Unreleased]
99

10-
### Uncategorized
11-
12-
- Resolve yarn peer dependency warnings ([#123](https://github.com/metamask/smart-accounts-kit/pull/123))
10+
## [0.17.0]
1311

1412
### Added
1513

16-
- Add chain deployment for Celo and Ronin mainnet and testnets ([#173](https://github.com/MetaMask/smart-accounts-kit/pull/173))
14+
- Tempo mainnet and Tempo Moderato testnet ([#177](https://github.com/metamask/smart-accounts-kit/pull/177))
15+
- Celo and Ronin mainnet and testnets ([#173](https://github.com/MetaMask/smart-accounts-kit/pull/173))
1716

1817
## [0.16.0]
1918

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

4847
- Add deployments for Sei mainnet ([#84](https://github.com/metamask/smart-accounts-kit/pull/84))
4948

50-
[Unreleased]: https://github.com/metamask/smart-accounts-kit/compare/@metamask/delegation-deployments@0.16.0...HEAD
49+
[Unreleased]: https://github.com/metamask/smart-accounts-kit/compare/@metamask/delegation-deployments@0.17.0...HEAD
50+
[0.17.0]: https://github.com/metamask/smart-accounts-kit/compare/@metamask/delegation-deployments@0.16.0...@metamask/delegation-deployments@0.17.0
5151
[0.16.0]: https://github.com/metamask/smart-accounts-kit/compare/@metamask/delegation-deployments@0.15.0...@metamask/delegation-deployments@0.16.0
5252
[0.15.0]: https://github.com/metamask/smart-accounts-kit/compare/@metamask/delegation-deployments@0.14.0...@metamask/delegation-deployments@0.15.0
5353
[0.14.0]: https://github.com/metamask/smart-accounts-kit/compare/@metamask/delegation-deployments@0.13.0...@metamask/delegation-deployments@0.14.0

packages/delegation-deployments/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/delegation-deployments",
3-
"version": "0.16.0",
3+
"version": "0.17.0",
44
"description": "A history of deployments of the Delegation Framework",
55
"license": "(MIT-0 OR Apache-2.0)",
66
"type": "module",

packages/smart-accounts-kit/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.4.0-beta.2]
11+
1012
### Added
1113

1214
- Add `encodeDelegation` and `decodeDelegation` utilities for encoding and decoding single delegations. ([#153](https://github.com/MetaMask/smart-accounts-kit/pull/153))
15+
- Add DelegationManager validation for EIP-7710 actions (#150) ([#150](https://github.com/metamask/smart-accounts-kit/pull/150))
16+
- Support for Tempo Mainnet and Tempo Moderato Testnet ([#177](https://github.com/metamask/smart-accounts-kit/pull/177))
1317

1418
### Changed
1519

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

8589
- Promote readable permissions actions (`requestExecutionPermissions`, `sendTransactionWithDelegation`, and `sendUserOperationWithDelegation`) from experimental ([#91](https://github.com/MetaMask/smart-accounts-kit/pull/91))
8690

87-
[Unreleased]: https://github.com/metamask/smart-accounts-kit/compare/@metamask/smart-accounts-kit@0.4.0-beta.1...HEAD
91+
[Unreleased]: https://github.com/metamask/smart-accounts-kit/compare/@metamask/smart-accounts-kit@0.4.0-beta.2...HEAD
92+
[0.4.0-beta.2]: https://github.com/metamask/smart-accounts-kit/compare/@metamask/smart-accounts-kit@0.4.0-beta.1...@metamask/smart-accounts-kit@0.4.0-beta.2
8893
[0.4.0-beta.1]: https://github.com/metamask/smart-accounts-kit/compare/@metamask/smart-accounts-kit@0.4.0-beta.0...@metamask/smart-accounts-kit@0.4.0-beta.1
8994
[0.4.0-beta.0]: https://github.com/metamask/smart-accounts-kit/compare/@metamask/smart-accounts-kit@0.3.0...@metamask/smart-accounts-kit@0.4.0-beta.0
9095
[0.3.0]: https://github.com/metamask/smart-accounts-kit/compare/@metamask/smart-accounts-kit@0.2.0...@metamask/smart-accounts-kit@0.3.0

packages/smart-accounts-kit/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/smart-accounts-kit",
3-
"version": "0.4.0-beta.1",
3+
"version": "0.4.0-beta.2",
44
"type": "module",
55
"description": "Toolkit for managing and interacting with MetaMask Smart Accounts, built on Viem",
66
"license": "(MIT-0 OR Apache-2.0)",
@@ -126,8 +126,8 @@
126126
"dependencies": {
127127
"@metamask/7715-permission-types": "^0.5.0",
128128
"@metamask/delegation-abis": "^0.12.0-beta.0",
129-
"@metamask/delegation-core": "^0.3.0",
130-
"@metamask/delegation-deployments": "^0.16.0",
129+
"@metamask/delegation-core": "^0.4.0",
130+
"@metamask/delegation-deployments": "^0.17.0",
131131
"buffer": "^6.0.3",
132132
"webauthn-p256": "^0.0.10"
133133
},

yarn.lock

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -675,7 +675,7 @@ __metadata:
675675
languageName: unknown
676676
linkType: soft
677677

678-
"@metamask/delegation-core@npm:^0.3.0, @metamask/delegation-core@workspace:packages/delegation-core":
678+
"@metamask/delegation-core@npm:^0.4.0, @metamask/delegation-core@workspace:packages/delegation-core":
679679
version: 0.0.0-use.local
680680
resolution: "@metamask/delegation-core@workspace:packages/delegation-core"
681681
dependencies:
@@ -692,7 +692,7 @@ __metadata:
692692
languageName: unknown
693693
linkType: soft
694694

695-
"@metamask/delegation-deployments@npm:^0.16.0, @metamask/delegation-deployments@workspace:packages/delegation-deployments":
695+
"@metamask/delegation-deployments@npm:^0.17.0, @metamask/delegation-deployments@workspace:packages/delegation-deployments":
696696
version: 0.0.0-use.local
697697
resolution: "@metamask/delegation-deployments@workspace:packages/delegation-deployments"
698698
dependencies:
@@ -779,8 +779,8 @@ __metadata:
779779
"@metamask/7715-permission-types": "npm:^0.5.0"
780780
"@metamask/auto-changelog": "npm:^5.0.2"
781781
"@metamask/delegation-abis": "npm:^0.12.0-beta.0"
782-
"@metamask/delegation-core": "npm:^0.3.0"
783-
"@metamask/delegation-deployments": "npm:^0.16.0"
782+
"@metamask/delegation-core": "npm:^0.4.0"
783+
"@metamask/delegation-deployments": "npm:^0.17.0"
784784
"@metamask/eslint-config": "npm:14.1.0"
785785
"@metamask/eslint-config-nodejs": "npm:14.0.0"
786786
"@metamask/eslint-config-typescript": "npm:14.0.0"
@@ -883,7 +883,7 @@ __metadata:
883883
languageName: node
884884
linkType: hard
885885

886-
"@noble/curves@npm:1.9.2, @noble/curves@npm:^1.4.0, @noble/curves@npm:~1.9.0":
886+
"@noble/curves@npm:1.9.2":
887887
version: 1.9.2
888888
resolution: "@noble/curves@npm:1.9.2"
889889
dependencies:
@@ -892,7 +892,7 @@ __metadata:
892892
languageName: node
893893
linkType: hard
894894

895-
"@noble/curves@npm:^1.9.1":
895+
"@noble/curves@npm:^1.4.0, @noble/curves@npm:^1.9.1, @noble/curves@npm:~1.9.0":
896896
version: 1.9.7
897897
resolution: "@noble/curves@npm:1.9.7"
898898
dependencies:

0 commit comments

Comments
 (0)