From 064feee06e6031797647fc925872c61b2ddbc17c Mon Sep 17 00:00:00 2001 From: github-actions Date: Tue, 26 Aug 2025 11:07:32 +0000 Subject: [PATCH 1/5] 11.5.0 --- CHANGELOG.md | 11 ++++++++++- package.json | 2 +- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0efaa3b4a..b622321c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [11.5.0] + +### Uncategorized + +- feat: Add `KnownCaipNamespacedChainId` type ([#258](https://github.com/MetaMask/utils/pull/258)) +- chore: Move lodash types to deps ([#257](https://github.com/MetaMask/utils/pull/257)) +- chore: Use full `lodash` package ([#253](https://github.com/MetaMask/utils/pull/253)) + ## [11.4.2] ### Fixed @@ -427,7 +435,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial release -[Unreleased]: https://github.com/MetaMask/utils/compare/v11.4.2...HEAD +[Unreleased]: https://github.com/MetaMask/utils/compare/v11.5.0...HEAD +[11.5.0]: https://github.com/MetaMask/utils/compare/v11.4.2...v11.5.0 [11.4.2]: https://github.com/MetaMask/utils/compare/v11.4.1...v11.4.2 [11.4.1]: https://github.com/MetaMask/utils/compare/v11.4.0...v11.4.1 [11.4.0]: https://github.com/MetaMask/utils/compare/v11.3.0...v11.4.0 diff --git a/package.json b/package.json index b73588ca4..238fded6b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@metamask/utils", - "version": "11.4.2", + "version": "11.5.0", "description": "Various JavaScript/TypeScript utilities of wide relevance to the MetaMask codebase", "homepage": "https://github.com/MetaMask/utils#readme", "bugs": { From c678c12b0fdcdac974bc6a57a38adea7e12c45a9 Mon Sep 17 00:00:00 2001 From: Jongsun Suh Date: Tue, 26 Aug 2025 07:30:58 -0400 Subject: [PATCH 2/5] Update CHANGELOG.md --- CHANGELOG.md | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b622321c7..28756557f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,11 +9,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [11.5.0] -### Uncategorized +### Added + +- Add `KnownCaipNamespacedChainId` type as narrower subtype of `CaipChainId` ([#258](https://github.com/MetaMask/utils/pull/258)) + +### Changed -- feat: Add `KnownCaipNamespacedChainId` type ([#258](https://github.com/MetaMask/utils/pull/258)) -- chore: Move lodash types to deps ([#257](https://github.com/MetaMask/utils/pull/257)) -- chore: Use full `lodash` package ([#253](https://github.com/MetaMask/utils/pull/253)) +- Add `@types/lodash` as dependency ([#257](https://github.com/MetaMask/utils/pull/257)) +- Add `lodash` as dependency and remove `lodash.memoize` ([#253](https://github.com/MetaMask/utils/pull/253)) ## [11.4.2] From 9db81cc47eb9b2d7fc0d90566ff14a1163eaa915 Mon Sep 17 00:00:00 2001 From: Jongsun Suh Date: Tue, 26 Aug 2025 08:06:15 -0400 Subject: [PATCH 3/5] Update CHANGELOG.md Co-authored-by: cryptodev-2s <109512101+cryptodev-2s@users.noreply.github.com> --- CHANGELOG.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 28756557f..09f487a58 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,7 +16,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Add `@types/lodash` as dependency ([#257](https://github.com/MetaMask/utils/pull/257)) -- Add `lodash` as dependency and remove `lodash.memoize` ([#253](https://github.com/MetaMask/utils/pull/253)) +- Add `lodash` and `@types/lodash` as dependencies ([#253](https://github.com/MetaMask/utils/pull/253), [#257](https://github.com/MetaMask/utils/pull/257)). + +### Removed +- Remove `lodash.memoize` (dependency) and `@types/lodash.memoize` (devDependency) ([#253](https://github.com/MetaMask/utils/pull/253)). ## [11.4.2] From 6588a5bd1b3149ac5be1755780ce28c2f8886028 Mon Sep 17 00:00:00 2001 From: Jongsun Suh Date: Tue, 26 Aug 2025 08:15:36 -0400 Subject: [PATCH 4/5] Apply suggestions from code review --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 09f487a58..77560eec7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,9 +16,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Add `@types/lodash` as dependency ([#257](https://github.com/MetaMask/utils/pull/257)) -- Add `lodash` and `@types/lodash` as dependencies ([#253](https://github.com/MetaMask/utils/pull/253), [#257](https://github.com/MetaMask/utils/pull/257)). +- Add `lodash` and `@types/lodash` as dependencies ([#253](https://github.com/MetaMask/utils/pull/253), [#257](https://github.com/MetaMask/utils/pull/257)) ### Removed + - Remove `lodash.memoize` (dependency) and `@types/lodash.memoize` (devDependency) ([#253](https://github.com/MetaMask/utils/pull/253)). ## [11.4.2] From 1aa30fce72a0ec27f7cc1addfeda4ad358e997c5 Mon Sep 17 00:00:00 2001 From: Jongsun Suh Date: Tue, 26 Aug 2025 08:33:28 -0400 Subject: [PATCH 5/5] Update CHANGELOG.md --- CHANGELOG.md | 1 - 1 file changed, 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 77560eec7..1a2fa282c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,7 +15,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed -- Add `@types/lodash` as dependency ([#257](https://github.com/MetaMask/utils/pull/257)) - Add `lodash` and `@types/lodash` as dependencies ([#253](https://github.com/MetaMask/utils/pull/253), [#257](https://github.com/MetaMask/utils/pull/257)) ### Removed