chore: enable Sentry release reporting and bump Dioxus to 0.7.9#155
Merged
mattdjenkinson merged 1 commit intoMay 14, 2026
Merged
Conversation
- Bake SENTRY_DSN at compile time via option_env! so release builds report events; add build.rs files so cargo rebuilds when SENTRY_DSN changes. - Initialize Sentry before tracing_subscriber so events from the first log onwards land on a real Hub. - Promote WARN to a Sentry event (the codebase prefers warn! for failures). - CI: pass SENTRY_DSN to dx bundle and run dsymutil on macOS so .dSYM bundles are uploaded with the artifact. - Bump dioxus / dioxus-desktop 0.7.3 -> 0.7.9 and use the new with_tray_icon_show_window_on_click(false) so left-clicking the tray icon only surfaces the menu instead of unhiding the main window. Co-authored-by: Cursor <cursoragent@cursor.com>
scotwells
approved these changes
May 14, 2026
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.
Summary
SENTRY_DSNat compile time viaoption_env!so release builds actually report events; addbuild.rsfiles so cargo rebuilds whenSENTRY_DSNchanges.tracing_subscriberso events from the first log onwards land on a real Hub.WARNto a Sentry event (the codebase preferswarn!for failure paths; the default filter sent almost nothing).SENTRY_DSNtodx bundleinbundle.yml/manual-release.yml, and rundsymutilon macOS so.dSYMbundles upload alongside the artifact.dioxus/dioxus-desktop0.7.3 → 0.7.9 and use the newwith_tray_icon_show_window_on_click(false)so left-clicking the tray icon only surfaces the menu instead of unhiding the main window.