From 8f4be285f0ce19597ae87a2831b4e7febd436ceb Mon Sep 17 00:00:00 2001 From: github-actions Date: Thu, 16 May 2024 08:45:09 +0000 Subject: [PATCH 1/9] 8.1.0 --- CHANGELOG.md | 9 ++++++++- package.json | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 97bb702e..3be05aab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [8.1.0] +### Uncategorized +- ci: add npm publishing to publish-release workflow ([#237](https://github.com/MetaMask/swaps-controller/pull/237)) +- feat: add util to fetch global and chain feature flags at once ([#229](https://github.com/MetaMask/swaps-controller/pull/229)) +- update CODEOWNERS.md ([#234](https://github.com/MetaMask/swaps-controller/pull/234)) + ## [8.0.0] ### Changed - **BREAKING**: Replace `@metamask/controllers` with individual controller packages ([#193](https://github.com/MetaMask/swaps-controller/pull/193)) ([#214](https://github.com/MetaMask/swaps-controller/pull/214)) ([#215](https://github.com/MetaMask/swaps-controller/pull/215)) @@ -135,7 +141,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Use standalone gas API endpoint ([#70](https://github.com/MetaMask/swaps-controller/pull/70)) - Bump @metamask/controllers from 14.1.0 to 14.2.0 ([#69](https://github.com/MetaMask/swaps-controller/pull/69)) -[Unreleased]: https://github.com/MetaMask/swaps-controller/compare/v8.0.0...HEAD +[Unreleased]: https://github.com/MetaMask/swaps-controller/compare/v8.1.0...HEAD +[8.1.0]: https://github.com/MetaMask/swaps-controller/compare/v8.0.0...v8.1.0 [8.0.0]: https://github.com/MetaMask/swaps-controller/compare/v7.0.1...v8.0.0 [7.0.1]: https://github.com/MetaMask/swaps-controller/compare/v7.0.0...v7.0.1 [7.0.0]: https://github.com/MetaMask/swaps-controller/compare/v6.9.3...v7.0.0 diff --git a/package.json b/package.json index 0975288c..b4f34f5f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@metamask/swaps-controller", - "version": "8.0.0", + "version": "8.1.0", "description": "MetaMask Swaps controller module", "publishConfig": { "registry": "https://registry.npmjs.org/", From 9874c8dcb1417c3e18e80ef2796414606a335fcd Mon Sep 17 00:00:00 2001 From: Nicolas Ferro Date: Thu, 16 May 2024 10:52:23 +0200 Subject: [PATCH 2/9] Update CHANGELOG.md --- CHANGELOG.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3be05aab..2c137dba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,9 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ## [8.1.0] -### Uncategorized +### Added - ci: add npm publishing to publish-release workflow ([#237](https://github.com/MetaMask/swaps-controller/pull/237)) - feat: add util to fetch global and chain feature flags at once ([#229](https://github.com/MetaMask/swaps-controller/pull/229)) + +### Changed - update CODEOWNERS.md ([#234](https://github.com/MetaMask/swaps-controller/pull/234)) ## [8.0.0] From 210bf350883dfe1361d7220e3fafe177e2cc877b Mon Sep 17 00:00:00 2001 From: nikoferro Date: Wed, 22 May 2024 11:47:18 +0200 Subject: [PATCH 3/9] updated changelog --- CHANGELOG.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c137dba..ecd264d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,11 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [8.1.0] ### Added -- ci: add npm publishing to publish-release workflow ([#237](https://github.com/MetaMask/swaps-controller/pull/237)) -- feat: add util to fetch global and chain feature flags at once ([#229](https://github.com/MetaMask/swaps-controller/pull/229)) - -### Changed -- update CODEOWNERS.md ([#234](https://github.com/MetaMask/swaps-controller/pull/234)) +- feat: adds `fetchSwapsFeatureFlags` to fetch global and chain feature flags at once ([#229](https://github.com/MetaMask/swaps-controller/pull/229)) ## [8.0.0] ### Changed From efce034f623a3f69da00f5d3acfbc4a5bd94357e Mon Sep 17 00:00:00 2001 From: Nicolas Ferro Date: Thu, 23 May 2024 10:00:04 +0200 Subject: [PATCH 4/9] Update CHANGELOG.md --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ecd264d7..fc2e19e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - feat: adds `fetchSwapsFeatureFlags` to fetch global and chain feature flags at once ([#229](https://github.com/MetaMask/swaps-controller/pull/229)) +### Fixed + +- Fixes bug in contract instance creation for `getERC20Allowance` ([#241](https://github.com/MetaMask/swaps-controller/pull/241)) + ## [8.0.0] ### Changed - **BREAKING**: Replace `@metamask/controllers` with individual controller packages ([#193](https://github.com/MetaMask/swaps-controller/pull/193)) ([#214](https://github.com/MetaMask/swaps-controller/pull/214)) ([#215](https://github.com/MetaMask/swaps-controller/pull/215)) From e681d2ce509c7a15942b9a9df294fd38e65414a0 Mon Sep 17 00:00:00 2001 From: Nicolas Ferro Date: Thu, 23 May 2024 10:15:14 +0200 Subject: [PATCH 5/9] Update CHANGELOG.md --- CHANGELOG.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fc2e19e8..4b0baa21 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,9 +11,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - feat: adds `fetchSwapsFeatureFlags` to fetch global and chain feature flags at once ([#229](https://github.com/MetaMask/swaps-controller/pull/229)) ### Fixed - - Fixes bug in contract instance creation for `getERC20Allowance` ([#241](https://github.com/MetaMask/swaps-controller/pull/241)) - + +### Changed +- update CODEOWNERS.md ([#234](https://github.com/MetaMask/swaps-controller/pull/234)) + ## [8.0.0] ### Changed - **BREAKING**: Replace `@metamask/controllers` with individual controller packages ([#193](https://github.com/MetaMask/swaps-controller/pull/193)) ([#214](https://github.com/MetaMask/swaps-controller/pull/214)) ([#215](https://github.com/MetaMask/swaps-controller/pull/215)) From 21347e1ba8e5acbd27c7d65e8061730f108c849f Mon Sep 17 00:00:00 2001 From: nikoferro Date: Thu, 23 May 2024 12:06:43 +0200 Subject: [PATCH 6/9] Fixed changelog --- CHANGELOG.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b0baa21..31e9d27f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,14 +8,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [8.1.0] ### Added -- feat: adds `fetchSwapsFeatureFlags` to fetch global and chain feature flags at once ([#229](https://github.com/MetaMask/swaps-controller/pull/229)) +- Adds `fetchSwapsFeatureFlags` to fetch global and chain feature flags at once ([#229](https://github.com/MetaMask/swaps-controller/pull/229)) + +### Changed +- Update CODEOWNERS.md ([#234](https://github.com/MetaMask/swaps-controller/pull/234)) ### Fixed - Fixes bug in contract instance creation for `getERC20Allowance` ([#241](https://github.com/MetaMask/swaps-controller/pull/241)) -### Changed -- update CODEOWNERS.md ([#234](https://github.com/MetaMask/swaps-controller/pull/234)) - ## [8.0.0] ### Changed - **BREAKING**: Replace `@metamask/controllers` with individual controller packages ([#193](https://github.com/MetaMask/swaps-controller/pull/193)) ([#214](https://github.com/MetaMask/swaps-controller/pull/214)) ([#215](https://github.com/MetaMask/swaps-controller/pull/215)) From 64f650468fd89c78fd210380bb79a82f11bd7bf9 Mon Sep 17 00:00:00 2001 From: Nicolas Ferro Date: Thu, 23 May 2024 16:01:50 +0200 Subject: [PATCH 7/9] Update CHANGELOG.md Co-authored-by: legobeat <109787230+legobeat@users.noreply.github.com> --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 31e9d27f..ef9c3e1b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [8.1.0] ### Added -- Adds `fetchSwapsFeatureFlags` to fetch global and chain feature flags at once ([#229](https://github.com/MetaMask/swaps-controller/pull/229)) +- Add `fetchSwapsFeatureFlags` to fetch global and chain feature flags at once ([#229](https://github.com/MetaMask/swaps-controller/pull/229)) ### Changed - Update CODEOWNERS.md ([#234](https://github.com/MetaMask/swaps-controller/pull/234)) From 6fc0567763a0af6e466f04cb45da0642a04273c4 Mon Sep 17 00:00:00 2001 From: Nicolas Ferro Date: Thu, 23 May 2024 16:01:56 +0200 Subject: [PATCH 8/9] Update CHANGELOG.md Co-authored-by: legobeat <109787230+legobeat@users.noreply.github.com> --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ef9c3e1b..1c041941 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,7 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Update CODEOWNERS.md ([#234](https://github.com/MetaMask/swaps-controller/pull/234)) ### Fixed -- Fixes bug in contract instance creation for `getERC20Allowance` ([#241](https://github.com/MetaMask/swaps-controller/pull/241)) +- Fix bug in contract instance creation for `getERC20Allowance` ([#241](https://github.com/MetaMask/swaps-controller/pull/241)) ## [8.0.0] ### Changed From ca32072702d579a9da081c8212dda0df064941da Mon Sep 17 00:00:00 2001 From: Nicolas Ferro Date: Thu, 23 May 2024 16:02:15 +0200 Subject: [PATCH 9/9] Update CHANGELOG.md Co-authored-by: legobeat <109787230+legobeat@users.noreply.github.com> --- CHANGELOG.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c041941..465dbc72 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,9 +10,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Add `fetchSwapsFeatureFlags` to fetch global and chain feature flags at once ([#229](https://github.com/MetaMask/swaps-controller/pull/229)) -### Changed -- Update CODEOWNERS.md ([#234](https://github.com/MetaMask/swaps-controller/pull/234)) - ### Fixed - Fix bug in contract instance creation for `getERC20Allowance` ([#241](https://github.com/MetaMask/swaps-controller/pull/241))