Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 0 additions & 14 deletions .changeset/agw-react-drop-thirdweb-subpath.md

This file was deleted.

14 changes: 0 additions & 14 deletions .changeset/agw-thirdweb-initial-release.md

This file was deleted.

15 changes: 15 additions & 0 deletions packages/agw-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/agw-react/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
16 changes: 16 additions & 0 deletions packages/agw-thirdweb/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
2 changes: 1 addition & 1 deletion packages/agw-thirdweb/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
Loading