doc: add release notes for version 3 transactions
What changed, and why it matters
This commit only adds documentation: a new release-notes file describing upcoming support for version 3 (TRUC) Bitcoin transactions in several RPCs and the wallet. No code behavior changes are present in the diff.
No security action needed; this is a documentation-only release-notes addition. Review the actual implementation commits (e.g., PR #32896) separately if assessing the security of version 3 transaction support.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The commit creates doc/release-notes-32896.md, a 19-line markdown file. It documents that createrawtransaction, createpsbt, send, sendall, and walletcreatefundedpsbt will gain a version parameter (1-3), and that the wallet will enforce TRUC policy rules when spending or creating version 3 transactions. The diff contains no executable code, no protocol changes, and no bug fixes.
Changed components
doc/release-notes-32896.mdInspect captured patch +19 / −0
diff --git a/doc/release-notes-32896.md b/doc/release-notes-32896.md
new file mode 100644
index 00000000..a577e81f
--- /dev/null
+++ b/doc/release-notes-32896.md
@@ -0,0 +1,19 @@
+Updated RPCs
+------------
+The following RPCs now contain a `version` parameter that allows
+the user to create transactions of any standard version number (1-3):
+- `createrawtransaction`
+- `createpsbt`
+- `send`
+- `sendall`
+- `walletcreatefundedpsbt`
+
+Wallet
+------
+Support has been added for spending TRUC transactions received by the
+wallet, as well as creating TRUC transactions. The wallet ensures that
+TRUC policy rules are being met. The wallet will throw an error if the
+user is trying to spend TRUC utxos with utxos of other versions.
+Additionally, the wallet will treat unconfirmed TRUC sibling
+transactions as mempool conflicts. The wallet will also ensure that
+transactions spending TRUC utxos meet the required size restrictions.
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.