Skip to content

Commit

Permalink
Version Packages (#4365)
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
jnsdls and github-actions[bot] authored Sep 4, 2024
1 parent 82a30af commit 257e428
Show file tree
Hide file tree
Showing 8 changed files with 75 additions and 57 deletions.
5 changes: 0 additions & 5 deletions .changeset/funny-crews-invite.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/heavy-moose-sing.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/honest-poems-fix.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/lucky-turkeys-whisper.md

This file was deleted.

15 changes: 0 additions & 15 deletions .changeset/old-lions-happen.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/two-ghosts-bake.md

This file was deleted.

26 changes: 26 additions & 0 deletions packages/thirdweb/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
# thirdweb

## 5.50.1

### Patch Changes

- [#4388](https://github.com/thirdweb-dev/js/pull/4388) [`82a30af`](https://github.com/thirdweb-dev/js/commit/82a30afd4bced6071d87c5c018a33ecf22c0449e) Thanks [@edwardysun](https://github.com/edwardysun)! - Update setting default source chain and token

- [#4375](https://github.com/thirdweb-dev/js/pull/4375) [`edb95d0`](https://github.com/thirdweb-dev/js/commit/edb95d00ca71385459181ced58117dec6619f6e7) Thanks [@jnsdls](https://github.com/jnsdls)! - [Extensions] expose permission detection logic

- [#4390](https://github.com/thirdweb-dev/js/pull/4390) [`d74e61b`](https://github.com/thirdweb-dev/js/commit/d74e61b58162e97327928f6b5117bed2ec09c1b4) Thanks [@MananTank](https://github.com/MananTank)! - Fix Swap Fees layout in fees drawer in pay UI

- [#4319](https://github.com/thirdweb-dev/js/pull/4319) [`73e5dc7`](https://github.com/thirdweb-dev/js/commit/73e5dc727668fb9c6cf185f16d28d28ab248558a) Thanks [@joaquim-verges](https://github.com/joaquim-verges)! - Fix direct payments to the same wallet

- [#4382](https://github.com/thirdweb-dev/js/pull/4382) [`9e8d3e6`](https://github.com/thirdweb-dev/js/commit/9e8d3e66393acb70fb2209c04628aad663e93e03) Thanks [@MananTank](https://github.com/MananTank)! - Add props for hiding "Send", "Receive" and "Send" buttons in Connect Details Modal UI for `ConnectButton` component. By default, all buttons are visible in the modal.

```tsx
<ConnectButton
detailsModal={{
hideSendFunds: false,
hideReceiveFunds: true,
hideBuyFunds: false,
}}
/>
```

- [#4363](https://github.com/thirdweb-dev/js/pull/4363) [`066aede`](https://github.com/thirdweb-dev/js/commit/066aede2d1bf42201c181a1cd12e1655131d1212) Thanks [@kien-ngo](https://github.com/kien-ngo)! - Allow to specify "from" and "to" props for the ClaimButton

## 5.50.0

### Minor Changes
Expand Down
66 changes: 49 additions & 17 deletions packages/thirdweb/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "thirdweb",
"version": "5.50.0",
"version": "5.50.1",
"repository": {
"type": "git",
"url": "git+https://github.com/thirdweb-dev/js.git#main"
Expand Down Expand Up @@ -117,22 +117,54 @@
},
"typesVersions": {
"*": {
"adapters/*": ["./dist/types/exports/adapters/*.d.ts"],
"auth": ["./dist/types/exports/auth.d.ts"],
"chains": ["./dist/types/exports/chains.d.ts"],
"contract": ["./dist/types/exports/contract.d.ts"],
"deploys": ["./dist/types/exports/deploys.d.ts"],
"event": ["./dist/types/exports/event.d.ts"],
"extensions/*": ["./dist/types/exports/extensions/*.d.ts"],
"pay": ["./dist/types/exports/pay.d.ts"],
"react": ["./dist/types/exports/react.d.ts"],
"react-native": ["./dist/types/exports/react-native.d.ts"],
"rpc": ["./dist/types/exports/rpc.d.ts"],
"storage": ["./dist/types/exports/storage.d.ts"],
"transaction": ["./dist/types/exports/transaction.d.ts"],
"utils": ["./dist/types/exports/utils.d.ts"],
"wallets": ["./dist/types/exports/wallets.d.ts"],
"wallets/*": ["./dist/types/exports/wallets/*.d.ts"]
"adapters/*": [
"./dist/types/exports/adapters/*.d.ts"
],
"auth": [
"./dist/types/exports/auth.d.ts"
],
"chains": [
"./dist/types/exports/chains.d.ts"
],
"contract": [
"./dist/types/exports/contract.d.ts"
],
"deploys": [
"./dist/types/exports/deploys.d.ts"
],
"event": [
"./dist/types/exports/event.d.ts"
],
"extensions/*": [
"./dist/types/exports/extensions/*.d.ts"
],
"pay": [
"./dist/types/exports/pay.d.ts"
],
"react": [
"./dist/types/exports/react.d.ts"
],
"react-native": [
"./dist/types/exports/react-native.d.ts"
],
"rpc": [
"./dist/types/exports/rpc.d.ts"
],
"storage": [
"./dist/types/exports/storage.d.ts"
],
"transaction": [
"./dist/types/exports/transaction.d.ts"
],
"utils": [
"./dist/types/exports/utils.d.ts"
],
"wallets": [
"./dist/types/exports/wallets.d.ts"
],
"wallets/*": [
"./dist/types/exports/wallets/*.d.ts"
]
}
},
"browser": {
Expand Down

0 comments on commit 257e428

Please sign in to comment.