Skip to content

Commit 2c1e747

Browse files
Version Packages
1 parent 7a3dff0 commit 2c1e747

File tree

11 files changed

+44
-57
lines changed

11 files changed

+44
-57
lines changed

.changeset/blue-ears-sit.md

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

.changeset/breezy-items-relate.md

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

.changeset/cool-pianos-walk.md

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

.changeset/green-rockets-lie.md

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

.changeset/happy-carrots-appear.md

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

.changeset/hip-llamas-wash.md

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

.changeset/six-snails-reflect.md

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

packages/thirdweb/CHANGELOG.md

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

3+
## 5.84.0
4+
5+
### Minor Changes
6+
7+
- [#5889](https://github.com/thirdweb-dev/js/pull/5889) [`7a3dff0`](https://github.com/thirdweb-dev/js/commit/7a3dff01cd4ef1b20b783312f4cb755dd2fddcbd) Thanks [@ElasticBottle](https://github.com/ElasticBottle)! - Exposes autoConnect as a standalone function for use outside of react.
8+
9+
```tsx
10+
import { autoConnect } from "thirdweb/wallets";
11+
12+
const autoConnected = await autoConnect({
13+
client,
14+
onConnect: (wallet) => {
15+
console.log("wallet", wallet); /// wallet that is have been auto connected.
16+
},
17+
});
18+
console.log("isAutoConnected", isAutoConnected); // true or false
19+
```
20+
21+
### Patch Changes
22+
23+
- [#5926](https://github.com/thirdweb-dev/js/pull/5926) [`4b5661b`](https://github.com/thirdweb-dev/js/commit/4b5661b9817d1e0d67a8574d7c5931d3e892a006) Thanks [@MananTank](https://github.com/MananTank)! - Export `toEventSelector` utility function from "thirdweb/utils"
24+
25+
- [#5923](https://github.com/thirdweb-dev/js/pull/5923) [`42a313f`](https://github.com/thirdweb-dev/js/commit/42a313f3b2d89696d5374e5a705e9f144bf46ebe) Thanks [@kumaryash90](https://github.com/kumaryash90)! - Fix deploy version for published contracts
26+
27+
- [#5924](https://github.com/thirdweb-dev/js/pull/5924) [`7fb5ce1`](https://github.com/thirdweb-dev/js/commit/7fb5ce1cc3af8bc9d99fef52018d3e1c7b558eaa) Thanks [@joaquim-verges](https://github.com/joaquim-verges)! - Ensure resetting deploy flag on bundler errors
28+
29+
- [#5937](https://github.com/thirdweb-dev/js/pull/5937) [`0e2b3df`](https://github.com/thirdweb-dev/js/commit/0e2b3df42aee57f30b7e8c32dbf034f5deb37303) Thanks [@MananTank](https://github.com/MananTank)! - Add `isValidENSName` utility function for checking if a string is a valid ENS name. It does not check if the name is actually registered, it only checks if the string is in a valid format.
30+
31+
```ts
32+
import { isValidENSName } from "thirdweb/utils";
33+
34+
isValidENSName("thirdweb.eth"); // true
35+
isValidENSName("foo.bar.com"); // true
36+
isValidENSName("foo"); // false
37+
```
38+
39+
- [#5790](https://github.com/thirdweb-dev/js/pull/5790) [`e331e43`](https://github.com/thirdweb-dev/js/commit/e331e433ac90920fc3bd710d8aa00bc9ec03fa22) Thanks [@gregfromstl](https://github.com/gregfromstl)! - Migrated underlying functionality to Ox
40+
41+
- [#5914](https://github.com/thirdweb-dev/js/pull/5914) [`c5c6f9d`](https://github.com/thirdweb-dev/js/commit/c5c6f9d7415a438ddb0823764884d9c77b687163) Thanks [@MananTank](https://github.com/MananTank)! - Do not prompt user for signing message for SIWE auth in Connect UI for Ecosystem wallets
42+
343
## 5.83.1
444

545
### Patch Changes

packages/thirdweb/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "thirdweb",
3-
"version": "5.83.1",
3+
"version": "5.84.0",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/thirdweb-dev/js.git#main"

packages/wagmi-adapter/CHANGELOG.md

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

3+
## 0.1.8
4+
35
## 0.1.7
46

57
## 0.1.6

packages/wagmi-adapter/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/wagmi-adapter",
3-
"version": "0.1.7",
3+
"version": "0.1.8",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/thirdweb-dev/js.git#main"

0 commit comments

Comments
 (0)