diff --git a/.changeset/agw-react-drop-thirdweb-subpath.md b/.changeset/agw-react-drop-thirdweb-subpath.md deleted file mode 100644 index 7ca75e1..0000000 --- a/.changeset/agw-react-drop-thirdweb-subpath.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -"@abstract-foundation/agw-react": minor ---- - -Removed the `@abstract-foundation/agw-react/thirdweb` subpath export. The thirdweb adapter now lives in its own package, `@abstract-foundation/agw-thirdweb`, so that thirdweb's transitive dependency tree is no longer dragged into `@abstract-foundation/agw-react` installs. - -Consumers of the previous subpath should install `@abstract-foundation/agw-thirdweb` and update their import: - -```diff -- import { abstractWallet } from "@abstract-foundation/agw-react/thirdweb"; -+ import { abstractWallet } from "@abstract-foundation/agw-thirdweb"; -``` - -`thirdweb` is no longer declared as a peer dependency of `@abstract-foundation/agw-react`. diff --git a/.changeset/agw-thirdweb-initial-release.md b/.changeset/agw-thirdweb-initial-release.md deleted file mode 100644 index 0650117..0000000 --- a/.changeset/agw-thirdweb-initial-release.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -"@abstract-foundation/agw-thirdweb": minor ---- - -Initial release of `@abstract-foundation/agw-thirdweb` — the Abstract Global Wallet adapter for the thirdweb Connect SDK. Previously shipped as the `@abstract-foundation/agw-react/thirdweb` subpath; the adapter now lives in a dedicated package so thirdweb's transitive dependency tree stays out of applications that don't use it. - -Migration: - -```diff -- import { abstractWallet } from "@abstract-foundation/agw-react/thirdweb"; -+ import { abstractWallet } from "@abstract-foundation/agw-thirdweb"; -``` - -The `abstractWallet()` API is unchanged. diff --git a/packages/agw-react/CHANGELOG.md b/packages/agw-react/CHANGELOG.md index bb70855..c0095c7 100644 --- a/packages/agw-react/CHANGELOG.md +++ b/packages/agw-react/CHANGELOG.md @@ -1,5 +1,20 @@ # @abstract-foundation/agw-react +## 1.13.0 + +### Minor Changes + +- [#12](https://github.com/Abstract-Foundation/abstract-packages/pull/12) [`b6cf8e4`](https://github.com/Abstract-Foundation/abstract-packages/commit/b6cf8e4e50d09c39aeef9578824f436f8a48404d) Thanks [@coffeexcoin](https://github.com/coffeexcoin)! - Removed the `@abstract-foundation/agw-react/thirdweb` subpath export. The thirdweb adapter now lives in its own package, `@abstract-foundation/agw-thirdweb`, so that thirdweb's transitive dependency tree is no longer dragged into `@abstract-foundation/agw-react` installs. + + Consumers of the previous subpath should install `@abstract-foundation/agw-thirdweb` and update their import: + + ```diff + - import { abstractWallet } from "@abstract-foundation/agw-react/thirdweb"; + + import { abstractWallet } from "@abstract-foundation/agw-thirdweb"; + ``` + + `thirdweb` is no longer declared as a peer dependency of `@abstract-foundation/agw-react`. + ## 1.12.3 ### Patch Changes diff --git a/packages/agw-react/package.json b/packages/agw-react/package.json index 94efc13..c967caa 100644 --- a/packages/agw-react/package.json +++ b/packages/agw-react/package.json @@ -1,7 +1,7 @@ { "name": "@abstract-foundation/agw-react", "description": "Abstract Global Wallet React Components", - "version": "1.12.3", + "version": "1.13.0", "license": "MIT", "repository": { "type": "git", diff --git a/packages/agw-thirdweb/CHANGELOG.md b/packages/agw-thirdweb/CHANGELOG.md new file mode 100644 index 0000000..e7aae77 --- /dev/null +++ b/packages/agw-thirdweb/CHANGELOG.md @@ -0,0 +1,16 @@ +# @abstract-foundation/agw-thirdweb + +## 0.1.0 + +### Minor Changes + +- [#12](https://github.com/Abstract-Foundation/abstract-packages/pull/12) [`b6cf8e4`](https://github.com/Abstract-Foundation/abstract-packages/commit/b6cf8e4e50d09c39aeef9578824f436f8a48404d) Thanks [@coffeexcoin](https://github.com/coffeexcoin)! - Initial release of `@abstract-foundation/agw-thirdweb` — the Abstract Global Wallet adapter for the thirdweb Connect SDK. Previously shipped as the `@abstract-foundation/agw-react/thirdweb` subpath; the adapter now lives in a dedicated package so thirdweb's transitive dependency tree stays out of applications that don't use it. + + Migration: + + ```diff + - import { abstractWallet } from "@abstract-foundation/agw-react/thirdweb"; + + import { abstractWallet } from "@abstract-foundation/agw-thirdweb"; + ``` + + The `abstractWallet()` API is unchanged. diff --git a/packages/agw-thirdweb/package.json b/packages/agw-thirdweb/package.json index 5f82097..cfadad5 100644 --- a/packages/agw-thirdweb/package.json +++ b/packages/agw-thirdweb/package.json @@ -1,7 +1,7 @@ { "name": "@abstract-foundation/agw-thirdweb", "description": "Abstract Global Wallet adapter for the thirdweb Connect SDK", - "version": "0.0.0", + "version": "0.1.0", "license": "MIT", "repository": { "type": "git",