Skip to content

Commit

Permalink
Version Packages (#6184)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
joaquim-verges and github-actions[bot] authored Feb 8, 2025
1 parent e50d77d commit a322e16
Show file tree
Hide file tree
Showing 16 changed files with 97 additions and 102 deletions.
5 changes: 0 additions & 5 deletions .changeset/chatty-geese-burn.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/healthy-cups-refuse.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/nice-seas-march.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/nine-seahorses-judge.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/silent-comics-carry.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/stupid-experts-shake.md

This file was deleted.

63 changes: 0 additions & 63 deletions .changeset/tender-dolls-tan.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/wicked-chairs-own.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.3

### Patch Changes

- Updated dependencies [[`1f6bb7c`](https://github.com/thirdweb-dev/js/commit/1f6bb7c3294d70648b120a6a6a6cba13302a84fc), [`30e13e6`](https://github.com/thirdweb-dev/js/commit/30e13e6b9176265a2f4eddfa53578889abbcb750), [`2dfc245`](https://github.com/thirdweb-dev/js/commit/2dfc245d44dde86e42f6c799305db707316432aa), [`ee57ded`](https://github.com/thirdweb-dev/js/commit/ee57ded902cb69da6fc171599a4a90776e650149), [`9663079`](https://github.com/thirdweb-dev/js/commit/966307906212ac99dc0a2a9be88e514c920d39c4), [`64d7bf3`](https://github.com/thirdweb-dev/js/commit/64d7bf358fe2014b684688d41d525a75e47f1b82)]:
- [email protected]

## 0.1.2

### 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.2",
"version": "0.1.3",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
Expand Down
8 changes: 8 additions & 0 deletions packages/service-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @thirdweb-dev/service-utils

## 0.8.6

### Patch Changes

- [#6172](https://github.com/thirdweb-dev/js/pull/6172) [`a8ac98b`](https://github.com/thirdweb-dev/js/commit/a8ac98bd493d1d6e824aad868dea1ec42ff22768) Thanks [@catalyst17](https://github.com/catalyst17)! - add `canCreatePublicChains` to TeamResponse

- [#6183](https://github.com/thirdweb-dev/js/pull/6183) [`18f0e57`](https://github.com/thirdweb-dev/js/commit/18f0e575c4a9764b3192931451cbd3f632a21e3c) Thanks [@arcoraven](https://github.com/arcoraven)! - [service-utils] Update list of usageV2 sources"

## 0.8.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/service-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@thirdweb-dev/service-utils",
"version": "0.8.5",
"version": "0.8.6",
"type": "module",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
Expand Down
76 changes: 76 additions & 0 deletions packages/thirdweb/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,81 @@
# thirdweb

## 5.88.0

### Minor Changes

- [#6194](https://github.com/thirdweb-dev/js/pull/6194) [`9663079`](https://github.com/thirdweb-dev/js/commit/966307906212ac99dc0a2a9be88e514c920d39c4) Thanks [@joaquim-verges](https://github.com/joaquim-verges)! - Added session keys to smart wallet options

You can now pass a `sessionKey` to the `smartWallet` options function to immediately add a session key to the smart wallet upon connection.

This is great in combination with an engine backend wallet! Let's you act on behalf of the user from your backend, making executing transactions as easy as a REST API call. Also unblocks automations, like renewing a subscription, or paying for a service.

```ts
const wallet = smartWallet({
sessionKey: {
address: "0x...", // the session key address (ex: engine backend wallet)
permissions: {
approvedTargets: ["0x..."], // allowed contract addresses (or * for all)
nativeTokenLimitPerTransaction: 0.1, // max spend per transaction in ETH
permissionEndTimestamp: new Date(Date.now() + 1000 * 60 * 60), // expiration date
},
},
});

// this will connect the user wallet and add the session key if not already added
await wallet.connect({
client: TEST_CLIENT,
personalAccount,
});
```

You can also pass the `sessionKey` to the `ConnectButton`, `ConnectEmbed` components and `useConnect` hook.

```tsx
<ConnectButton
client={client}
accountAbstraction={{
chain,
sponsorGas: true,
sessionKey: {
address: "0x...",
permissions: {
approvedTargets: "*",
},
},
}}
/>
```

Also works for the `inAppWallet` `smartAccount` option!

```ts
const wallet = inAppWallet({
smartAccount: {
chain,
sponsorGas: true,
sessionKey: {
address: "0x...",
permissions: {
approvedTargets: "*",
},
},
},
});
```

### Patch Changes

- [#6193](https://github.com/thirdweb-dev/js/pull/6193) [`1f6bb7c`](https://github.com/thirdweb-dev/js/commit/1f6bb7c3294d70648b120a6a6a6cba13302a84fc) Thanks [@joaquim-verges](https://github.com/joaquim-verges)! - Show fiat amount in PayEmbed main screen

- [#6192](https://github.com/thirdweb-dev/js/pull/6192) [`30e13e6`](https://github.com/thirdweb-dev/js/commit/30e13e6b9176265a2f4eddfa53578889abbcb750) Thanks [@joaquim-verges](https://github.com/joaquim-verges)! - Allow editing pay amount mid flow

- [#6190](https://github.com/thirdweb-dev/js/pull/6190) [`2dfc245`](https://github.com/thirdweb-dev/js/commit/2dfc245d44dde86e42f6c799305db707316432aa) Thanks [@joaquim-verges](https://github.com/joaquim-verges)! - Add fiat provider selection in PayEmbed

- [#6187](https://github.com/thirdweb-dev/js/pull/6187) [`ee57ded`](https://github.com/thirdweb-dev/js/commit/ee57ded902cb69da6fc171599a4a90776e650149) Thanks [@joaquim-verges](https://github.com/joaquim-verges)! - Requery allowances when getting back to quote screen

- [#6188](https://github.com/thirdweb-dev/js/pull/6188) [`64d7bf3`](https://github.com/thirdweb-dev/js/commit/64d7bf358fe2014b684688d41d525a75e47f1b82) Thanks [@jnsdls](https://github.com/jnsdls)! - when explicitly passing `clientId` to `createThirdwebClient()` prefer it over computing the `clientId` from a passed `secretKey` option

## 5.87.4

### 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.87.4",
"version": "5.88.0",
"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.14

## 0.2.13

## 0.2.12
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.13",
"version": "0.2.14",
"repository": {
"type": "git",
"url": "git+https://github.com/thirdweb-dev/js.git#main"
Expand Down

0 comments on commit a322e16

Please sign in to comment.