Skip to content

Commit c1de020

Browse files
Version Packages
1 parent 17fe41d commit c1de020

29 files changed

+137
-75
lines changed

.changeset/fast-bags-attend.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/gentle-kings-shout.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/gold-parents-move.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/green-spies-fold.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/khaki-queens-check.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

.changeset/kind-bears-decide.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

.changeset/nasty-pears-pay.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/olive-readers-marry.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/rotten-tigers-shake.md

Lines changed: 0 additions & 20 deletions
This file was deleted.

packages/auth/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @thirdweb-dev/auth
22

3+
## 4.1.11
4+
5+
### Patch Changes
6+
7+
- [#1973](https://github.com/thirdweb-dev/js/pull/1973) [`36600dec`](https://github.com/thirdweb-dev/js/commit/36600decefca7b9ebb1924757b4186b559e439f6) Thanks [@assimovt](https://github.com/assimovt)! - add logging to authenticate
8+
9+
- Updated dependencies [[`1094a03a`](https://github.com/thirdweb-dev/js/commit/1094a03a04f3e7ade84af0f7a6073794c0904cb1)]:
10+
- @thirdweb-dev/wallets@2.1.8
11+
312
## 4.1.10
413

514
### Patch Changes

packages/auth/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@thirdweb-dev/auth",
3-
"version": "4.1.10",
3+
"version": "4.1.11",
44
"main": "dist/thirdweb-dev-auth.cjs.js",
55
"module": "dist/thirdweb-dev-auth.esm.js",
66
"browser": {

packages/cli/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# thirdweb
22

3+
## 0.13.19
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`36600dec`](https://github.com/thirdweb-dev/js/commit/36600decefca7b9ebb1924757b4186b559e439f6), [`1094a03a`](https://github.com/thirdweb-dev/js/commit/1094a03a04f3e7ade84af0f7a6073794c0904cb1), [`7c45941b`](https://github.com/thirdweb-dev/js/commit/7c45941b57fb5a6f83be507ee64dbf885d93c9d4)]:
8+
- @thirdweb-dev/auth@4.1.11
9+
- @thirdweb-dev/wallets@2.1.8
10+
- @thirdweb-dev/sdk@4.0.16
11+
312
## 0.13.18
413

514
### Patch Changes

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "thirdweb",
33
"main": "dist/cli/index.js",
4-
"version": "0.13.18",
4+
"version": "0.13.19",
55
"repository": "https://github.com/thirdweb-dev/js/tree/main/packages/cli",
66
"author": "thirdweb eng <[email protected]>",
77
"license": "Apache-2.0",

packages/react-core/CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,36 @@
11
# @thirdweb-dev/react-core
22

3+
## 4.1.9
4+
5+
### Patch Changes
6+
7+
- [#1952](https://github.com/thirdweb-dev/js/pull/1952) [`fb0cb676`](https://github.com/thirdweb-dev/js/commit/fb0cb676b996fe386dcc53b5a6dab03f88e76175) Thanks [@MananTank](https://github.com/MananTank)! - - Add `ConnectEmbed`` component to embed the ConnectWallet's Modal UI directly in page
8+
9+
- Fix `ConnectWallet` component setting personal wallet as "connected" wallet when connecting a Safe / Smart Wallet
10+
11+
- [#1921](https://github.com/thirdweb-dev/js/pull/1921) [`1094a03a`](https://github.com/thirdweb-dev/js/commit/1094a03a04f3e7ade84af0f7a6073794c0904cb1) Thanks [@kien-ngo](https://github.com/kien-ngo)! - Add Coin98 wallet
12+
13+
- [#1971](https://github.com/thirdweb-dev/js/pull/1971) [`12d85dec`](https://github.com/thirdweb-dev/js/commit/12d85dec10f47d6520b737a23576e4f832abb47f) Thanks [@iketw](https://github.com/iketw)! - Adds usePersonalWalletAddress hook to React/RN
14+
15+
```typescript
16+
// React
17+
import { usePersonalWalletAddress } from "@thirdweb-dev/react";
18+
19+
const personalWalletAddress = usePersonalWalletAddress();
20+
```
21+
22+
```typescript
23+
// React-Native
24+
import { usePersonalWalletAddress } from "@thirdweb-dev/react-native";
25+
26+
const personalWalletAddress = usePersonalWalletAddress();
27+
```
28+
29+
- Updated dependencies [[`36600dec`](https://github.com/thirdweb-dev/js/commit/36600decefca7b9ebb1924757b4186b559e439f6), [`1094a03a`](https://github.com/thirdweb-dev/js/commit/1094a03a04f3e7ade84af0f7a6073794c0904cb1), [`7c45941b`](https://github.com/thirdweb-dev/js/commit/7c45941b57fb5a6f83be507ee64dbf885d93c9d4)]:
30+
- @thirdweb-dev/auth@4.1.11
31+
- @thirdweb-dev/wallets@2.1.8
32+
- @thirdweb-dev/sdk@4.0.16
33+
334
## 4.1.8
435

536
### Patch Changes

packages/react-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@thirdweb-dev/react-core",
3-
"version": "4.1.8",
3+
"version": "4.1.9",
44
"repository": "https://github.com/thirdweb-dev/js/tree/main/packages/react-core",
55
"author": "thirdweb eng <[email protected]>",
66
"license": "Apache-2.0",

packages/react-native-compat/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# @thirdweb-dev/react-native-compat
22

3+
## 0.4.9
4+
35
## 0.4.8
46

57
## 0.4.7

packages/react-native-compat/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@thirdweb-dev/react-native-compat",
33
"description": "Shims for Thirdweb in React Native Projects",
4-
"version": "0.4.8",
4+
"version": "0.4.9",
55
"author": "thirdweb eng <[email protected]>",
66
"repository": "https://github.com/thirdweb-dev/js/tree/main/packages/react-native-compat",
77
"license": "Apache-2.0",

packages/react-native/CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,30 @@
11
# @thirdweb-dev/react-native
22

3+
## 0.4.9
4+
5+
### Patch Changes
6+
7+
- [#1971](https://github.com/thirdweb-dev/js/pull/1971) [`12d85dec`](https://github.com/thirdweb-dev/js/commit/12d85dec10f47d6520b737a23576e4f832abb47f) Thanks [@iketw](https://github.com/iketw)! - Adds usePersonalWalletAddress hook to React/RN
8+
9+
```typescript
10+
// React
11+
import { usePersonalWalletAddress } from "@thirdweb-dev/react";
12+
13+
const personalWalletAddress = usePersonalWalletAddress();
14+
```
15+
16+
```typescript
17+
// React-Native
18+
import { usePersonalWalletAddress } from "@thirdweb-dev/react-native";
19+
20+
const personalWalletAddress = usePersonalWalletAddress();
21+
```
22+
23+
- Updated dependencies [[`fb0cb676`](https://github.com/thirdweb-dev/js/commit/fb0cb676b996fe386dcc53b5a6dab03f88e76175), [`1094a03a`](https://github.com/thirdweb-dev/js/commit/1094a03a04f3e7ade84af0f7a6073794c0904cb1), [`7c45941b`](https://github.com/thirdweb-dev/js/commit/7c45941b57fb5a6f83be507ee64dbf885d93c9d4), [`12d85dec`](https://github.com/thirdweb-dev/js/commit/12d85dec10f47d6520b737a23576e4f832abb47f)]:
24+
- @thirdweb-dev/react-core@4.1.9
25+
- @thirdweb-dev/wallets@2.1.8
26+
- @thirdweb-dev/sdk@4.0.16
27+
328
## 0.4.8
429

530
### Patch Changes

packages/react-native/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@thirdweb-dev/react-native",
3-
"version": "0.4.8",
3+
"version": "0.4.9",
44
"repository": "https://github.com/thirdweb-dev/js/tree/main/packages/react-native",
55
"author": "thirdweb eng <[email protected]>",
66
"license": "Apache-2.0",

packages/react/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# @thirdweb-dev/react
22

3+
## 4.1.9
4+
5+
### Patch Changes
6+
7+
- [#1952](https://github.com/thirdweb-dev/js/pull/1952) [`fb0cb676`](https://github.com/thirdweb-dev/js/commit/fb0cb676b996fe386dcc53b5a6dab03f88e76175) Thanks [@MananTank](https://github.com/MananTank)! - - Add `ConnectEmbed`` component to embed the ConnectWallet's Modal UI directly in page
8+
9+
- Fix `ConnectWallet` component setting personal wallet as "connected" wallet when connecting a Safe / Smart Wallet
10+
11+
- [#1921](https://github.com/thirdweb-dev/js/pull/1921) [`1094a03a`](https://github.com/thirdweb-dev/js/commit/1094a03a04f3e7ade84af0f7a6073794c0904cb1) Thanks [@kien-ngo](https://github.com/kien-ngo)! - Add Coin98 wallet
12+
13+
- Updated dependencies [[`fb0cb676`](https://github.com/thirdweb-dev/js/commit/fb0cb676b996fe386dcc53b5a6dab03f88e76175), [`1094a03a`](https://github.com/thirdweb-dev/js/commit/1094a03a04f3e7ade84af0f7a6073794c0904cb1), [`7c45941b`](https://github.com/thirdweb-dev/js/commit/7c45941b57fb5a6f83be507ee64dbf885d93c9d4), [`12d85dec`](https://github.com/thirdweb-dev/js/commit/12d85dec10f47d6520b737a23576e4f832abb47f)]:
14+
- @thirdweb-dev/react-core@4.1.9
15+
- @thirdweb-dev/wallets@2.1.8
16+
- @thirdweb-dev/sdk@4.0.16
17+
318
## 4.1.8
419

520
### Patch Changes

packages/react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@thirdweb-dev/react",
3-
"version": "4.1.8",
3+
"version": "4.1.9",
44
"repository": "https://github.com/thirdweb-dev/js/tree/main/packages/react",
55
"author": "thirdweb eng <[email protected]>",
66
"license": "Apache-2.0",

packages/sdk/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @thirdweb-dev/sdk
22

3+
## 4.0.16
4+
5+
### Patch Changes
6+
7+
- [#1974](https://github.com/thirdweb-dev/js/pull/1974) [`7c45941b`](https://github.com/thirdweb-dev/js/commit/7c45941b57fb5a6f83be507ee64dbf885d93c9d4) Thanks [@adam-maj](https://github.com/adam-maj)! - Add support for new relayer and polygon relayer
8+
39
## 4.0.15
410

511
### Patch Changes

packages/sdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@thirdweb-dev/sdk",
3-
"version": "4.0.15",
3+
"version": "4.0.16",
44
"description": "The main thirdweb SDK.",
55
"repository": "https://github.com/thirdweb-dev/js/tree/main/packages/sdk",
66
"license": "Apache-2.0",

packages/service-utils/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @thirdweb-dev/service-utils
22

3+
## 0.4.10
4+
5+
### Patch Changes
6+
7+
- [#1988](https://github.com/thirdweb-dev/js/pull/1988) [`17fe41d4`](https://github.com/thirdweb-dev/js/commit/17fe41d42bf99ccc83669557dc48d6fd22a5a04e) Thanks [@assimovt](https://github.com/assimovt)! - fix api key caching ttl
8+
39
## 0.4.9
410

511
### Patch Changes

packages/service-utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@thirdweb-dev/service-utils",
3-
"version": "0.4.9",
3+
"version": "0.4.10",
44
"main": "dist/thirdweb-dev-service-utils.cjs.js",
55
"module": "dist/thirdweb-dev-service-utils.esm.js",
66
"exports": {

packages/unity-js-bridge/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# @thirdweb-dev/unity-js-bridge
22

3+
## 0.2.105
4+
5+
### Patch Changes
6+
7+
- [#1985](https://github.com/thirdweb-dev/js/pull/1985) [`62cc785c`](https://github.com/thirdweb-dev/js/commit/62cc785c4ac6886fbc3b117bfb3d85dcf7523df1) Thanks [@0xFirekeeper](https://github.com/0xFirekeeper)! - [Unity] Support Add/Remove Admin and Create Session Key for SW
8+
9+
- [#1986](https://github.com/thirdweb-dev/js/pull/1986) [`e09221f1`](https://github.com/thirdweb-dev/js/commit/e09221f1e0cf89bf4a8b512c107cfa7cb9bcb82e) Thanks [@0xFirekeeper](https://github.com/0xFirekeeper)! - [Unity] Support Smart Wallet Account Override
10+
11+
- [#1981](https://github.com/thirdweb-dev/js/pull/1981) [`7a2e0eda`](https://github.com/thirdweb-dev/js/commit/7a2e0edab4e8c11d6c8bfc8970ed2768583a48d6) Thanks [@0xFirekeeper](https://github.com/0xFirekeeper)! - [Unity] Added Facebook and Apple providers
12+
13+
- Updated dependencies [[`36600dec`](https://github.com/thirdweb-dev/js/commit/36600decefca7b9ebb1924757b4186b559e439f6), [`1094a03a`](https://github.com/thirdweb-dev/js/commit/1094a03a04f3e7ade84af0f7a6073794c0904cb1), [`7c45941b`](https://github.com/thirdweb-dev/js/commit/7c45941b57fb5a6f83be507ee64dbf885d93c9d4)]:
14+
- @thirdweb-dev/auth@4.1.11
15+
- @thirdweb-dev/wallets@2.1.8
16+
- @thirdweb-dev/sdk@4.0.16
17+
318
## 0.2.104
419

520
### Patch Changes

packages/unity-js-bridge/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@thirdweb-dev/unity-js-bridge",
3-
"version": "0.2.104",
3+
"version": "0.2.105",
44
"main": "dist/thirdweb-unity-bridge.js",
55
"repository": "https://github.com/thirdweb-dev/js/tree/main/packages/unity-js-bridge",
66
"license": "Apache-2.0",

packages/wallets/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @thirdweb-dev/wallets
22

3+
## 2.1.8
4+
5+
### Patch Changes
6+
7+
- [#1921](https://github.com/thirdweb-dev/js/pull/1921) [`1094a03a`](https://github.com/thirdweb-dev/js/commit/1094a03a04f3e7ade84af0f7a6073794c0904cb1) Thanks [@kien-ngo](https://github.com/kien-ngo)! - Add Coin98 wallet
8+
9+
- Updated dependencies [[`7c45941b`](https://github.com/thirdweb-dev/js/commit/7c45941b57fb5a6f83be507ee64dbf885d93c9d4)]:
10+
- @thirdweb-dev/sdk@4.0.16
11+
312
## 2.1.7
413

514
### Patch Changes

packages/wallets/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@thirdweb-dev/wallets",
3-
"version": "2.1.7",
3+
"version": "2.1.8",
44
"main": "dist/thirdweb-dev-wallets.cjs.js",
55
"module": "dist/thirdweb-dev-wallets.esm.js",
66
"browser": {

0 commit comments

Comments
 (0)