Skip to content

Commit d115307

Browse files
Version Packages (#4570)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 5d3b395 commit d115307

File tree

7 files changed

+54
-52
lines changed

7 files changed

+54
-52
lines changed

.changeset/long-rice-complain.md

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

.changeset/mean-owls-nail.md

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

.changeset/perfect-poems-scream.md

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

.changeset/yellow-donkeys-tie.md

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

apps/dashboard/package.json

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,8 +169,16 @@
169169
"tw-components",
170170
"contract-ui"
171171
],
172-
"exclude": ["node_modules", "types", "tw-components"],
172+
"exclude": [
173+
"node_modules",
174+
"types",
175+
"tw-components"
176+
],
173177
"entrypoints": []
174178
},
175-
"browserslist": ["defaults", "unreleased versions", "not UCAndroid > 0"]
179+
"browserslist": [
180+
"defaults",
181+
"unreleased versions",
182+
"not UCAndroid > 0"
183+
]
176184
}

packages/thirdweb/CHANGELOG.md

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

3+
## 5.55.0
4+
5+
### Minor Changes
6+
7+
- [#4571](https://github.com/thirdweb-dev/js/pull/4571) [`5058fdb`](https://github.com/thirdweb-dev/js/commit/5058fdb4707c18a3b22895f90b3682a3c91db52f) Thanks [@gregfromstl](https://github.com/gregfromstl)! - Adds X authentication
8+
9+
- [#4565](https://github.com/thirdweb-dev/js/pull/4565) [`c0778cb`](https://github.com/thirdweb-dev/js/commit/c0778cb9305476025b07bb39b8159f749d15359a) Thanks [@gregfromstl](https://github.com/gregfromstl)! - Adds parseAvatarRecord and parseNftUri utilities
10+
11+
```ts
12+
import { parseAvatarRecord } from "thirdweb/extensions/ens";
13+
import { parseNftUri } from "thirdweb/extensions/common";
14+
15+
const avatarUrl = await parseAvatarRecord({
16+
client,
17+
uri: "...",
18+
});
19+
20+
const nftUri = await parseNftUri({
21+
client,
22+
uri: "...",
23+
});
24+
```
25+
26+
### Patch Changes
27+
28+
- [#4582](https://github.com/thirdweb-dev/js/pull/4582) [`5d3b395`](https://github.com/thirdweb-dev/js/commit/5d3b39587b56a7b1ad49accf26a4c9a311b12795) Thanks [@gregfromstl](https://github.com/gregfromstl)! - Adds the ability to hide certain wallets in the wallet switcher
29+
30+
```tsx
31+
<ConnectButton
32+
client={client}
33+
detailsModal={{
34+
// We hide the in-app wallet so they can't switch to it
35+
hiddenWallets: ["inApp"],
36+
}}
37+
accountAbstraction={{
38+
chain: baseSepolia,
39+
sponsorGas: true,
40+
}}
41+
/>
42+
```
43+
44+
- [#4546](https://github.com/thirdweb-dev/js/pull/4546) [`3901805`](https://github.com/thirdweb-dev/js/commit/390180592a6d71591c43bcbe3c94da2eeaa5b0d6) Thanks [@edwardysun](https://github.com/edwardysun)! - Add preferredProvider to buyWithFiat
45+
346
## 5.54.0
447

548
### Minor 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.54.0",
3+
"version": "5.55.0",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/thirdweb-dev/js.git#main"

0 commit comments

Comments
 (0)