From 4e50c79e11e09b802e1315ed2bf0cfaa0ade8eec Mon Sep 17 00:00:00 2001 From: github-actions Date: Tue, 31 Aug 2021 20:58:46 +0000 Subject: [PATCH 1/3] 15.0.1 --- CHANGELOG.md | 8 +++++++- package.json | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a990cfa53e..d2f4070cc9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [15.0.1] +### Uncategorized +- add abort-controller polyfill ([#575](https://github.com/MetaMask/controllers/pull/575)) +- Bump tar from 6.1.4 to 6.1.11 ([#576](https://github.com/MetaMask/controllers/pull/576)) + ## [15.0.0] ### Changed - **BREAKING**: Update TokensController allTokens state structure to make network/chainID parent of account ([#572](https://github.com/MetaMask/controllers/pull/572)) @@ -353,7 +358,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Removed - Remove shapeshift controller (#209) -[Unreleased]: https://github.com/MetaMask/controllers/compare/v15.0.0...HEAD +[Unreleased]: https://github.com/MetaMask/controllers/compare/v15.0.1...HEAD +[15.0.1]: https://github.com/MetaMask/controllers/compare/v15.0.0...v15.0.1 [15.0.0]: https://github.com/MetaMask/controllers/compare/v14.2.0...v15.0.0 [14.2.0]: https://github.com/MetaMask/controllers/compare/v14.1.0...v14.2.0 [14.1.0]: https://github.com/MetaMask/controllers/compare/v14.0.2...v14.1.0 diff --git a/package.json b/package.json index 604eb8269c..11e243e992 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@metamask/controllers", - "version": "15.0.0", + "version": "15.0.1", "description": "Collection of platform-agnostic modules for creating secure data models for cryptocurrency wallets", "keywords": [ "MetaMask", From 4903b8711763e34727b34c0fc99b7c8f85f74f1d Mon Sep 17 00:00:00 2001 From: Alex Date: Tue, 31 Aug 2021 16:08:09 -0500 Subject: [PATCH 2/3] update CHANGELOG --- CHANGELOG.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d2f4070cc9..c455994b3d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,9 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ## [15.0.1] -### Uncategorized -- add abort-controller polyfill ([#575](https://github.com/MetaMask/controllers/pull/575)) -- Bump tar from 6.1.4 to 6.1.11 ([#576](https://github.com/MetaMask/controllers/pull/576)) +### Fixed +- Add abort-controller polyfill ([#575](https://github.com/MetaMask/controllers/pull/575)) + - This fixes broken contract in release v15.0.0 where we introduced a use of AbortController without updating the node engine requirement in package.json to atleast node v15.0.0 where support for AbortController was added. Here we add the polyfill instead of bumping the required node version. ## [15.0.0] ### Changed From c2f13965edff93879933cea43ea3f4cf155ea525 Mon Sep 17 00:00:00 2001 From: Erik Marks <25517051+rekmarks@users.noreply.github.com> Date: Tue, 31 Aug 2021 15:57:47 -0700 Subject: [PATCH 3/3] Update CHANGELOG.md --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c455994b3d..50df5c0298 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,8 +8,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [15.0.1] ### Fixed -- Add abort-controller polyfill ([#575](https://github.com/MetaMask/controllers/pull/575)) - - This fixes broken contract in release v15.0.0 where we introduced a use of AbortController without updating the node engine requirement in package.json to atleast node v15.0.0 where support for AbortController was added. Here we add the polyfill instead of bumping the required node version. +- Add AbortController polyfill ([#575](https://github.com/MetaMask/controllers/pull/575)) + - [15.0.0](#1500) introduced the use of the global AbortController to this package. The global AbortController was first introduced in Node 15, so this unintentionally broke support for the minimum Node version this package should support, which is Node 12. By polyfilling the AbortController, we restore Node 12 support. ## [15.0.0] ### Changed