Skip to content

chore: version packages#5397

Merged
tomiir merged 1 commit intorelease/1.8.15from
changeset-release/release/1.8.15
Dec 9, 2025
Merged

chore: version packages#5397
tomiir merged 1 commit intorelease/1.8.15from
changeset-release/release/1.8.15

Conversation

@github-actions
Copy link
Copy Markdown
Contributor

@github-actions github-actions bot commented Dec 8, 2025

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to release/1.8.15, this PR will be updated.

Releases

@reown/appkit-adapter-bitcoin@1.8.15

Patch Changes

  • #5378 2867bfd Thanks @magiziz! - Fixed an issue where profile wallets tabs were shown in the wrong order

  • #5364 d186212 Thanks @magiziz! - Fixed an issue where wallet buttons were not working in the in-app wallet browser

  • Updated dependencies [2867bfd, ecf1794, d186212, e330f62]:

    • @reown/appkit@1.8.15
    • @reown/appkit-utils@1.8.15
    • @reown/appkit-common@1.8.15
    • @reown/appkit-controllers@1.8.15
    • @reown/appkit-polyfills@1.8.15

@reown/appkit-adapter-ethers@1.8.15

Patch Changes

  • #5378 2867bfd Thanks @magiziz! - Fixed an issue where profile wallets tabs were shown in the wrong order

  • #5336 ecf1794 Thanks @tomiir! - Defers Coinbase SDK in ethers adapters to connection step

  • #5364 d186212 Thanks @magiziz! - Fixed an issue where wallet buttons were not working in the in-app wallet browser

  • Updated dependencies [2867bfd, ecf1794, d186212, e330f62]:

    • @reown/appkit-scaffold-ui@1.8.15
    • @reown/appkit@1.8.15
    • @reown/appkit-utils@1.8.15
    • @reown/appkit-common@1.8.15
    • @reown/appkit-controllers@1.8.15
    • @reown/appkit-polyfills@1.8.15
    • @reown/appkit-wallet@1.8.15

@reown/appkit-adapter-ethers5@1.8.15

Patch Changes

  • #5378 2867bfd Thanks @magiziz! - Fixed an issue where profile wallets tabs were shown in the wrong order

  • #5336 ecf1794 Thanks @tomiir! - Defers Coinbase SDK in ethers adapters to connection step

  • #5364 d186212 Thanks @magiziz! - Fixed an issue where wallet buttons were not working in the in-app wallet browser

  • Updated dependencies [2867bfd, ecf1794, d186212, e330f62]:

    • @reown/appkit-scaffold-ui@1.8.15
    • @reown/appkit@1.8.15
    • @reown/appkit-utils@1.8.15
    • @reown/appkit-common@1.8.15
    • @reown/appkit-controllers@1.8.15
    • @reown/appkit-polyfills@1.8.15
    • @reown/appkit-wallet@1.8.15

@reown/appkit-adapter-solana@1.8.15

Patch Changes

  • #5378 2867bfd Thanks @magiziz! - Fixed an issue where profile wallets tabs were shown in the wrong order

  • #5364 d186212 Thanks @magiziz! - Fixed an issue where wallet buttons were not working in the in-app wallet browser

  • Updated dependencies [2867bfd, ecf1794, d186212, e330f62]:

    • @reown/appkit@1.8.15
    • @reown/appkit-utils@1.8.15
    • @reown/appkit-common@1.8.15
    • @reown/appkit-controllers@1.8.15
    • @reown/appkit-polyfills@1.8.15
    • @reown/appkit-wallet@1.8.15

@reown/appkit-adapter-ton@1.8.15

Patch Changes

  • #5378 2867bfd Thanks @magiziz! - Fixed an issue where profile wallets tabs were shown in the wrong order

  • #5364 d186212 Thanks @magiziz! - Fixed an issue where wallet buttons were not working in the in-app wallet browser

  • Updated dependencies [2867bfd, ecf1794, d186212, e330f62]:

    • @reown/appkit@1.8.15
    • @reown/appkit-utils@1.8.15
    • @reown/appkit-common@1.8.15
    • @reown/appkit-controllers@1.8.15
    • @reown/appkit-polyfills@1.8.15

@reown/appkit-adapter-wagmi@1.8.15

