Commit graph

1575 commits

Author SHA1 Message Date
ziggie
c919d25619
docs: add release-notes 2026-02-25 08:02:16 +01:00
ziggie
4c867c1b88
docs: add release-notes 2026-02-25 08:02:15 +01:00
ziggie
4c5eaad606
docs: add release-notes 2026-02-25 08:02:08 +01:00
ziggie
b6a05f7951
docs: add release-notes 2026-02-25 08:01:15 +01:00
Olaoluwa Osuntokun
0b00c66231
Merge pull request #10601 from ziggie1984/invoice-filter-index-optimization
invoices/sql_store: replace catch-all FilterInvoices with targeted index-friendly queries
2026-02-24 16:34:27 -08:00
ziggie
1e5e6f27ef
docs: add release notes for invoice SQL query performance improvements 2026-02-21 17:05:44 +01:00
bitromortac
3a00ed4a8d
docs: update release notes 2026-02-20 10:47:48 +01:00
Elle Mouton
09e20dc7fa
docs: update release notes 2026-02-20 09:28:13 +02:00
Elle Mouton
4d4b42d0ea
docs: add release notes for gossip v2 policy support 2026-02-13 07:29:40 +02:00
Elle Mouton
a39f94eb4a
docs: update release notes for gossip v2 graph preparation
Add reference to the PR implementing v2 channel support in the graph
database layer.
2026-02-13 07:21:23 +02:00
Elle Mouton
25bbb39030
docs: update release notes
Update the Database section to reference both PRs that prepare the
graph DB for gossip v2 support:
- PR 10339: node handling
- PR 10379: channel handling (this PR)
2026-02-13 07:21:22 +02:00
Elle Mouton
fcbfeb33e0
docs: update release notes 2026-02-13 07:21:21 +02:00
ziggieXXX
3267fec34a
Merge pull request #10536 from starius/unlock-wait
lncli unlock: wait until daemon can unlock
2026-02-11 17:28:55 +01:00
Slyghtning
7766c1dd9a
docs: add release notes for wallet_synced RPC field 2026-02-05 08:58:33 +01:00
Boris Nagaev
d8f39fa1b4
docs/release-notes: add release notes entry 2026-02-04 15:21:03 -05:00
Boris Nagaev
593e8c01cf
docs/release-notes: fix PR reference 2026-02-04 15:20:03 -05:00
Olaoluwa Osuntokun
5c7d3ad045
Merge pull request #10540 from morehouse/gossiper_shutdown_deadlock
discovery: fix gossiper shutdown deadlock
2026-02-04 10:32:15 -08:00
Olaoluwa Osuntokun
d332cb0761
Merge pull request #10529 from Roasbeef/fix-edge-features-decode-compat
graphdb: fix backwards-compat for channel edge feature deserialization
2026-02-03 13:12:26 -04:00
Olaoluwa Osuntokun
56a7f45b99 graphdb: fix backwards-compat for channel edge feature deserialization
This commit fixes a backwards compatibility issue that prevented nodes
from upgrading from v0.19.x to v0.20.x.

In v0.19.x, channel edge features were serialized as raw feature bytes
without a length prefix. In v0.20.x (commit 2f2845dfc), the serialization
changed to use Features.Encode() which adds a 2-byte big-endian length
prefix before the feature bits. The deserialization code was updated to
use Features.Decode() which expects this length prefix.

When v0.20.x reads a database created by v0.19.x, Decode() tries to read
a length prefix that doesn't exist, causing an EOF error:

    unable to decode features: EOF

The fix adds a deserializeChanEdgeFeatures() helper that detects which
format is being read and decodes accordingly:

- New format (v0.20+): First 2 bytes encode the length of the remaining
  bytes. Detected when uint16(bytes[0:2]) == len(bytes)-2.

- Legacy format (pre-v0.20): Raw feature bits without length prefix.
  Uses DecodeBase256 with the known length.

The format detection is safe because in the legacy format, the first byte
always has at least one bit set (the serialization uses minimum bytes),
so the first two bytes can never encode a value equal to len-2.

Fixes #10528.
2026-02-03 09:12:04 -08:00
Matt Morehouse
5fa025e9e7
docs: add release note 2026-02-03 09:15:34 -06:00
Slyghtning
22feff6dbb
docs: update release notes for gossip trickle delay validation 2026-02-02 20:48:01 +01:00
ziggieXXX
20a6b1726f
Merge pull request #10532 from darioAnongba/fix/ignored-local-mark-coop
peer: fix MarkCoopBroadcasted to correctly use local parameter
2026-02-02 12:36:06 -05:00
Dario Anongba Varela
6e56c9a538
peer: fix MarkCoopBroadcasted to correctly use local parameter 2026-02-02 12:16:29 +01:00
Dario Anongba Varela
05eed5cdb4
routerrpc: FailureDetail enums for invoice/AMP validation failures 2026-01-22 15:30:19 -05:00
Olaoluwa Osuntokun
4aef4d00ac docs/release-notes: add release notes entry 2026-01-15 16:22:26 -08:00
Yash Bhutwala
f48e6ba145
docs: update release notes for fundMax fix 2026-01-13 10:54:55 -05:00
Olaoluwa Osuntokun
ab6ff825c6
Merge pull request #10470 from Roasbeef/discovery-panic-recovery
discovery: add panic recovery for gossip message processing
2026-01-12 17:10:35 -08:00
Olaoluwa Osuntokun
7da41cb367
docs/release-notes: add release notes 2026-01-12 17:10:17 -08:00
ziggieXXX
7bbf26c0e2
Merge pull request #10469 from Roasbeef/lnwire-timestamp-validation
lnwire: enforce non-zero timestamp in gossip messages
2026-01-12 13:57:12 +01:00
Olaoluwa Osuntokun
cad1b957bf
discovery: enforce non-zero timestamp in gossip messages
In this commit, we add validation for channel updates and node
announcements to ensure that we reject gossip messages with zero
timestamps at the discovery layer.

From BOLT 7:
  "MUST set timestamp to greater than 0, AND to greater than any
  previously-sent channel_update for this short_channel_id."

This validation is performed in the gossip handlers (handleNodeAnnouncement
and handleChanUpdate) rather than at the wire protocol level. This approach
ensures we can still decode messages from disk or embedded in onion errors
while rejecting invalid gossip from peers.

Remote peers sending zero-timestamp gossip will have their ban score
incremented.
2026-01-09 17:10:37 -08:00
Slyghtning
202e473c7f
docs: update release notes 2026-01-07 10:30:04 +01:00
elnosh
6f49bea52b server: remove accountability signal experiment period
In the previous iteration with endorsement
signaling, the recommendation was for the sender to
set it to 1 and that could have had privacy concerns
when first deploying given that the default was to
downgrade the signal to 0. In the latest proposal
the recommended default for both sending and
forwarding nodes is to set `accountable` to 0.
As a result, the dates have been removed given
that there are no privacy risks associated
with relaying the signal with zero values.
2026-01-06 09:12:34 -05:00
ziggieXXX
ac006d73cf
Merge pull request #10356 from Abdulkbk/ispublicnode-perf
graph: fix inefficient query for IsPublicNode
2026-01-05 10:32:56 +01:00
Erick Cestari
523002984b
docs: add release-notes 2025-12-29 19:19:53 -03:00
Abdullahi Yunus
68f558c865
docs: add release note 2025-12-24 18:08:46 +01:00
ziggie
e5b0704d73
docs: add release-notes for LND 20.1 2025-12-16 08:21:11 +01:00
Elle Mouton
da9868b06d
docs: update release notes 2025-12-11 18:13:47 +02:00
Yong
1e15efc473
Merge pull request #10439 from ziggie1984/bugfix/probing
Always add the payment address when probing an invoice
2025-12-10 22:39:58 +08:00
ziggie
ac30443cc1
docs: add release-notes for LND 20.1 2025-12-10 09:49:57 +01:00
Elle
3d7ff866f8
Merge pull request #10436 from ellemouton/musigRegisterAggNonce 2025-12-10 09:58:58 +02:00
Elle Mouton
a7b61f3ec1
docs: add release notes for combined nonce RPC methods
Document the new MuSig2RegisterCombinedNonce and MuSig2GetCombinedNonce RPC
methods in the v0.21.0 release notes. These methods enable coordinator-based
signing patterns as an alternative to the standard MuSig2RegisterNonces
workflow.
2025-12-10 07:19:07 +02:00
Olaoluwa Osuntokun
456d7dcf05
Merge pull request #10424 from MPins/sat_per_byte_remove_warning
docs: release-notes-0.21
2025-12-09 17:59:15 -08:00
ziggie
f289e4920e
docs: add release-notes for LND 20.1 2025-12-09 11:51:47 +01:00
Elle
bc670fab82
Merge pull request #10396 from ziggie1984/enhance-lsp-heuritic
Enhance Lsp Heuristic when probing a payment
2025-12-09 10:43:43 +02:00
MPins
bf473431bd
docs: release-notes-0.21
Warning message about removing the deprecated option --sat_per_byte
2025-12-08 14:31:37 -03:00
Elle Mouton
e68bf6c58d
docs: add release notes for race condition fixes 2025-12-08 11:57:01 +02:00
Elle Mouton
3e0bc6b18c
docs: add release note 2025-12-03 13:09:22 +02:00
Yong
4b1c4998ad
Merge pull request #10399 from mohamedawnallah/handle-partial-tls-files
tls_manager: Handle partial TLS files
2025-12-03 18:27:39 +08:00
Mohamed Awnallah
0a6f69dd7e docs: update release notes 2025-12-03 09:13:23 +00:00
ziggie
17b77b64a3
docs: add release-notes for LND 20.1 2025-12-02 20:38:55 +01:00