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
5 changes: 0 additions & 5 deletions .changeset/popular-ligers-taste.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/sweet-items-compare.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tall-buckets-build.md

This file was deleted.

31 changes: 0 additions & 31 deletions .changeset/weak-kids-love.md

This file was deleted.

7 changes: 7 additions & 0 deletions apps/login/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# thirdweb-login

## 0.1.9

### Patch Changes

- Updated dependencies [[`b182302`](https://github.com/thirdweb-dev/js/commit/b182302f590e75c9881cebd0ca1cc8b1425d50b8), [`5a08176`](https://github.com/thirdweb-dev/js/commit/5a08176eb0eb6d258d1d521a1e7a44c08145a043), [`a0f3557`](https://github.com/thirdweb-dev/js/commit/a0f355717ad3c829f3d692183be46a43187eca49), [`45ca033`](https://github.com/thirdweb-dev/js/commit/45ca0334bb4e8378fefd683e48aef95e4ce8b886)]:
- [email protected]

## 0.1.8

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/login/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "thirdweb-login",
"version": "0.1.8",
"version": "0.1.9",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
Expand Down
38 changes: 38 additions & 0 deletions packages/thirdweb/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,43 @@
# thirdweb

## 5.88.6

### Patch Changes

- [#6274](https://github.com/thirdweb-dev/js/pull/6274) [`b182302`](https://github.com/thirdweb-dev/js/commit/b182302f590e75c9881cebd0ca1cc8b1425d50b8) Thanks [@kumaryash90](https://github.com/kumaryash90)! - bytes32 salt for deterministic deployment

- [#6283](https://github.com/thirdweb-dev/js/pull/6283) [`5a08176`](https://github.com/thirdweb-dev/js/commit/5a08176eb0eb6d258d1d521a1e7a44c08145a043) Thanks [@joaquim-verges](https://github.com/joaquim-verges)! - Respect supportedTokens override in PayEmbed

- [#6281](https://github.com/thirdweb-dev/js/pull/6281) [`a0f3557`](https://github.com/thirdweb-dev/js/commit/a0f355717ad3c829f3d692183be46a43187eca49) Thanks [@joaquim-verges](https://github.com/joaquim-verges)! - Fix text wrapping for long balances in token selector

- [#6282](https://github.com/thirdweb-dev/js/pull/6282) [`45ca033`](https://github.com/thirdweb-dev/js/commit/45ca0334bb4e8378fefd683e48aef95e4ce8b886) Thanks [@joaquim-verges](https://github.com/joaquim-verges)! - Deprecated `viemAdapter.walletClient` in favor of `viemAdapter.wallet` to take wallet instances instead of accounts

BEFORE:

```ts
import { viemAdapter } from "thirdweb/adapters/viem";

const walletClient = viemAdapter.walletClient.toViem({
account, // Account
chain,
client,
});
```

AFTER:

```ts
import { viemAdapter } from "thirdweb/adapters/viem";

const walletClient = viemAdapter.wallet.toViem({
wallet, // now pass a connected Wallet instance instead of an account
chain,
client,
});
```

This allows for full wallet lifecycle management with the viem adapter, including switching chains, adding chains, events and more.

## 5.88.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/thirdweb/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "thirdweb",
"version": "5.88.5",
"version": "5.88.6",
"repository": {
"type": "git",
"url": "git+https://github.com/thirdweb-dev/js.git#main"
Expand Down
2 changes: 2 additions & 0 deletions packages/wagmi-adapter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @thirdweb-dev/wagmi-adapter

## 0.2.20

## 0.2.19

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/wagmi-adapter/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@thirdweb-dev/wagmi-adapter",
"version": "0.2.19",
"version": "0.2.20",
"repository": {
"type": "git",
"url": "git+https://github.com/thirdweb-dev/js.git#main"
Expand Down
Loading