From b77c15fa2105e0bcb92b88c2c007840c0684d9ef Mon Sep 17 00:00:00 2001 From: github-actions Date: Tue, 31 May 2022 19:47:04 +0000 Subject: [PATCH 1/4] 2.0.0 --- CHANGELOG.md | 19 ++++++++++++++++++- package.json | 2 +- 2 files changed, 19 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ad03b88..87f4776 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.0.0] +### Uncategorized +- Copy Action workflow files from module template ([#47](https://github.com/MetaMask/detect-provider/pull/47)) +- Bump minimist from 1.2.5 to 1.2.6 ([#44](https://github.com/MetaMask/detect-provider/pull/44)) +- Fix failed to parse source map error ([#46](https://github.com/MetaMask/detect-provider/pull/46)) +- Update MetaMaskEthereumProvider type ([#41](https://github.com/MetaMask/detect-provider/pull/41)) +- Bump ajv from 6.12.2 to 6.12.6 ([#43](https://github.com/MetaMask/detect-provider/pull/43)) +- Removes global Window types ([#30](https://github.com/MetaMask/detect-provider/pull/30)) +- Bump cached-path-relative from 1.0.2 to 1.1.0 ([#39](https://github.com/MetaMask/detect-provider/pull/39)) +- Bump path-parse from 1.0.6 to 1.0.7 ([#29](https://github.com/MetaMask/detect-provider/pull/29)) +- Bump glob-parent from 5.1.1 to 5.1.2 ([#27](https://github.com/MetaMask/detect-provider/pull/27)) +- Repo standardization ([#25](https://github.com/MetaMask/detect-provider/pull/25)) +- Bump hosted-git-info from 2.8.8 to 2.8.9 ([#24](https://github.com/MetaMask/detect-provider/pull/24)) +- Bump lodash from 4.17.19 to 4.17.21 ([#23](https://github.com/MetaMask/detect-provider/pull/23)) +- Bump elliptic from 6.5.3 to 6.5.4 ([#21](https://github.com/MetaMask/detect-provider/pull/21)) + ## [1.2.0] - 2020-10-26 ### Added - TypeScript types @@ -19,7 +35,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Initial stable release. -[Unreleased]: https://github.com/MetaMask/detect-provider/compare/v1.2.0...HEAD +[Unreleased]: https://github.com/MetaMask/detect-provider/compare/v2.0.0...HEAD +[2.0.0]: https://github.com/MetaMask/detect-provider/compare/v1.2.0...v2.0.0 [1.2.0]: https://github.com/MetaMask/detect-provider/compare/v1.1.0...v1.2.0 [1.1.0]: https://github.com/MetaMask/detect-provider/compare/v1.0.1...v1.1.0 [1.0.1]: https://github.com/MetaMask/detect-provider/releases/tag/v1.0.1 diff --git a/package.json b/package.json index 4d14b10..8339603 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@metamask/detect-provider", - "version": "1.2.0", + "version": "2.0.0", "description": "A tiny utility for detecting the MetaMask Ethereum provider, or any EIP 1193-compliant provider.", "main": "dist/index.js", "typings": "dist/index.d.ts", From 67d32b9ace100e25e3a840444b8f2be50b33757e Mon Sep 17 00:00:00 2001 From: Elliot Winkler Date: Tue, 31 May 2022 13:57:31 -0600 Subject: [PATCH 2/4] Update changelog --- CHANGELOG.md | 21 +++++++-------------- 1 file changed, 7 insertions(+), 14 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 87f4776..0365642 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,20 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ## [2.0.0] -### Uncategorized -- Copy Action workflow files from module template ([#47](https://github.com/MetaMask/detect-provider/pull/47)) -- Bump minimist from 1.2.5 to 1.2.6 ([#44](https://github.com/MetaMask/detect-provider/pull/44)) -- Fix failed to parse source map error ([#46](https://github.com/MetaMask/detect-provider/pull/46)) -- Update MetaMaskEthereumProvider type ([#41](https://github.com/MetaMask/detect-provider/pull/41)) -- Bump ajv from 6.12.2 to 6.12.6 ([#43](https://github.com/MetaMask/detect-provider/pull/43)) -- Removes global Window types ([#30](https://github.com/MetaMask/detect-provider/pull/30)) -- Bump cached-path-relative from 1.0.2 to 1.1.0 ([#39](https://github.com/MetaMask/detect-provider/pull/39)) -- Bump path-parse from 1.0.6 to 1.0.7 ([#29](https://github.com/MetaMask/detect-provider/pull/29)) -- Bump glob-parent from 5.1.1 to 5.1.2 ([#27](https://github.com/MetaMask/detect-provider/pull/27)) -- Repo standardization ([#25](https://github.com/MetaMask/detect-provider/pull/25)) -- Bump hosted-git-info from 2.8.8 to 2.8.9 ([#24](https://github.com/MetaMask/detect-provider/pull/24)) -- Bump lodash from 4.17.19 to 4.17.21 ([#23](https://github.com/MetaMask/detect-provider/pull/23)) -- Bump elliptic from 6.5.3 to 6.5.4 ([#21](https://github.com/MetaMask/detect-provider/pull/21)) +### Fixed +- Include source code in source maps to prevent build errors ([#46](https://github.com/MetaMask/detect-provider/pull/46)) + +### Changed +- Shore up MetaMaskEthereumProvider type with EventEmitter methods ([#41](https://github.com/MetaMask/detect-provider/pull/41)) +- Remove global type augmentation for `window.ethereum` so that it can be assigned its own type outside of `detectEthereumProvider` ([#30](https://github.com/MetaMask/detect-provider/pull/30)) +- **BREAKING:** Update minimum required Node version to 12.x ([#25](https://github.com/MetaMask/detect-provider/pull/25)) ## [1.2.0] - 2020-10-26 ### Added From 9157d02be407a53eb1911be6478d524ab3dbbb51 Mon Sep 17 00:00:00 2001 From: Elliot Winkler Date: Mon, 3 Oct 2022 10:11:30 -0600 Subject: [PATCH 3/4] Update changelog --- CHANGELOG.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9aba483..fbdd670 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,17 +5,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] -### Changed -- **BREAKING:** Removed support for Node v12 in favor of v14 ([#137](https://github.com/MetaMask/eth-json-rpc-middleware/pull/137)) ## [2.0.0] ### Fixed - Include source code in source maps to prevent build errors ([#46](https://github.com/MetaMask/detect-provider/pull/46)) ### Changed +- **BREAKING:** Bump minimum required Node version to 14 ([#137](https://github.com/MetaMask/eth-json-rpc-middleware/pull/137)) - Shore up MetaMaskEthereumProvider type with EventEmitter methods ([#41](https://github.com/MetaMask/detect-provider/pull/41)) - Remove global type augmentation for `window.ethereum` so that it can be assigned its own type outside of `detectEthereumProvider` ([#30](https://github.com/MetaMask/detect-provider/pull/30)) -- **BREAKING:** Update minimum required Node version to 12.x ([#25](https://github.com/MetaMask/detect-provider/pull/25)) ## [1.2.0] - 2020-10-26 ### Added From 80bd3ae6b91102284af9c2e88967c06db5046a62 Mon Sep 17 00:00:00 2001 From: Elliot Winkler Date: Mon, 3 Oct 2022 10:13:00 -0600 Subject: [PATCH 4/4] Fix lint --- CHANGELOG.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fbdd670..8c37c10 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,14 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ## [2.0.0] -### Fixed -- Include source code in source maps to prevent build errors ([#46](https://github.com/MetaMask/detect-provider/pull/46)) - ### Changed - **BREAKING:** Bump minimum required Node version to 14 ([#137](https://github.com/MetaMask/eth-json-rpc-middleware/pull/137)) - Shore up MetaMaskEthereumProvider type with EventEmitter methods ([#41](https://github.com/MetaMask/detect-provider/pull/41)) - Remove global type augmentation for `window.ethereum` so that it can be assigned its own type outside of `detectEthereumProvider` ([#30](https://github.com/MetaMask/detect-provider/pull/30)) +### Fixed +- Include source code in source maps to prevent build errors ([#46](https://github.com/MetaMask/detect-provider/pull/46)) + ## [1.2.0] - 2020-10-26 ### Added - TypeScript types