From fad5109cad69bd75ceeab5851867debbbdb4c5fc Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 28 Apr 2025 19:10:27 +0000 Subject: [PATCH 1/3] 22.1.0 --- CHANGELOG.md | 9 ++++++++- package.json | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4039bea4..10b334a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [22.1.0] + +### Uncategorized + +- Refactor caip-294 announcement logic ([#419](https://github.com/MetaMask/providers/pull/419)) + ## [22.0.1] ### Fixed @@ -569,7 +575,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 added deprecation warnings for them ([#30](https://github.com/MetaMask/providers/pull/30)) - Un-deprecated `sendAsync` ([#29](https://github.com/MetaMask/providers/pull/29)) -[Unreleased]: https://github.com/MetaMask/providers/compare/v22.0.1...HEAD +[Unreleased]: https://github.com/MetaMask/providers/compare/v22.1.0...HEAD +[22.1.0]: https://github.com/MetaMask/providers/compare/v22.0.1...v22.1.0 [22.0.1]: https://github.com/MetaMask/providers/compare/v22.0.0...v22.0.1 [22.0.0]: https://github.com/MetaMask/providers/compare/v21.0.0...v22.0.0 [21.0.0]: https://github.com/MetaMask/providers/compare/v20.0.0...v21.0.0 diff --git a/package.json b/package.json index e828b6d0..1b47ca99 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@metamask/providers", - "version": "22.0.1", + "version": "22.1.0", "description": "A JavaScript Ethereum provider that connects to the wallet over a stream", "keywords": [ "MetaMask", From 47dfb3309c978e1260c16a73ad5e2fbccc70f0db Mon Sep 17 00:00:00 2001 From: Alex Date: Mon, 28 Apr 2025 14:14:21 -0500 Subject: [PATCH 2/3] update changelog --- CHANGELOG.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 10b334a0..6a35dfe1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,9 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [22.1.0] -### Uncategorized +### Changed -- Refactor caip-294 announcement logic ([#419](https://github.com/MetaMask/providers/pull/419)) +- Refactor CAIP294 announcement logic ([#419](https://github.com/MetaMask/providers/pull/419)) + - Adds a new `shouldAnnounceCaip294` flag to `initializeProvider` options (defaulted to true), so instead of the `providerInfo.rdns` value determining whether or not to announce the caip-294 target, the caller of `initializeProvider` can directly control this. ## [22.0.1] From da40d587989040c41c338d52805d770f436e2663 Mon Sep 17 00:00:00 2001 From: Alex Date: Mon, 28 Apr 2025 15:08:17 -0500 Subject: [PATCH 3/3] address feedback --- CHANGELOG.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a35dfe1..38ab00af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,8 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed -- Refactor CAIP294 announcement logic ([#419](https://github.com/MetaMask/providers/pull/419)) - - Adds a new `shouldAnnounceCaip294` flag to `initializeProvider` options (defaulted to true), so instead of the `providerInfo.rdns` value determining whether or not to announce the caip-294 target, the caller of `initializeProvider` can directly control this. +- Adds a new `shouldAnnounceCaip294` flag to `initializeProvider` options (defaulted to true), so instead of the `providerInfo.rdns` value determining whether or not to announce the caip-294 target, the caller of `initializeProvider` can directly control this ([#419](https://github.com/MetaMask/providers/pull/419)) ## [22.0.1]