Patch Changes

  • #5378 2867bfd Thanks @magiziz! - Fixed an issue where profile wallets tabs were shown in the wrong order

  • #5364 d186212 Thanks @magiziz! - Fixed an issue where wallet buttons were not working in the in-app wallet browser

  • Updated dependencies [2867bfd, ecf1794, d186212, e330f62]:

    • @reown/appkit-scaffold-ui@1.8.15
    • @reown/appkit@1.8.15
    • @reown/appkit-utils@1.8.15
    • @reown/appkit-common@1.8.15
    • @reown/appkit-controllers@1.8.15
    • @reown/appkit-polyfills@1.8.15
    • @reown/appkit-wallet@1.8.15

@reown/appkit@1.8.15

Patch Changes

  • #5378 2867bfd Thanks @magiziz! - Fixed an issue where profile wallets tabs were shown in the wrong order

  • #5336 ecf1794 Thanks @tomiir! - Defers Coinbase SDK in ethers adapters to connection step

  • #5364 d186212 Thanks @magiziz! - Fixed an issue where wallet buttons were not working in the in-app wallet browser

  • #5297 e330f62 Thanks @enesozturk! - Implements new useAppKitWallets hook to let users build custom connect user interfaces.

    Features

    • List, and connect with extension wallets.
    • List, search and connect the WalletConnect wallets.
    • Multi-chain.
    • Multi-platform.

    Examples

    Listing injected wallets:

    const { data } = useAppKitWallets()
    
    const injectedWallets = data.filter(wallet => wallet.isInjected)
    
    injectedWallets.map(wallet => {
      return <WalletItem name={wallet.name} imageSrc={wallet.imageUrl} />
    })

    Listing WalletConnect wallets:

    const { data } = useAppKitWallets()
    
    const wcWallets = data.filter(wallet => !wallet.isInjected)
    
    wcWallets.map(wallet => {
      return <WalletItem name={wallet.name} imageSrc={wallet.imageUrl} />
    })

    Connecting to a wallet:

    const { connect } = useAppKitWallets()
    ...
    await connect(wallet)
  • Updated dependencies [2867bfd, ecf1794, d186212, e330f62]:

    • @reown/appkit-scaffold-ui@1.8.15
    • @reown/appkit-utils@1.8.15
    • @reown/appkit-common@1.8.15
    • @reown/appkit-controllers@1.8.15
    • @reown/appkit-pay@1.8.15
    • @reown/appkit-polyfills@1.8.15
    • @reown/appkit-ui@1.8.15
    • @reown/appkit-wallet@1.8.15

@reown/appkit-utils@1.8.15

Patch Changes

  • #5378 2867bfd Thanks @magiziz! - Fixed an issue where profile wallets tabs were shown in the wrong order

  • #5336 ecf1794 Thanks @tomiir! - Defers Coinbase SDK in ethers adapters to connection step

  • #5364 d186212 Thanks @magiziz! - Fixed an issue where wallet buttons were not working in the in-app wallet browser

  • Updated dependencies [2867bfd, d186212, e330f62]:

    • @reown/appkit-common@1.8.15
    • @reown/appkit-controllers@1.8.15
    • @reown/appkit-polyfills@1.8.15
    • @reown/appkit-wallet@1.8.15

@reown/appkit-cdn@1.8.15

Patch Changes

  • #5378 2867bfd Thanks @magiziz! - Fixed an issue where profile wallets tabs were shown in the wrong order

  • #5364 d186212 Thanks @magiziz! - Fixed an issue where wallet buttons were not working in the in-app wallet browser

  • Updated dependencies [2867bfd, ecf1794, d186212, e330f62]:

    • @reown/appkit-adapter-ethers@1.8.15
    • @reown/appkit-adapter-ethers5@1.8.15
    • @reown/appkit-adapter-solana@1.8.15
    • @reown/appkit-adapter-wagmi@1.8.15
    • @reown/appkit@1.8.15
    • @reown/appkit-polyfills@1.8.15

@reown/appkit-cli@1.8.15

Patch Changes

  • #5378 2867bfd Thanks @magiziz! - Fixed an issue where profile wallets tabs were shown in the wrong order

  • #5364 d186212 Thanks @magiziz! - Fixed an issue where wallet buttons were not working in the in-app wallet browser

@reown/appkit-codemod@1.8.15

Patch Changes

  • #5378 2867bfd Thanks @magiziz! - Fixed an issue where profile wallets tabs were shown in the wrong order

  • #5364 d186212 Thanks @magiziz! - Fixed an issue where wallet buttons were not working in the in-app wallet browser

@reown/appkit-common@1.8.15

Patch Changes

  • #5378 2867bfd Thanks @magiziz! - Fixed an issue where profile wallets tabs were shown in the wrong order

  • #5364 d186212 Thanks @magiziz! - Fixed an issue where wallet buttons were not working in the in-app wallet browser

@reown/appkit-controllers@1.8.15

Patch Changes

  • #5378 2867bfd Thanks @magiziz! - Fixed an issue where profile wallets tabs were shown in the wrong order

  • #5364 d186212 Thanks @magiziz! - Fixed an issue where wallet buttons were not working in the in-app wallet browser

  • #5297 e330f62 Thanks @enesozturk! - Implements new useAppKitWallets hook to let users build custom connect user interfaces.

    Features

    • List, and connect with extension wallets.
    • List, search and connect the WalletConnect wallets.
    • Multi-chain.
    • Multi-platform.

    Examples

    Listing injected wallets:

    const { data } = useAppKitWallets()
    
    const injectedWallets = data.filter(wallet => wallet.isInjected)
    
    injectedWallets.map(wallet => {
      return <WalletItem name={wallet.name} imageSrc={wallet.imageUrl} />
    })

    Listing WalletConnect wallets:

    const { data } = useAppKitWallets()
    
    const wcWallets = data.filter(wallet => !wallet.isInjected)
    
    wcWallets.map(wallet => {
      return <WalletItem name={wallet.name} imageSrc={wallet.imageUrl} />
    })

    Connecting to a wallet:

    const { connect } = useAppKitWallets()
    ...
    await connect(wallet)
  • Updated dependencies [2867bfd, d186212]:

    • @reown/appkit-common@1.8.15
    • @reown/appkit-wallet@1.8.15

@reown/appkit-core@1.8.15

Patch Changes

@reown/appkit-experimental@1.8.15

Patch Changes

  • #5378 2867bfd Thanks @magiziz! - Fixed an issue where profile wallets tabs were shown in the wrong order

  • #5364 d186212 Thanks @magiziz! - Fixed an issue where wallet buttons were not working in the in-app wallet browser

  • #5297 e330f62 Thanks @enesozturk! - Implements new useAppKitWallets hook to let users build custom connect user interfaces.

    Features

    • List, and connect with extension wallets.
    • List, search and connect the WalletConnect wallets.
    • Multi-chain.
    • Multi-platform.

    Examples

    Listing injected wallets:

    const { data } = useAppKitWallets()
    
    const injectedWallets = data.filter(wallet => wallet.isInjected)
    
    injectedWallets.map(wallet => {
      return <WalletItem name={wallet.name} imageSrc={wallet.imageUrl} />
    })

    Listing WalletConnect wallets:

    const { data } = useAppKitWallets()
    
    const wcWallets = data.filter(wallet => !wallet.isInjected)
    
    wcWallets.map(wallet => {
      return <WalletItem name={wallet.name} imageSrc={wallet.imageUrl} />
    })

    Connecting to a wallet:

    const { connect } = useAppKitWallets()
    ...
    await connect(wallet)
  • Updated dependencies [2867bfd, ecf1794, d186212, e330f62]:

    • @reown/appkit@1.8.15
    • @reown/appkit-utils@1.8.15
    • @reown/appkit-common@1.8.15
    • @reown/appkit-controllers@1.8.15
    • @reown/appkit-ui@1.8.15

@reown/appkit-pay@1.8.15

Patch Changes

  • #5378 2867bfd Thanks @magiziz! - Fixed an issue where profile wallets tabs were shown in the wrong order

  • #5364 d186212 Thanks @magiziz! - Fixed an issue where wallet buttons were not working in the in-app wallet browser

  • Updated dependencies [2867bfd, ecf1794, d186212, e330f62]:

    • @reown/appkit-utils@1.8.15
    • @reown/appkit-common@1.8.15
    • @reown/appkit-controllers@1.8.15
    • @reown/appkit-ui@1.8.15

@reown/appkit-polyfills@1.8.15

Patch Changes

  • #5378 2867bfd Thanks @magiziz! - Fixed an issue where profile wallets tabs were shown in the wrong order

  • #5364 d186212 Thanks @magiziz! - Fixed an issue where wallet buttons were not working in the in-app wallet browser

@reown/appkit-scaffold-ui@1.8.15

Patch Changes

  • #5378 2867bfd Thanks @magiziz! - Fixed an issue where profile wallets tabs were shown in the wrong order

  • #5364 d186212 Thanks @magiziz! - Fixed an issue where wallet buttons were not working in the in-app wallet browser

  • #5297 e330f62 Thanks @enesozturk! - Implements new useAppKitWallets hook to let users build custom connect user interfaces.

    Features

    • List, and connect with extension wallets.
    • List, search and connect the WalletConnect wallets.
    • Multi-chain.
    • Multi-platform.

    Examples

    Listing injected wallets:

    const { data } = useAppKitWallets()
    
    const injectedWallets = data.filter(wallet => wallet.isInjected)
    
    injectedWallets.map(wallet => {
      return <WalletItem name={wallet.name} imageSrc={wallet.imageUrl} />
    })

    Listing WalletConnect wallets:

    const { data } = useAppKitWallets()
    
    const wcWallets = data.filter(wallet => !wallet.isInjected)
    
    wcWallets.map(wallet => {
      return <WalletItem name={wallet.name} imageSrc={wallet.imageUrl} />
    })

    Connecting to a wallet:

    const { connect } = useAppKitWallets()
    ...
    await connect(wallet)
  • Updated dependencies [2867bfd, ecf1794, d186212, e330f62]:

    • @reown/appkit-utils@1.8.15
    • @reown/appkit-common@1.8.15
    • @reown/appkit-controllers@1.8.15
    • @reown/appkit-ui@1.8.15
    • @reown/appkit-wallet@1.8.15

@reown/appkit-siwe@1.8.15

Patch Changes

  • #5378 2867bfd Thanks @magiziz! - Fixed an issue where profile wallets tabs were shown in the wrong order

  • #5364 d186212 Thanks @magiziz! - Fixed an issue where wallet buttons were not working in the in-app wallet browser

  • Updated dependencies [2867bfd, ecf1794, d186212, e330f62]:

    • @reown/appkit-utils@1.8.15
    • @reown/appkit-common@1.8.15
    • @reown/appkit-controllers@1.8.15
    • @reown/appkit-ui@1.8.15
    • @reown/appkit-wallet@1.8.15

@reown/appkit-siwx@1.8.15

Patch Changes

  • #5378 2867bfd Thanks @magiziz! - Fixed an issue where profile wallets tabs were shown in the wrong order

  • #5364 d186212 Thanks @magiziz! - Fixed an issue where wallet buttons were not working in the in-app wallet browser

  • Updated dependencies [2867bfd, ecf1794, d186212, e330f62]:

    • @reown/appkit-utils@1.8.15
    • @reown/appkit-common@1.8.15
    • @reown/appkit-controllers@1.8.15

@reown/appkit-testing@1.8.15

Patch Changes

@reown/appkit-ui@1.8.15

Patch Changes

  • #5378 2867bfd Thanks @magiziz! - Fixed an issue where profile wallets tabs were shown in the wrong order

  • #5364 d186212 Thanks @magiziz! - Fixed an issue where wallet buttons were not working in the in-app wallet browser

  • #5297 e330f62 Thanks @enesozturk! - Implements new useAppKitWallets hook to let users build custom connect user interfaces.

    Features

    • List, and connect with extension wallets.
    • List, search and connect the WalletConnect wallets.
    • Multi-chain.
    • Multi-platform.

    Examples

    Listing injected wallets:

    const { data } = useAppKitWallets()
    
    const injectedWallets = data.filter(wallet => wallet.isInjected)
    
    injectedWallets.map(wallet => {
      return <WalletItem name={wallet.name} imageSrc={wallet.imageUrl} />
    })

    Listing WalletConnect wallets:

    const { data } = useAppKitWallets()
    
    const wcWallets = data.filter(wallet => !wallet.isInjected)
    
    wcWallets.map(wallet => {
      return <WalletItem name={wallet.name} imageSrc={wallet.imageUrl} />
    })

    Connecting to a wallet:

    const { connect } = useAppKitWallets()
    ...
    await connect(wallet)
  • Updated dependencies [2867bfd, d186212, e330f62]:

    • @reown/appkit-common@1.8.15
    • @reown/appkit-controllers@1.8.15
    • @reown/appkit-wallet@1.8.15

