Skip to content

Create static.yml#276

Merged
Dargon789 merged 1 commit intomainfrom
Dargon789-patch-1
May 2, 2025
Merged

Create static.yml#276
Dargon789 merged 1 commit intomainfrom
Dargon789-patch-1

Conversation

@Dargon789
Copy link
Copy Markdown
Owner

@Dargon789 Dargon789 commented May 2, 2025

Description

Please include a brief summary of the change.

Type of change

  • Chore (non-breaking change that addresses non-functional tasks, maintenance, or code quality improvements)
  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to not work as expected)

Associated Issues

For Linear issues: Closes APKT-xxx
For GH issues: closes #...

Showcase (Optional)

If there is a UI change include the screenshots with before and after state.
If new feature is being introduced, include the link to demo recording.

Checklist

  • Code in this PR is covered by automated tests (Unit tests, E2E tests)
  • My changes generate no new warnings
  • I have reviewed my own code
  • I have filled out all required sections
  • I have tested my changes on the preview link
  • Approver of this PR confirms that the changes are tested on the preview link

Summary by Sourcery

Add GitHub Actions workflow for deploying static content to GitHub Pages

CI:

  • Create a GitHub Actions workflow to automatically deploy static content to GitHub Pages when pushing to the main branch

Deployment:

  • Configure GitHub Pages deployment with automatic artifact upload and deployment

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>
@codesandbox
Copy link
Copy Markdown

codesandbox bot commented May 2, 2025

Review or Edit in CodeSandbox

Open the branch in Web EditorVS CodeInsiders

Open Preview

@bolt-new-by-stackblitz
Copy link
Copy Markdown

Review PR in StackBlitz Codeflow Run & review this pull request in StackBlitz Codeflow.

@vercel vercel bot temporarily deployed to Preview – appkit-demo-df32 May 2, 2025 20:06 Inactive
@vercel
Copy link
Copy Markdown

vercel bot commented May 2, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
appkit-builder-mgkr ❌ Failed (Inspect) May 2, 2025 8:07pm
appkit-demo ❌ Failed (Inspect) May 2, 2025 8:07pm
appkit-demo-df32 ❌ Failed (Inspect) May 2, 2025 8:07pm
appkit-walletkit ❌ Failed (Inspect) May 2, 2025 8:07pm
web3-game ❌ Failed (Inspect) May 2, 2025 8:07pm
web3game ❌ Failed (Inspect) May 2, 2025 8:07pm

@sourcery-ai
Copy link
Copy Markdown

sourcery-ai bot commented May 2, 2025

Reviewer's Guide

This pull request introduces a new GitHub Actions workflow file (static.yml) designed to automate the deployment of static content to GitHub Pages.

Flow Diagram for 'static.yml' GitHub Actions Workflow

flowchart TD
    Start((Trigger: Push to main / Manual)) --> JobDeploy["deploy" Job];
    subgraph "deploy" Job on ubuntu-latest
        direction LR
        Step1["actions/checkout@v4"] --> Step2["actions/configure-pages@v5"];
        Step2 --> Step3["actions/upload-pages-artifact@v3"];
        Step3 --> Step4["actions/deploy-pages@v4"];
    end
    JobDeploy --> Step1;
    Step4 --> End((Deployed to GitHub Pages));
Loading

File-Level Changes

Change Details Files
Added a GitHub Actions workflow to deploy static content to GitHub Pages.
  • Configured the workflow to trigger on pushes to the main branch and manual dispatch.
  • Set necessary permissions for reading contents, writing to pages, and using OIDC.
  • Implemented concurrency control to manage deployments.
  • Defined a deploy job using standard actions (checkout, configure-pages, upload-pages-artifact, deploy-pages) to handle the deployment process.
.github/workflows/static.yml

Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it. You can also reply to a
    review comment with @sourcery-ai issue to create an issue from it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time. You can also comment
    @sourcery-ai title on the pull request to (re-)generate the title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time exactly where you
    want it. You can also comment @sourcery-ai summary on the pull request to
    (re-)generate the summary at any time.
  • Generate reviewer's guide: Comment @sourcery-ai guide on the pull
    request to (re-)generate the reviewer's guide at any time.
  • Resolve all Sourcery comments: Comment @sourcery-ai resolve on the
    pull request to resolve all Sourcery comments. Useful if you've already
    addressed all the comments and don't want to see them anymore.
  • Dismiss all Sourcery reviews: Comment @sourcery-ai dismiss on the pull
    request to dismiss all existing Sourcery reviews. Especially useful if you
    want to start fresh with a new review - don't forget to comment
    @sourcery-ai review to trigger a new review!

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

@snyk-io
Copy link
Copy Markdown

snyk-io bot commented May 2, 2025

🎉 Snyk checks have passed. No issues have been found so far.

security/snyk check is complete. No issues have been found. (View Details)

@vercel vercel bot temporarily deployed to Preview – web3-game May 2, 2025 20:07 Inactive
@vercel vercel bot temporarily deployed to Preview – appkit-walletkit May 2, 2025 20:07 Inactive
Copy link
Copy Markdown

@sourcery-ai sourcery-ai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey @Dargon789 - I've reviewed your changes - here's some feedback:

  • Consider specifying a build output directory instead of uploading the entire repository (path: '.') to avoid including unnecessary files in the deployment.
  • If the static content requires a build step (e.g., using a static site generator), add that step before uploading the artifact.
Here's what I looked at during the review
  • 🟢 General issues: all looks good
  • 🟢 Security: all looks good
  • 🟢 Testing: all looks good
  • 🟢 Complexity: all looks good
  • 🟢 Documentation: all looks good

Sourcery is free for open source - if you like our reviews please consider sharing them ✨
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.

@vercel vercel bot temporarily deployed to Preview – appkit-builder-mgkr May 2, 2025 20:07 Inactive
@Dargon789 Dargon789 merged commit 395f839 into main May 2, 2025
14 of 26 checks passed
@Dargon789 Dargon789 deleted the Dargon789-patch-1 branch May 2, 2025 20:23
Dargon789 added a commit that referenced this pull request Jan 25, 2026
Dargon789 added a commit that referenced this pull request Jan 25, 2026
* Create jekyll-docker.yml (#272)

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* fix: examples/react-ethers5/package.json to reduce vulnerabilities

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-JS-VITE-9919777

* Create static.yml (#276)

* Create aws.yml (#278)

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Update static.yml

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* chore: update bug report and feature request tags (#4137)

Co-authored-by: TomTom <rtomas@gmail.com>
Co-authored-by: Enes <enesozturk.d@gmail.com>
Co-authored-by: Derek <alexanderderekrein@gmail.com>
Co-authored-by: Sven <38101365+svenvoskamp@users.noreply.github.com>
Co-authored-by: tomiir <rocchitomas@gmail.com>

* chore: version packages (#4229)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Enes <enesozturk.d@gmail.com>

* fix: balance not updating after send (#4301)

* chore: enable demo e2e tests (#4246)

Co-authored-by: Derek <alexanderderekrein@gmail.com>

* fix: try/catch getSupportedNetworks  (#4303)

* chore: disable request permissions btn when permissions capability is not supported (#4026)

Co-authored-by: tomiir <rocchitomas@gmail.com>

* fix: remove mobile wallets without a mobile_link from the all wallets list (#4300)

Co-authored-by: Derek <alexanderderekrein@gmail.com>

* fix: don't override account state on previous chain when switching networks with auth connector (#4311)

* chore/upgrade wc 2.20.2 (#4312)

* feat: appkit codemod (#4314)

* chore: update open pay interface (#4316)

* fix: CI blink (#4307)

* fix: auth wagmi provider (#4315)

* fix: do not subscribe in wagmi contructor and do it in construct (#4264)

* feat: multi wallet controllers and storage (#3955)

Co-authored-by: MK <mago.khamidov@gmail.com>
Co-authored-by: MK <53529533+magiziz@users.noreply.github.com>

* fix: wait for magic to initialize (#4317)

* chore: upgrade all dependencies (#4313)

* fix: expose `fetchBalance` method (#3598)

* chore: pay analytics events (#4320)

* chore: improve social login latency (#4107)

* Update changesets.yml

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Update ui_tests.yml

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Update pr_checks.yml

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* vc.build

* Create build.yml

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Potential fix for code scanning alert no. 33: Workflow does not contain permissions

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* fix: packages/cli/package.json to reduce vulnerabilities

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-JS-BABELRUNTIME-10044504

* fix: packages/cli/package.json to reduce vulnerabilities (#332)

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-JS-BABELRUNTIME-10044504

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* fix: examples/html-wagmi-cdn/package.json to reduce vulnerabilities (#333)

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-JS-VITE-9512410
- https://snyk.io/vuln/SNYK-JS-VITE-9576207
- https://snyk.io/vuln/SNYK-JS-VITE-9653016
- https://snyk.io/vuln/SNYK-JS-VITE-9685035
- https://snyk.io/vuln/SNYK-JS-VITE-9919777

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* Add .circleci/config.yml

* Add .circleci/config.yml

* Updated config.yml

* fix: examples/sveltekit-wagmi/package.json to reduce vulnerabilities

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-JS-SVELTEJSKIT-9690586

* Create web3_defi_gamefi.yml

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Create config.yml

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Create ci_cargo.yml

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Create web3_defi_gamefi.yml

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* fix: custom wallets in all wallets list

* feat: transaction history for ton (#5396)

* chore: version packages (#5397)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* Merge branch 'chore/next-js-cache' into APKT-3856

* Update apps/browser-extension/src/core/TonProvider.ts

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* wallet-wagmi-cdn-test

* Create google.yml (#684)

CI:
Introduce a GKE deployment workflow that builds a Docker image, pushes it to Google Artifact Registry, and deploys it to a GKE cluster on pushes to the main branch.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Chore/next js cache (#683)

* refactor: update preferred account type reading (#4557)

* feat: enableReconnect flag (#4553)

* fix: wrong chain shown when switching accounts (#4565)

* chore: version packages (#4522)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: tomiir <rocchitomas@gmail.com>

* chore: use npm version of appkit on demo app (#4403)

Co-authored-by: tomiir <rocchitomas@gmail.com>

* chore: add bitcoin wallet impl for reown extension, add e2e tests (#4525)

* ci(devin): update Devin docs workflow to tag relevant teams in PRs (#4568)

* fix: wrong error message shown when SIWX signature is declined (#4551)

* fix: siwe signOutOnDisconnect flag (#4569)

* fix(onramp): Meld popoup opens without url parameters (#4564)

Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
Co-authored-by: derek@reown.com <alexanderderekrein@gmail.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* chore: revert libs config on e2e tests (#4573)

* feat: update schema to satisfy 1ca flow (#4576)

* fix: use wagmi rpc instead of walletconnect rpc when switching network (#4577)

* [DO NOT MERGE] feat: add 1CA to embedded wallets  (#4575)

Co-authored-by: Enes <enesozturk.d@gmail.com>

* chore: update dependencies / audit fix (#4585)

* fix: reduce calling auth connect to once when switching account type (#4586)

* fix: `reconnectExternal` will go through `SIWXUtil` on Ethers client (#4587)

Co-authored-by: MK <mago.khamidov@gmail.com>

* feat: forward custom RPC URLs to embedded wallet  (#4570)

* refactor: handle balance call failure on ethers and ethers5 adapters (#4595)

* fix: serialize full message in embedded wallet 1CA  (#4588)

Co-authored-by: Enes <enesozturk.d@gmail.com>

* chore: fix demo lockfile (#4596)

* chore: version packages (#4567)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: tomiir <rocchitomas@gmail.com>

* refactor: rename CloudAuthSIWX to ReownAuthentication (#4492)

Co-authored-by: tomiir <rocchitomas@gmail.com>

* chore: upgrade valtio to v2 (#4358)

* feat: add 127.0.0.1 to DEFAULT_ALLOWED_ANCESTORS allowlist (#4581)

Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
Co-authored-by: enes@reown.com <enes@reown.com>

* refactor: remove type castings and handle errors instead (#4600)

* feat: Smart Sessions Ownable Validator  (#4602)

* chore: automate AppKit CDN update in AppKit Unity  (#4608)

Co-authored-by: Ben Kremer <ben@walletconnect.com>
Co-authored-by: Ben Kremer <ben@reown.com>

* chore: version packages (#4599)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Enes <enesozturk.d@gmail.com>

* chore: upgrade solana web3.js (#4615)

* fix: use workspace relative url when uploading artifacts (#4444)

* fix: unsyncing connection on initialization if enableReconnect is false (#4610)

* fix: networks logics for the ones doesn't have required files (#4622)

* feat: remove Coinbase Pay SDK integration (APKT-3100) (#4560)

Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
Co-authored-by: sam@reown.com <sam@reown.com>
Co-authored-by: Enes <enesozturk.d@gmail.com>

* fix: approval transaction infinite loading (#4625)

* chore: update changeset config to fix package versions (#4629)

* fix: Open legal links in new tab (#3749)

Co-authored-by: tomiir <rocchitomas@gmail.com>

* chore: update dependabot configs (#4627)

Co-authored-by: tomiir <rocchitomas@gmail.com>

* chore: lint fix (#4635)

* chore: add danger rule wallet schema (#4616)

Co-authored-by: Enes <enesozturk.d@gmail.com>
Co-authored-by: tomiir <rocchitomas@gmail.com>

* chore: always send initialize event and add chainId to CONNECT_SUCCESS and CONNECT_SOCIAL_SUCCESS (#4609)

Merging as it was failing cause of a broken main linter issue, tests were passing

* fix: remove call to `connectSocial` from `connectionControllerUtil` (#4638)

* feat: pay with wallet solana (#4623)

* fix: default account type after disconnect (#4641)

* chore: update error messages for not configured domains (#4642)

* chore: use Zod's safeParse  (#4643)

* chore: fix gallery app build issues (#4650)

* chore: version packages (#4618)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Enes <enesozturk.d@gmail.com>

* fix: siwe spam (#4639)

* chore: upgrade storybook, remove unused comps, add missing stories (#4651)

* chore: fix spl token dependency (#4654)

* chore: version packages (#4652)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* fix: reviewer assignment in devin_docs_update workflow (#4658)

* fix: SIWX default cross-namespace switch with embedded wallet (#4657)

* feat: add wallet_index to SELECT_WALLET events (#4659)

* fix: export types to enable proper type inference from useAppKit function (#4497)

Co-authored-by: enesozturk <enes@reown.com>

* fix: coinbase wallet info (#4647)

* chore: update UP to 2.21.5 (#4666)

* chore: update wagmi and viem to latest (#4668)

* chore: deprecate solana wallets parameter (#4670)

* chore: pay method rework (#4669)

* chore: add wallet icon and name on lab (#4671)

* chore: add branch name to artifacts (#4673)

* fix: sync PublicStateController in clearLoading method (APKT-3385) (#4678)

Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
Co-authored-by: derek@reown.com <alexanderderekrein@gmail.com>

* chore: version packages (#4664)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: MK <mago.khamidov@gmail.com>

* chore: export payment result (#4681)

* feat: AppKit React components (#4687)

Co-authored-by: Cursor Agent <cursoragent@cursor.com>
Co-authored-by: luka <luka@reown.com>
Co-authored-by: tomiir <rocchitomas@gmail.com>

* refactor: separating testing utils, update bad practice on unit tests, remove redundant controller utils (#4605)

* feat: wallet button multichain (#4688)

* refactor: error messages (#4686)

Co-authored-by: tomiir <rocchitomas@gmail.com>

* feat: cloud auth email capture flow (#4449)

* fix: add support for Bitcoin test net in OKX Wallet  (#4691)

* chore: add stacks and sui to predefined networks. Export namespaces constant. (#4690)

* refactor: Blockchain API calls (#4606)

* fix: rpcUrl not sent on `connect` request (#4646)

* fix: add support for okx testnet on initial connection (#4693)

* chore: upload single reports for secure site runs (#4695)

* feat: `<AppKitProvider>` (#4696)

* chore: fix artifact name conflict (#4697)

* chore: remove high entropy string warning from dangerfile (#4701)

* feat: AK Core + UP - Universal Connector (#4655)

* feat: appkit pay test exchange (#4699)

* chore: change api type and use json responses (#4706)

* chore: test exchange metadata and add key expiry (#4707)

* chore: remove KV get cache (#4711)

* Unisat Connector (#4705)

Co-authored-by: Rui Simão <rui.daniel.simao@gmail.com>

* Revert "chore: remove KV get cache" (#4713)

* fix: prevent modal from closing after wallet disconnect in profile view (multi-wallet) (#4708)

* fix: `UpdateEmailWallet` view not opening when using `useAppKitUpdateEmail` hook (#4704)

* feat: add USDC and USDT payment assets for multiple networks (PAY-52) (#4702)

Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
Co-authored-by: TomTom <tomtom@reown.com>
Co-authored-by: TomTom <rtomas@gmail.com>

* fix: keep authentication flow when email capture is enabled (#4709)

* chore: add react export with context and provider (#4703)

* chore: update demo to 1.7.16 (#4716)

Co-authored-by: Enes <enesozturk.d@gmail.com>

* fix: stacks sign message not working with universal connector (#4728)

* chore: version packages (#4689)

* feat: add GitHub Actions workflow for Staking Dashboard AppKit updates (#4729)

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* fix: retain network state and session when cancelling SIWX on mobile (#4717)

* fix: reown name selection logics, fetch reown name on connection, improve ux (#4723)

* fix: token list refetching after network switch for swaps, fetch optimizations (#4725)

* chore: add release branch workflows (#4738)

* refactor: lab's 5792 tests (#4734)

* chore: add `publicKey` to `allAccounts` (#4737)

* feat: add native SOL payment asset for Solana network (#4741)

Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
Co-authored-by: TomTom <tomtom@reown.com>
Co-authored-by: TomTom <rtomas@gmail.com>

* chore: fix missing `address` in WC success event (#4744)

* refactor: update NumberUtil formatting using big.js for better precision when using big numbers with strings (#4749)

* feat: add deeplink support for binance web3 wallet on bitcoin (#4748)

* fix: workflow permissions (#4754)

* chore: optimize release workflow (#4757)

* chore: enable binance (#4761)

* chore: replace binance wallet id (#4762)

* Add https://cca-lite.coinbase.com to CSP connect-src directive (#4712)

Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
Co-authored-by: tomas@reown.com <rocchitomas@gmail.com>

* Merge release/1.7.18 back to main (#4768)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* chore: update third party dependencies for AppKit Lab and Demo for De… (#4765)

* chore: add activeCaipNetworkId to all events (#4644)

* Revert "chore: add activeCaipNetworkId to all events" (#4773)

* refactor: add input validation to Reown name input (#4763)

* chore: Removed custom capabilities logic from EVM adapters (#4747)

* fix: workflow skips & devin workflows (#4769)

* refactor: update OKX and Unisat connectors to pass signInputs to wallet provider's `signPsbt` method (#4767)

* feat: add exchange controller (#4784)

Mailsac Issue will make e2e fail

* feat: fund wallet screen (#4777)

* Chore/caip network id in events (#4774)

* fix: secure site screens breaks in demo (#4792)

* fix: start release pr branch (#4796)

* fix: btc accounts switch (#4787)

* refactor:  ux by reown position in the qr basic view (#4753)

* feat: conditionally import fonts only when custom font family is not provided (#4542)

Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
Co-authored-by: TomTom <tomtom@reown.com>
Co-authored-by: tomiir <rocchitomas@gmail.com>

* Merge release/1.7.19 back to main (#4808)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Luka Isailovic <lukaisailovic@gmail.com>
Co-authored-by: tomiir <rocchitomas@gmail.com>
Co-authored-by: tomiir <tomas@walletconnect.com>

* fix: social options cannot be toggled on demo (#4804)

* fix: okx wallet extension not detected when using wallet button (#4803)

* fix: properly serialize controller errors (#4806)

Co-authored-by: tomiir <rocchitomas@gmail.com>

* feat: Deposit from Exchange (#4798)

* chore: add back button on connecting a disconnected WC wallet in multi-wallet (#4816)

* fix: use token amount (#4818)

Co-authored-by: MK <mago.khamidov@gmail.com>

* fix: multichain state synchronization and solana send flow issues (#4817)

* chore: checksum address conversion (#4821)

* fix: redirect to previous screen and show proper error message if connection request was rejected on mobile (#4819)

* chore: update wagmi dependencies (#4825)

* fix: add better error message when reown authentication is not enabled (#4828)

* chore: add missing chains from blockchain api (#4830)

* feat: fund from exchange status and events (#4822)

Co-authored-by: MK <mago.khamidov@gmail.com>

* fix: Fund from exchange redirect and popup (#4832)

* feat: reown authentication as remote feature (#4750)

* chore: update appkit to 1.7.19 on demo page (#4833)

* chore: updated cloud url on appkit/cli (#4834)

* fix: lockfile (#4839)

* chore: cleanup pnpm lock file (version 9.x) (#4843)

* chore: make slack notification optional in release start workflow (#4844)

* fix: wrong enabling condition for reown authentication (#4846)

* feat: analytics improvements (#4836)

* fix: revert to previous network when cancelling siwx message (auth) (#4848)

* feat: appkit reskin (#4850)

Co-authored-by: Enes <enesozturk.d@gmail.com>
Co-authored-by: enesozturk <enes@reown.com>

* chore: downgrade appkit demo and modify `updateInternalDependencies` (#4865)

* chore: fund wallet improvements (#4841)

* chore: remaining reskin updates (#4873)

* Merge release/1.7.20 back to main (#4870)

Co-authored-by: tomiir <tomas@walletconnect.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* chore: update top padding on input page (#4874)

* fix: allow sending spl solana tokens in send flow (#4877)

* fix: mobile popup blocking and improve fund wallet ux (#4880)

* fix: prevent calling CONNECT_SUCCESS event for not connected namespaces with WC (#4878)

* fix: open rpc request cleanup (#4867)

* fix: include correct user address in bitcoin walletconnect signing request (#4886)

* fix: fund from exchange select token flow + fixes (#4875)

Co-authored-by: Sven <38101365+svenvoskamp@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* fix: prevent `authConnector` from being included in wagmi config when email/social login are disabled (#4892)

* chore: add bitcoin signet network (#4891)

* refactor: remove redundant project id not configured error triggers (#4885)

* fix: add explicit task boundaries to prevent devin followup changes (#4887)

Co-authored-by: Claude <noreply@anthropic.com>
Co-authored-by: Gleb Skibitsky <gleb@skibitsky.com>

* fix: remaining reskin updates (#4898)

* fix: show correct QR screen when using AppKit Basic with multiple namespaces (#4897)

* fix: use getCaipNetworks method on Bitcoin adapter to find active caip network (#4899)

* Merge release/1.8.0 back to main (#4901)

Co-authored-by: tomiir <rocchitomas@gmail.com>
Co-authored-by: Sven <38101365+svenvoskamp@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* feat: Reown AppKit License (#4881)

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* feat: connect all namespaces for auth connector (#4888)

* fix: Do not show error message if payWithExchange is not enabled (#4908)

* fix: reskin cdn issues (#4911)

Co-authored-by: tomiir <rocchitomas@gmail.com>

* chore: update build scripts to exclude cdn on builds except releases (#4900)

* chore: upgrade appkit to 1.8.1 reskin (#4904)

* refactor: laboratory to have single page  (#4914)

* fix: correct count calculations for mobile environments in `all-wallets-list` (#4917)

* Merge release/1.8.1 back to main (#4913)

Co-authored-by: Sven <38101365+svenvoskamp@users.noreply.github.com>
Co-authored-by: tomiir <rocchitomas@gmail.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* chore: Add react native option to cli (#4894)

* fix: setting z-index in themeVariables  (#4920)

* chore: update siwe links (#4932)

* chore: prevent calling SELECT_WALLET event for basic (#4921)

* chore: add pay component to lab back (#4933)

* refactor: Valtio useSnapshot issue, laboratory Next.js 15 upgrade, Next Auth v5 transition (#4607)

* fix: support solana token-2022 transfers in send flow (#4934)

* chore: include insufficient funds fee error message (#4939)

* fix: text color pay view (#4935)

* chore: enable turbopack for lab (#4938)

* Merge release/1.8.2 back to main (#4944)

Co-authored-by: Sven <38101365+svenvoskamp@users.noreply.github.com>
Co-authored-by: MK <mago.khamidov@gmail.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* fix: fund from exchange not working at first try (#4941)

* fix: update default zindex value (#4946)

* chore: update package.json to match LICENSE.md (#4948)

* chore: update wagmi deps  (#4943)

* fix: api controller wallet filtering on mobile (#4872)

Co-authored-by: tomiir <rocchitomas@gmail.com>

* chore: disable turbopack for lab build (#4951)

* fix: bitcoin account publickey doesn't set on reconnect (#4947)

* chore: use sha instead of ref checkout action (#4952)

* chore: update license field of the individual packages (#4953)

* feat: pulse events batching (#4950)

Co-authored-by: Enes <enesozturk.d@gmail.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* chore(deps): bump viem from 2.37.1 to 2.37.2 in the viem-wagmi group across 1 directory (#4954)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Enes <enesozturk.d@gmail.com>

* chore: replace "deposit from an exchange" to "deposit from exchange" in header (#4957)

* feat: increase places for wallets on main view (#4963)

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* refactor: update error boundary to handle wk error messages properly (#4966)

* fix: send input field missing number pattern validation  (#4968)

* fix: wallet icon not rendering properly on safari (#4965)

* fix: icon button component styles to match with reskin (#4970)

* chore: add console warning if the sdk version is old (#4971)

* Merge release/1.8.3 back to main (#4972)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* feat: add send arguments to `open` method (#4962)

* chore: use --frozen-lockfile on pnpm install in workflow files (#4978)

* chore: remove chalk dep (#4977)

* fix: `open` does not throw when attempting to switch network during send flow (#4979)

* fix: `w3m-header` question mark icon is incorrectly rendered (#4982)

* fix: semver version check (#4988)

* chore: upgrade AppKit to latest on Demo (#4989)

* chore: add message prop to `SIWX_AUTH_ERROR` event (#4990)

* chore: add signature cta bot (#4995)

* chore: pin cta assistant to latest known hash (#5000)

* feat: UP and AK config in UniversalConnector (#4993)

* chore: add message to error events (#4994)

* fix: avoid throwing `CONNECT_ERROR` when connection request is rejected (#4992)

* fix: swap shows incorrect token status in smart account activity (#5001)

* chore: update @coinbase/wallet-sdk to 4.3.7 (#5002)

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* chore: remove gap, add padding (#5005)

* chore: update error message when insufficient liquidity (#5003)

* feat: custom input amount on deposit from exchange screen (#5004)

* refactor: update appkit events (#4960)

* Merge release 1.8.4 into main (#5009)

Co-authored-by: MK <mago.khamidov@gmail.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* fix: error event handling (#5010)

Co-authored-by: tomiir <rocchitomas@gmail.com>

* fix: `ErrorUtil.ts` ordering (#5012)

* feat: add npm provenance statements for enhanced supply chain security (#5014)

Co-authored-by: Claude <noreply@anthropic.com>
Co-authored-by: tomiir <rocchitomas@gmail.com>

* feat: QR scan via main camera (#4936)

* Merge release/1.8.5 back to main (#5022)

Co-authored-by: MK <mago.khamidov@gmail.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* chore: test behavior when Verify API is blocked (#5023)

* Create web3_defi_gamefi.yml

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Potential fix for code scanning alert no. 11: Incomplete regular expression for hostnames

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Potential fix for code scanning alert no. 34: Incomplete regular expression for hostnames

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Potential fix for code scanning alert no. 35: Incomplete regular expression for hostnames

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Potential fix for code scanning alert no. 29: Workflow does not contain permissions

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Potential fix for code scanning alert no. 14: Incomplete regular expression for hostnames

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Potential fix for code scanning alert no. 15: Incomplete regular expression for hostnames

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Potential fix for code scanning alert no. 16: Incomplete regular expression for hostnames

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Potential fix for code scanning alert no. 53: Useless regular-expression character escape

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Potential fix for code scanning alert no. 61: Useless regular-expression character escape

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Potential fix for code scanning alert no. 64: Incomplete regular expression for hostnames

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Potential fix for code scanning alert no. 65: Incomplete regular expression for hostnames

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: Enes <enesozturk.d@gmail.com>
Co-authored-by: MK <53529533+magiziz@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: tomiir <rocchitomas@gmail.com>
Co-authored-by: Ben Kremer <ben@walletconnect.com>
Co-authored-by: Felipe Mendes <zo.fmendes@gmail.com>
Co-authored-by: devin-ai-integration[bot] <158243242+devin-ai-integration[bot]@users.noreply.github.com>
Co-authored-by: derek@reown.com <alexanderderekrein@gmail.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Sven <38101365+svenvoskamp@users.noreply.github.com>
Co-authored-by: MK <mago.khamidov@gmail.com>
Co-authored-by: enes@reown.com <enes@reown.com>
Co-authored-by: Gleb Skibitsky <gleb@skibitsky.com>
Co-authored-by: Ben Kremer <ben@reown.com>
Co-authored-by: sam@reown.com <sam@reown.com>
Co-authored-by: mrcattington <me@kristianmarlow.com>
Co-authored-by: Luka Isailovic <lukaisailovic@gmail.com>
Co-authored-by: Ventura Rodríguez <72287631+venturars@users.noreply.github.com>
Co-authored-by: Cursor Agent <cursoragent@cursor.com>
Co-authored-by: luka <luka@reown.com>
Co-authored-by: Gancho Radkov <43912948+ganchoradkov@users.noreply.github.com>
Co-authored-by: Rui Simão <rui.daniel.simao@gmail.com>
Co-authored-by: TomTom <tomtom@reown.com>
Co-authored-by: TomTom <rtomas@gmail.com>
Co-authored-by: tomiir <tomas@walletconnect.com>
Co-authored-by: Ignacio Santise <25931366+ignaciosantise@users.noreply.github.com>
Co-authored-by: Claude <noreply@anthropic.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Chris Smith <1979423+chris13524@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>

* fix: apps/demo/package.json to reduce vulnerabilities (#696)

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-JS-NEXT-12265451
- https://snyk.io/vuln/SNYK-JS-NEXT-12299318
- https://snyk.io/vuln/SNYK-JS-NEXT-12301496

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* fix: examples/nuxt-wagmi/package.json to reduce vulnerabilities (#695)

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-JS-NUXT-12878602

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* fix: packages/adapters/bitcoin/package.json to reduce vulnerabilities (#697)

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-JS-VALIBOT-14122017

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* Create config.yml (#722)

* Create config.yml

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .circleci/config.yml

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>

* Update and rename web3_defi_gamefi.yml to ci-tmp.yml (#726)

* Update and rename web3_defi_gamefi.yml to ci-tmp.yml

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .circleci/ci-tmp.yml

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>

* Update config.yml (#727)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create deploy.yml (#728)

Deployment:

Introduce a Vercel deployment workflow that runs on main branch pushes and manual triggers using configured Vercel org, project, and token secrets.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* fix: examples/next-wagmi-app-router/package.json to reduce vulnerabilities (#743)

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-JS-NEXT-14400636
- https://snyk.io/vuln/SNYK-JS-PLAYWRIGHTCORE-13553173

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* fix: examples/next-ethers-app-router/package.json to reduce vulnerabilities (#742)

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-JS-NEXT-14400636
- https://snyk.io/vuln/SNYK-JS-PLAYWRIGHTCORE-13553173

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* fix: examples/next-wagmi-solana-bitcoin-app-router/package.json to reduce vulnerabilities (#745)

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-JS-NEXT-14400636

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* fix: examples/next-ep-app-router/package.json to reduce vulnerabilities (#740)

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-JS-NEXT-14400636

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* chore(deps): bump the demo-third-parties group across 1 directory with 27 updates

Bumps the demo-third-parties group with 27 updates in the /apps/demo directory:

| Package | From | To |
| --- | --- | --- |
| [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `3.9.0` | `3.10.0` |
| [@next/third-parties](https://github.com/vercel/next.js/tree/HEAD/packages/third-parties) | `15.2.1` | `15.5.6` |
| [@radix-ui/react-checkbox](https://github.com/radix-ui/primitives) | `1.3.1` | `1.3.3` |
| [@radix-ui/react-dialog](https://github.com/radix-ui/primitives) | `1.1.13` | `1.1.15` |
| [@radix-ui/react-label](https://github.com/radix-ui/primitives) | `2.1.6` | `2.1.8` |
| [@radix-ui/react-radio-group](https://github.com/radix-ui/primitives) | `1.3.6` | `1.3.8` |
| [@radix-ui/react-select](https://github.com/radix-ui/primitives) | `2.2.4` | `2.2.6` |
| [@radix-ui/react-separator](https://github.com/radix-ui/primitives) | `1.1.6` | `1.1.8` |
| [@radix-ui/react-slider](https://github.com/radix-ui/primitives) | `1.3.4` | `1.3.6` |
| [@radix-ui/react-slot](https://github.com/radix-ui/primitives) | `1.2.2` | `1.2.4` |
| [@radix-ui/react-switch](https://github.com/radix-ui/primitives) | `1.2.4` | `1.2.6` |
| [@radix-ui/react-tabs](https://github.com/radix-ui/primitives) | `1.1.11` | `1.1.13` |
| [@radix-ui/react-tooltip](https://github.com/radix-ui/primitives) | `1.2.6` | `1.2.8` |
| [@reown/appkit](https://github.com/reown-com/appkit) | `1.8.4` | `1.8.14` |
| [@reown/appkit-adapter-bitcoin](https://github.com/reown-com/appkit) | `1.8.4` | `1.8.14` |
| [@reown/appkit-adapter-ethers](https://github.com/reown-com/appkit) | `1.8.4` | `1.8.14` |
| [@reown/appkit-adapter-solana](https://github.com/reown-com/appkit) | `1.8.4` | `1.8.14` |
| [@reown/appkit-common](https://github.com/reown-com/appkit) | `1.8.4` | `1.8.14` |
| [@reown/appkit-controllers](https://github.com/reown-com/appkit) | `1.8.4` | `1.8.14` |
| [@reown/appkit-scaffold-ui](https://github.com/reown-com/appkit) | `1.8.4` | `1.8.14` |
| [@reown/appkit-ui](https://github.com/reown-com/appkit) | `1.8.4` | `1.8.14` |
| [@solana/web3.js](https://github.com/solana-foundation/solana-web3.js) | `1.98.2` | `1.98.4` |
| [@tanstack/react-query](https://github.com/TanStack/query/tree/HEAD/packages/react-query) | `5.75.5` | `5.90.11` |
| [autoprefixer](https://github.com/postcss/autoprefixer) | `10.4.21` | `10.4.22` |
| [next](https://github.com/vercel/next.js) | `14.2.30` | `14.2.33` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.1.0` | `19.2.0` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.0` |



Updates `@hookform/resolvers` from 3.9.0 to 3.10.0
- [Release notes](https://github.com/react-hook-form/resolvers/releases)
- [Commits](https://github.com/react-hook-form/resolvers/compare/v3.9.0...v3.10.0)

Updates `@next/third-parties` from 15.2.1 to 15.5.6
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](https://github.com/vercel/next.js/commits/v15.5.6/packages/third-parties)

Updates `@radix-ui/react-checkbox` from 1.3.1 to 1.3.3
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-dialog` from 1.1.13 to 1.1.15
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-label` from 2.1.6 to 2.1.8
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-radio-group` from 1.3.6 to 1.3.8
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-select` from 2.2.4 to 2.2.6
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-separator` from 1.1.6 to 1.1.8
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-slider` from 1.3.4 to 1.3.6
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-slot` from 1.2.2 to 1.2.4
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-switch` from 1.2.4 to 1.2.6
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-tabs` from 1.1.11 to 1.1.13
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-tooltip` from 1.2.6 to 1.2.8
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@reown/appkit` from 1.8.4 to 1.8.14
- [Release notes](https://github.com/reown-com/appkit/releases)
- [Commits](https://github.com/reown-com/appkit/compare/@reown/appkit@1.8.4...@reown/appkit@1.8.14)

Updates `@reown/appkit-adapter-bitcoin` from 1.8.4 to 1.8.14
- [Release notes](https://github.com/reown-com/appkit/releases)
- [Commits](https://github.com/reown-com/appkit/compare/@reown/appkit-adapter-bitcoin@1.8.4...@reown/appkit-adapter-bitcoin@1.8.14)

Updates `@reown/appkit-adapter-ethers` from 1.8.4 to 1.8.14
- [Release notes](https://github.com/reown-com/appkit/releases)
- [Commits](https://github.com/reown-com/appkit/compare/@reown/appkit-adapter-ethers@1.8.4...@reown/appkit-adapter-ethers@1.8.14)

Updates `@reown/appkit-adapter-solana` from 1.8.4 to 1.8.14
- [Release notes](https://github.com/reown-com/appkit/releases)
- [Commits](https://github.com/reown-com/appkit/compare/@reown/appkit-adapter-solana@1.8.4...@reown/appkit-adapter-solana@1.8.14)

Updates `@reown/appkit-common` from 1.8.4 to 1.8.14
- [Release notes](https://github.com/reown-com/appkit/releases)
- [Commits](https://github.com/reown-com/appkit/compare/@reown/appkit-common@1.8.4...@reown/appkit-common@1.8.14)

Updates `@reown/appkit-controllers` from 1.8.4 to 1.8.14
- [Release notes](https://github.com/reown-com/appkit/releases)
- [Commits](https://github.com/reown-com/appkit/compare/@reown/appkit-controllers@1.8.4...@reown/appkit-controllers@1.8.14)

Updates `@reown/appkit-scaffold-ui` from 1.8.4 to 1.8.14
- [Release notes](https://github.com/reown-com/appkit/releases)
- [Commits](https://github.com/reown-com/appkit/compare/@reown/appkit-scaffold-ui@1.8.4...@reown/appkit-scaffold-ui@1.8.14)

Updates `@reown/appkit-ui` from 1.8.4 to 1.8.14
- [Release notes](https://github.com/reown-com/appkit/releases)
- [Commits](https://github.com/reown-com/appkit/compare/@reown/appkit-ui@1.8.4...@reown/appkit-ui@1.8.14)

Updates `@solana/web3.js` from 1.98.2 to 1.98.4
- [Release notes](https://github.com/solana-foundation/solana-web3.js/releases)
- [Commits](https://github.com/solana-foundation/solana-web3.js/compare/v1.98.2...v1.98.4)

Updates `@tanstack/react-query` from 5.75.5 to 5.90.11
- [Release notes](https://github.com/TanStack/query/releases)
- [Changelog](https://github.com/TanStack/query/blob/main/packages/react-query/CHANGELOG.md)
- [Commits](https://github.com/TanStack/query/commits/@tanstack/react-query@5.90.11/packages/react-query)

Updates `autoprefixer` from 10.4.21 to 10.4.22
- [Release notes](https://github.com/postcss/autoprefixer/releases)
- [Changelog](https://github.com/postcss/autoprefixer/blob/main/CHANGELOG.md)
- [Commits](https://github.com/postcss/autoprefixer/compare/10.4.21...10.4.22)

Updates `next` from 14.2.30 to 14.2.33
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](https://github.com/vercel/next.js/compare/v14.2.30...v14.2.33)

Updates `react` from 19.1.0 to 19.2.0
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.2.0/packages/react)

Updates `react-dom` from 19.1.0 to 19.2.0
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.2.0/packages/react-dom)

---
updated-dependencies:
- dependency-name: "@hookform/resolvers"
  dependency-version: 3.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: demo-third-parties
- dependency-name: "@next/third-parties"
  dependency-version: 15.5.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: demo-third-parties
- dependency-name: "@radix-ui/react-checkbox"
  dependency-version: 1.3.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: demo-third-parties
- dependency-name: "@radix-ui/react-dialog"
  dependency-version: 1.1.15
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: demo-third-parties
- dependency-name: "@radix-ui/react-label"
  dependency-version: 2.1.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: demo-third-parties
- dependency-name: "@radix-ui/react-radio-group"
  dependency-version: 1.3.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: demo-third-parties
- dependency-name: "@radix-ui/react-select"
  dependency-version: 2.2.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: demo-third-parties
- dependency-name: "@radix-ui/react-separator"
  dependency-version: 1.1.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: demo-third-parties
- dependency-name: "@radix-ui/react-slider"
  dependency-version: 1.3.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: demo-third-parties
- dependency-name: "@radix-ui/react-slot"
  dependency-version: 1.2.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: demo-third-parties
- dependency-name: "@radix-ui/react-switch"
  dependency-version: 1.2.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: demo-third-parties
- dependency-name: "@radix-ui/react-tabs"
  dependency-version: 1.1.13
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: demo-third-parties
- dependency-name: "@radix-ui/react-tooltip"
  dependency-version: 1.2.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: demo-third-parties
- dependency-name: "@reown/appkit"
  dependency-version: 1.8.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: demo-third-parties
- dependency-name: "@reown/appkit-adapter-bitcoin"
  dependency-version: 1.8.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: demo-third-parties
- dependency-name: "@reown/appkit-adapter-ethers"
  dependency-version: 1.8.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: demo-third-parties
- dependency-name: "@reown/appkit-adapter-solana"
  dependency-version: 1.8.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: demo-third-parties
- dependency-name: "@reown/appkit-common"
  dependency-version: 1.8.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: demo-third-parties
- dependency-name: "@reown/appkit-controllers"
  dependency-version: 1.8.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: demo-third-parties
- dependency-name: "@reown/appkit-scaffold-ui"
  dependency-version: 1.8.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: demo-third-parties
- dependency-name: "@reown/appkit-ui"
  dependency-version: 1.8.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: demo-third-parties
- dependency-name: "@solana/web3.js"
  dependency-version: 1.98.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: demo-third-parties
- dependency-name: "@tanstack/react-query"
  dependency-version: 5.90.11
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: demo-third-parties
- dependency-name: autoprefixer
  dependency-version: 10.4.22
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: demo-third-parties
- dependency-name: next
  dependency-version: 14.2.33
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: demo-third-parties
- dependency-name: react
  dependency-version: 19.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: demo-third-parties
- dependency-name: react-dom
  dependency-version: 19.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: demo-third-parties
...

Signed-off-by: dependabot[bot] <support@github.com>

* Potential fix for code scanning alert no. 22: Useless regular-expression character escape

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Potential fix for code scanning alert no. 66: Incomplete regular expression for hostnames

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Circleci project setup (#781)

* Add .circleci/config.yml

* Updated config.yml

* Ci/cd vercel prebuild Merge pull request #136  (#783)

* chore: add vercel automation bypass headers

* fix: examples/next-ep-app-router/package.json to reduce vulnerabilities

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-JS-ELLIPTIC-8187303

* Create SECURITY.md (#140)

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* chore(deps): bump the npm_and_yarn group across 33 directories with 2 updates (#141)

Bumps the npm_and_yarn group with 2 updates in the / directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) and [@sveltejs/kit](https://github.com/sveltejs/kit/tree/HEAD/packages/kit).
Bumps the npm_and_yarn group with 1 update in the /examples/html-ak-basic directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite).
Bumps the npm_and_yarn group with 1 update in the /examples/html-ak-basic-sign-client directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite).
Bumps the npm_and_yarn group with 1 update in the /examples/html-ak-basic-up directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite).
Bumps the npm_and_yarn group with 1 update in the /examples/html-bitcoin directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite).
Bumps the npm_and_yarn group with 1 update in the /examples/html-ep directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite).
Bumps the npm_and_yarn group with 1 update in the /examples/html-ethers directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite).
Bumps the npm_and_yarn group with 1 update in the /examples/html-solana directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite).
Bumps the npm_and_yarn group with 1 update in the /examples/html-wagmi directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite).
Bumps the npm_and_yarn group with 1 update in the /examples/html-wagmi-cdn directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite).
Bumps the npm_and_yarn group with 1 update in the /examples/html-wagmi-solana-bitcoin directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite).
Bumps the npm_and_yarn group with 1 update in the /examples/html-wagmi-wallet-button directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite).
Bumps the npm_and_yarn group with 1 update in the /examples/react-ak-basic directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite).
Bumps the npm_and_yarn group with 1 update in the /examples/react-ak-basic-sign-client directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite).
Bumps the npm_and_yarn group with 1 update in the /examples/react-ak-basic-up directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite).
Bumps the npm_and_yarn group with 1 update in the /examples/react-ep directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite).
Bumps the npm_and_yarn group with 1 update in the /examples/react-ethers directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite).
Bumps the npm_and_yarn group with 1 update in the /examples/react-ethers5 directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite).
Bumps the npm_and_yarn group with 1 update in the /examples/react-solana directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite).
Bumps the npm_and_yarn group with 1 update in the /examples/react-wagmi directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite).
Bumps the npm_and_yarn group with 2 updates in the /examples/sveltekit-4-wagmi directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) and [@sveltejs/kit](https://github.com/sveltejs/kit/tree/HEAD/packages/kit).
Bumps the npm_and_yarn group with 2 updates in the /examples/sveltekit-ethers directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) and [@sveltejs/kit](https://github.com/sveltejs/kit/tree/HEAD/packages/kit).
Bumps the npm_and_yarn group with 2 updates in the /examples/sveltekit-wagmi directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) and [@sveltejs/kit](https://github.com/sveltejs/kit/tree/HEAD/packages/kit).
Bumps the npm_and_yarn group with 1 update in the /examples/vue-ak-basic directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite).
Bumps the npm_and_yarn group with 1 update in the /examples/vue-ak-basic-sign-client directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite).
Bumps the npm_and_yarn group with 1 update in the /examples/vue-ak-basic-up directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite).
Bumps the npm_and_yarn group with 1 update in the /examples/vue-ep directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite).
Bumps the npm_and_yarn group with 1 update in the /examples/vue-ethers-solana directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite).
Bumps the npm_and_yarn group with 1 update in the /examples/vue-ethers5 directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite).
Bumps the npm_and_yarn group with 1 update in the /examples/vue-solana directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite).
Bumps the npm_and_yarn group with 1 update in the /examples/vue-wagmi directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite).
Bumps the npm_and_yarn group with 1 update in the /examples/vue-wagmi-solana directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite).
Bumps the npm_and_yarn group with 1 update in the /packages/cdn directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite).


Updates `vite` from 5.4.12 to 5.4.18
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.18/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.18/packages/vite)

Updates `@sveltejs/kit` from 2.9.0 to 2.20.6
- [Release notes](https://github.com/sveltejs/kit/releases)
- [Changelog](https://github.com/sveltejs/kit/blob/main/packages/kit/CHANGELOG.md)
- [Commits](https://github.com/sveltejs/kit/commits/@sveltejs/kit@2.20.6/packages/kit)

Updates `vite` from 5.4.12 to 5.4.18
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.18/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.18/packages/vite)

Updates `vite` from 5.4.12 to 5.4.18
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.18/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.18/packages/vite)

Updates `vite` from 5.4.12 to 5.4.18
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.18/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.18/packages/vite)

Updates `vite` from 5.4.12 to 5.4.18
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.18/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.18/packages/vite)

Updates `vite` from 5.4.12 to 5.4.18
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.18/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.18/packages/vite)

Updates `vite` from 5.4.12 to 5.4.18
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.18/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.18/packages/vite)

Updates `vite` from 5.4.12 to 5.4.18
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.18/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.18/packages/vite)

Updates `vite` from 5.4.12 to 5.4.18
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.18/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.18/packages/vite)

Updates `vite` from 5.4.12 to 5.4.18
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.18/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.18/packages/vite)

Updates `vite` from 5.4.12 to 5.4.18
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.18/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.18/packages/vite)

Updates `vite` from 5.4.12 to 5.4.18
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.18/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.18/packages/vite)

Updates `vite` from 5.4.12 to 5.4.18
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.18/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.18/packages/vite)

Updates `vite` from 5.4.12 to 5.4.18
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.18/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.18/packages/vite)

Updates `vite` from 5.4.12 to 5.4.18
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.18/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.18/packages/vite)

Updates `vite` from 5.4.12 to 5.4.18
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.18/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.18/packages/vite)

Updates `vite` from 5.4.12 to 5.4.18
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.18/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.18/packages/vite)

Updates `vite` from 5.4.12 to 5.4.18
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.18/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.18/packages/vite)

Updates `vite` from 5.4.12 to 5.4.18
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.18/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.18/packages/vite)

Updates `vite` from 5.4.12 to 5.4.18
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.18/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.18/packages/vite)

Updates `vite` from 5.4.12 to 5.4.18
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.18/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.18/packages/vite)

Updates `@sveltejs/kit` from 2.9.0 to 2.20.6
- [Release notes](https://github.com/sveltejs/kit/releases)
- [Changelog](https://github.com/sveltejs/kit/blob/main/packages/kit/CHANGELOG.md)
- [Commits](https://github.com/sveltejs/kit/commits/@sveltejs/kit@2.20.6/packages/kit)

Updates `vite` from 6.0.0 to 6.0.15
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.18/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.18/packages/vite)

Updates `@sveltejs/kit` from 2.9.0 to 2.20.6
- [Release notes](https://github.com/sveltejs/kit/releases)
- [Changelog](https://github.com/sveltejs/kit/blob/main/packages/kit/CHANGELOG.md)
- [Commits](https://github.com/sveltejs/kit/commits/@sveltejs/kit@2.20.6/packages/kit)

Updates `vite` from 6.2.1 to 6.2.6
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.18/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.18/packages/vite)

Updates `@sveltejs/kit` from 2.19.0 to 2.20.6
- [Release notes](https://github.com/sveltejs/kit/releases)
- [Changelog](https://github.com/sveltejs/kit/blob/main/packages/kit/CHANGELOG.md)
- [Commits](https://github.com/sveltejs/kit/commits/@sveltejs/kit@2.20.6/packages/kit)

Updates `vite` from 5.4.12 to 5.4.18
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.18/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.18/packages/vite)

Updates `vite` from 5.4.12 to 5.4.18
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.18/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.18/packages/vite)

Updates `vite` from 5.4.12 to 5.4.18
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.18/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.18/packages/vite)

Updates `vite` from 5.4.12 to 5.4.18
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.18/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.18/packages/vite)

Updates `vite` from 5.4.12 to 5.4.18
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.18/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.18/packages/vite)

Updates `vite` from 5.4.12 to 5.4.18
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.18/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.18/packages/vite)

Updates `vite` from 5.4.12 to 5.4.18
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.18/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.18/packages/vite)

Updates `vite` from 5.4.12 to 5.4.18
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.18/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.18/packages/vite)

Updates `vite` from 5.4.12 to 5.4.18
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.18/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.18/packages/vite)

Updates `vite` from 5.4.12 to 5.4.18
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.18/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.18/packages/vite)

---
updated-dependencies:
- dependency-name: vite
  dependency-version: 5.4.18
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: "@sveltejs/kit"
  dependency-version: 2.20.6
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: vite
  dependency-version: 5.4.18
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: vite
  dependency-version: 5.4.18
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: vite
  dependency-version: 5.4.18
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: vite
  dependency-version: 5.4.18
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: vite
  dependency-version: 5.4.18
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: vite
  dependency-version: 5.4.18
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: vite
  dependency-version: 5.4.18
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: vite
  dependency-version: 5.4.18
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: vite
  dependency-version: 5.4.18
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: vite
  dependency-version: 5.4.18
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: vite
  dependency-version: 5.4.18
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: vite
  dependency-version: 5.4.18
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: vite
  dependency-version: 5.4.18
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: vite
  dependency-version: 5.4.18
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: vite
  dependency-version: 5.4.18
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: vite
  dependency-version: 5.4.18
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: vite
  dependency-version: 5.4.1…
@Dargon789 Dargon789 mentioned this pull request Jan 25, 2026
10 tasks
Dargon789 added a commit that referenced this pull request Mar 18, 2026
Dargon789 added a commit that referenced this pull request Mar 18, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant