Update to 5.0.0-nightly.20260715 + show Aztec SDK version in UI - #62
Merged
Conversation
Bump all @aztec/* packages from the 5.0.0 stable release to tonight's nightly (5.0.0-nightly.20260715) to pick up the latest fixes, across all workspaces. No source changes were required — the v5 migration on this branch is drop-in compatible with the nightly (typecheck, tests, extension compile and web build all pass). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Surface the Aztec SDK version the wallet is built against in a footer at the bottom of the expanded menu drawer, so it's easy to tell which SDK build a running wallet is using (handy when testing nightlies). The version is read from the workspace's pinned @aztec/aztec.js dependency at build time and injected via a Vite `define` (__AZTEC_SDK_VERSION__) in both the web and Electron-renderer configs — a single source of truth that tracks whatever version is installed. shared/src/ui/utils/version.ts reads the define and falls back to "unknown" where it isn't applied (e.g. tests). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
|
🚀 Web wallet deployed! Preview URL: https://demo-wallet-ju36r62tt-thunkars-projects.vercel.app |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Builds on #59 (v5.0.0 stable migration). Base is
gj/update-to-v5-stableso the diff below is just the incremental work; GitHub will retarget this tomainonce #59 merges.1. Update to the latest v5 nightly
Bumps all
@aztec/*packages from5.0.0→5.0.0-nightly.20260715(tonight's release) across every workspace to pick up the latest fixes. No source changes were needed — the v5 migration from #59 is drop-in compatible with the nightly.2. Show the Aztec SDK version in the UI
Adds a footer at the bottom of the expanded menu drawer showing the Aztec SDK version the wallet is built against — useful for telling which SDK build a running wallet uses when testing nightlies.
@aztec/aztec.jsdependency at build time and injected via a Vitedefine(__AZTEC_SDK_VERSION__) in both the web and Electron-renderer configs — one source of truth that tracks whatever is installed.shared/src/ui/utils/version.tsreads the define, falling back to"unknown"where it isn't applied (e.g. unit tests).mt: auto, so it pins to the bottom.Verification
typecheck(shared/web/app)tsctestlint5.0.0-nightly.20260715and the footer, no unreplaced__AZTEC_SDK_VERSION__The version display was verified via build/bundle inspection (define substituted correctly, label + version present). I did not drive the wallet in a live browser — happy to add a screenshot if useful.
🤖 Generated with Claude Code