@reown/appkit-universal-connector@1.8.15

Patch Changes

@reown/appkit-wallet@1.8.15

Patch Changes

  • #5378 2867bfd Thanks @magiziz! - Fixed an issue where profile wallets tabs were shown in the wrong order

  • #5364 d186212 Thanks @magiziz! - Fixed an issue where wallet buttons were not working in the in-app wallet browser

  • Updated dependencies [2867bfd, d186212]:

    • @reown/appkit-common@1.8.15
    • @reown/appkit-polyfills@1.8.15

@reown/appkit-wallet-button@1.8.15

Patch Changes

  • #5378 2867bfd Thanks @magiziz! - Fixed an issue where profile wallets tabs were shown in the wrong order

  • #5364 d186212 Thanks @magiziz! - Fixed an issue where wallet buttons were not working in the in-app wallet browser

  • #5297 e330f62 Thanks @enesozturk! - Implements new useAppKitWallets hook to let users build custom connect user interfaces.

    Features

    • List, and connect with extension wallets.
    • List, search and connect the WalletConnect wallets.
    • Multi-chain.
    • Multi-platform.

    Examples

    Listing injected wallets:

    const { data } = useAppKitWallets()
    
    const injectedWallets = data.filter(wallet => wallet.isInjected)
    
    injectedWallets.map(wallet => {
      return <WalletItem name={wallet.name} imageSrc={wallet.imageUrl} />
    })

    Listing WalletConnect wallets:

    const { data } = useAppKitWallets()
    
    const wcWallets = data.filter(wallet => !wallet.isInjected)
    
    wcWallets.map(wallet => {
      return <WalletItem name={wallet.name} imageSrc={wallet.imageUrl} />
    })

    Connecting to a wallet:

    const { connect } = useAppKitWallets()
    ...
    await connect(wallet)
  • Updated dependencies [2867bfd, ecf1794, d186212, e330f62]:

    • @reown/appkit-utils@1.8.15
    • @reown/appkit-common@1.8.15
    • @reown/appkit-controllers@1.8.15
    • @reown/appkit-ui@1.8.15

pay-test-exchange@0.1.19

Patch Changes

  • #5378 2867bfd Thanks @magiziz! - Fixed an issue where profile wallets tabs were shown in the wrong order

  • #5364 d186212 Thanks @magiziz! - Fixed an issue where wallet buttons were not working in the in-app wallet browser

@vercel
Copy link
Copy Markdown

vercel bot commented Dec 8, 2025

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Preview Comments Updated (UTC)
appkit-basic-html Ready Ready Preview Comment Dec 8, 2025 4:50pm
appkit-demo Ready Ready Preview Comment Dec 8, 2025 4:50pm
appkit-gallery Ready Ready Preview Comment Dec 8, 2025 4:50pm
appkit-headless-sample-app Ready Ready Preview Comment Dec 8, 2025 4:50pm
appkit-laboratory Ready Ready Preview Comment Dec 8, 2025 4:50pm
10 Skipped Deployments
Project Deployment Preview Comments Updated (UTC)
appkit-basic-example Ignored Ignored Dec 8, 2025 4:50pm
appkit-basic-sign-client-example Ignored Ignored Dec 8, 2025 4:50pm
appkit-basic-up-example Ignored Ignored Dec 8, 2025 4:50pm
appkit-ethers5-bera Ignored Ignored Dec 8, 2025 4:50pm
appkit-nansen-demo Ignored Ignored Dec 8, 2025 4:50pm
appkit-vue-solana Ignored Ignored Dec 8, 2025 4:50pm
appkit-wagmi-cdn-example Ignored Ignored Dec 8, 2025 4:50pm
ethereum-provider-wagmi-example Ignored Ignored Dec 8, 2025 4:50pm
next-wagmi-solana-bitcoin-example Ignored Ignored Dec 8, 2025 4:50pm
vue-wagmi-example Ignored Ignored Dec 8, 2025 4:50pm

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant