What changed, and why it matters
This commit only updates a dependency version number in the project's Go module file. It bumps the v2transport package from version 1.0.1 to 1.1.0 so that downstream projects building btcd as a module can access new handshake admission APIs. There is no code change, no bug fix, and no security patch in the diff itself.
No security action required for this commit. Review the v2transport v1.1.0 release notes separately if you want to understand what the newly exposed APIs do, but this commit itself is a routine build/dependency update.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff is a single-line change in go.mod: github.com/btcsuite/btcd/v2transport v1.0.1 → v1.1.0. The commit message explains this exposes responder handshake admission APIs added in a prior pull request (#2576) for downstream module consumers, because repository-local replace directives do not apply when btcd is used as a dependency. No source code, logic, or configuration changes are present.
Changed components
go.mod dependency version for github.com/btcsuite/btcd/v2transportInspect captured patch +1 / −1
diff --git a/go.mod b/go.mod
index c707edb..cc0b0ef 100644
--- a/go.mod
+++ b/go.mod
@@ -9,7 +9,7 @@ require (
github.com/btcsuite/btcd/chaincfg/v2 v2.0.0
github.com/btcsuite/btcd/chainhash/v2 v2.0.0
github.com/btcsuite/btcd/txscript/v2 v2.0.0
- github.com/btcsuite/btcd/v2transport v1.0.1
+ github.com/btcsuite/btcd/v2transport v1.1.0
github.com/btcsuite/btcd/wire/v2 v2.0.0
github.com/btcsuite/btclog v1.0.0
github.com/btcsuite/go-socks v0.0.0-20170105172521-4720035b7bfd
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.