Release v0.9.2.1 hotfix: TGXL TUNE for firmware 4.2#2165
Merged
Conversation
Hotfix release for SmartSDR firmware 4.2 TGXL TUNE regression. - CMakeLists.txt / README.md / CLAUDE.md: 0.9.2 → 0.9.2.1 - CHANGELOG: v0.9.2.1 entry covering the TGXL fix (#2163) and the redactPii regex tightening - WhatsNewData.cpp: regenerated from CHANGELOG - main.cpp: redactPii IPv4 regex was matching the 4-component version string `0.9.2.1` and rendering it as `*.*.*. 1` in logs and support bundles. Negative lookbehind/lookahead now skip quoted ("0.9.2.1") and v-prefixed (v0.9.2.1) version forms. Co-Authored-By: Claude Opus 4.7 (1M context) <[email protected]>
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
Hotfix release for the SmartSDR firmware 4.2 TGXL TUNE regression (#2163, already merged on main). Bumps version to v0.9.2.1 and updates CHANGELOG / WhatsNew.
This release lets the community test the fix on radios that have already upgraded to firmware 4.2.
What's in v0.9.2.1
TGXL TUNE works again on firmware 4.2 (#2163, already on main)
Routes the TUNE button through the TGXL's native port-9010 channel when a direct connection is configured, bypassing the firmware path that broke in 4.2.
Log redaction no longer mangles 4-component version strings (this PR)
The PII redactor's IPv4 regex matched anything that looked like four dot-separated 1-3-digit numbers, so the version string
0.9.2.1was being redacted to*.*.*. 1in logs and support bundles. Negative lookbehind/lookahead now skip quoted ("0.9.2.1") and v-prefixed (v0.9.2.1) version forms while still redacting bare IPs. This bug was always latent — only became visible once the version went 4-component.Changes
CMakeLists.txt,README.md,CLAUDE.md: 0.9.2 → 0.9.2.1CHANGELOG.md: new v0.9.2.1 sectionsrc/generated/WhatsNewData.cpp: regeneratedsrc/main.cpp: redactPii regex fixTest plan
Starting AetherSDR "0.9.2.1"prints correctly (no longer*.*.*. 1)v0.9.2.1, attach release notes, let CI build the AppImage / DMG / Windows installers🤖 Generated with Claude Code