What changed, and why it matters
This commit is a routine release-preparation change. It only updates the version number from 4.6.1 to 4.6.2 and adds release notes describing many bug fixes and minor features. There is no code change that could directly introduce or fix a security vulnerability in this specific commit.
No action needed for this commit itself. Review the individual referenced pull requests (e.g., #10153, #10128, #10145, #10108, #10109, #10123) if assessing the security of the 4.6.2 release as a whole.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff touches two files: RELEASE-NOTES and electrum/version.py. It bumps ELECTRUM_VERSION to ‘4.6.2’ and documents changes in release 4.6.2, including fee clamping, network behavior, GUI fixes, Lightning gossip rate-limits, submarine swap fixes, CLI/RPC changes, and a Nostr Cosigner plugin fix. No executable code is modified in this commit.
Changed components
RELEASE-NOTESelectrum/version.pyInspect captured patch +27 / −1
diff --git a/RELEASE-NOTES b/RELEASE-NOTES
index 93c1456..49885e7 100644
--- a/RELEASE-NOTES
+++ b/RELEASE-NOTES
@@ -1,3 +1,29 @@
+# Release 4.6.2 (Aug 25, 2025)
+ * General:
+ - changed: minrelayfee clamps from [1, 50] to [0.1, 50] sat/vbyte (#10096)
+ - new: add support for "mutinynet" signet test network (#10134)
+ - new: network: don't request same tx from server that we just broadcast to it (#10111)
+ - new: logging: add config.LOGS_MAX_TOTAL_SIZE_BYTES: to limit size on disk (#10159)
+ * QML GUI (Android):
+ - fix: cannot open keystore-encryption-only wallets (#10171)
+ - fix: wizard: restoring from seed broken if already opened a wallet (#10117)
+ - fix: handle invoice validation errors on save (#10122)
+ - fix: sweep: handle network errors gracefully (#10108)
+ - fix: sweep: handle unexpected script_types (#10145)
+ * Qt GUI (desktop):
+ - fix: wizard: hardware device: handle missing xpub (#10109)
+ - fix: wizard: enable-keystore for bip39 seeds and hw devices (#10123)
+ * Lightning:
+ - fix: slow down peers sending too much gossip, and other rate-limits (#10153)
+ * Submarine swaps: several bug fixes and improved reliability.
+ * CLI/RPC:
+ - changed: onchain_history: add back from_height/to_height params (#10119)
+ - changed: reverse_swap: new mandatory parameter 'prepayment' (#10165)
+ - new: get_submarine_swap_providers: added command to fetch swap providers (#10158)
+ * Plugins:
+ - Nostr Cosigner: fix: don't allow saving tx without txid (#10128)
+
+
# Release 4.6.1 (Aug 5, 2025)
* QML GUI (Android):
- fix: QR scanner crashes due to null/orphaned View in hierarchy (#10071)
diff --git a/electrum/version.py b/electrum/version.py
index 4a399b0..40ec211 100644
--- a/electrum/version.py
+++ b/electrum/version.py
@@ -1,4 +1,4 @@
-ELECTRUM_VERSION = '4.6.1' # version of the client package
+ELECTRUM_VERSION = '4.6.2' # version of the client package
PROTOCOL_VERSION = '1.4' # protocol version requested
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.