Olaoluwa Osuntokun
2d985c89d6
Merge branch '0-19-2-branch-rc2-10048' into 0-19-2-branch-rc2
2025-07-08 18:39:48 -07:00
ziggie
da1456f71b
docs: add release notes
2025-07-08 18:34:39 -07:00
ziggie
151fabc945
contractcourt: fix encoding
2025-07-08 18:34:39 -07:00
Oliver Gugger
e4bdd7762e
Merge branch '0-19-2-branch-rc2-10041' into 0-19-2-branch-rc2
2025-07-08 18:33:36 +02:00
ziggie
15cd86c0aa
multi: revert back changes from 9911
...
always process remote ADDs even when they are empty to trigger
the gc process when loading them back into memory.
2025-07-08 18:33:35 +02:00
Oliver Gugger
7afaaffb3e
Merge branch '0-19-2-branch-rc2-10042' into 0-19-2-branch-rc2
2025-07-08 16:25:39 +02:00
ziggie
e1f9e87e47
routing: return error for getBandwidth and log it
2025-07-08 16:25:39 +02:00
ziggie
7bcb65d9e6
multi: add logs to debug potential payment sending issue
2025-07-08 16:25:39 +02:00
Oliver Gugger
103b24e7ff
Merge branch '0-19-2-branch-rc2-10045' into 0-19-2-branch-rc2
2025-07-07 15:29:40 +02:00
yyforyongyu
8fe0d0f7cd
docs: update release docs
2025-07-07 15:29:40 +02:00
yyforyongyu
93bede938e
contractcourt: only close quit in Stop
...
Make sure we don't prematurely close the `quit` chans.
2025-07-07 15:29:39 +02:00
Oliver Gugger
7b1ca7d273
Merge pull request #9986 from lightningnetwork/0-19-2-branch-rc1
...
release: create v0.19.2-rc1 branch
v0.19.2-beta.rc1
2025-07-04 20:36:07 +02:00
Oliver Gugger
1f336a07fa
Merge branch '0-19-2-branch-rc1-10035' into 0-19-2-branch-rc1
2025-07-04 15:38:53 +02:00
ziggie
d59036b48a
docs: add release-notes
2025-07-04 15:38:52 +02:00
ziggie
81e4160d67
switch: unlock mutex lock earlier
...
We now unlock the mutex lock of the switch as soon as possible to
avoid potetnial deadlock in the htlc switch.
2025-07-04 15:38:52 +02:00
Oliver Gugger
11bdccca47
docs: fix release notes, add contributors
2025-07-04 10:11:11 +02:00
Oliver Gugger
775a6dd8f8
build: bump version to v0.19.2-beta.rc1
2025-07-04 09:08:11 +02:00
Oliver Gugger
acac2a12d6
Merge branch '0-19-2-branch-rc1-10028' into 0-19-2-branch-rc1
2025-07-04 09:03:42 +02:00
ffranr
9345eb247d
chainntnfs: export NotifierOptions and internal field for interface use
...
Export NotifierOptions and its internal field to enable external
satisfaction of the protofsm.DaemonAdapters interface.
2025-07-04 09:03:41 +02:00
Oliver Gugger
8a185a12d1
server: fix rebase issue
2025-07-03 17:54:17 +02:00
Oliver Gugger
1cd42b62bd
Merge branch '0-19-2-branch-rc1-10012' into 0-19-2-branch-rc1
2025-07-03 16:18:04 +02:00
ziggie
be7c2b0cc7
docs: add release-notes
2025-07-03 16:18:04 +02:00
ziggie
db7e9e1c53
brontide: remove async goroutine to process gossip process result
...
We cannot rely on a response currently so we avoid spawning
goroutines. This is just a temporary fix to avoid the goroutine
leak.
2025-07-03 16:18:04 +02:00
ziggie
a68dec8c19
discovery: add comments
2025-07-03 16:18:03 +02:00
Oliver Gugger
99ef37f450
Merge branch '0-19-2-branch-rc1-9980' into 0-19-2-branch-rc1
2025-07-02 16:52:06 +02:00
George Tsagkarelis
2460bd17ac
docs: add release note
2025-07-02 16:52:06 +02:00
George Tsagkarelis
128b23e813
htlcswitch+routing: PaymentBandwidth accepts channel peer pubkey argument
2025-07-02 16:52:06 +02:00
George Tsagkarelis
ab036990b5
routing+htlcswitch: ProduceHtlcExtraData uses first hop pub key
2025-07-02 16:52:05 +02:00
Oliver Gugger
c91753eda1
Merge branch '0-19-2-branch-rc1-10016' into 0-19-2-branch-rc1
2025-07-01 20:11:05 +02:00
Elle Mouton
6bbc438077
server: make use of structured logging for peer connections
2025-07-01 20:09:43 +02:00
Elle Mouton
f6c41565d1
accessman: fix structured logging formatting
2025-07-01 20:09:07 +02:00
Oliver Gugger
5398229079
Merge branch '0-19-2-branch-rc1-10004' into 0-19-2-branch-rc1
2025-07-01 20:08:26 +02:00
Elle Mouton
2a578737f6
server: ensure newer node announcement timestamp
...
On startup, we currently blindly overwrite our node announcement info
for our source node. This includes overwriting the existing LastUpdate
timestamp. This can cause an issue with our new SQL backends in the case
that the new timestamp is not greater than the previously written
timestamp. So here, we first fetch the source node and make sure to use
a timestamp that is greater than the previosly set one.
2025-07-01 20:08:15 +02:00
Elle Mouton
9b877b94c3
multi: use the "errors" package everywhere
...
Replace all usages of the "github.com/go-errors/errors" and
"github.com/pkg/errors" packages with the standard lib's "errors"
package. This ensures that error wrapping and `errors.Is` checks will
work as expected.
2025-07-01 20:08:12 +02:00
Oliver Gugger
72d4ae0faa
Merge branch '0-19-2-branch-rc1-10009' into 0-19-2-branch-rc1
2025-07-01 08:46:29 +02:00
Elle Mouton
4efcb075de
discovery: fix log line panic
...
If a method returns an error, we should assume all other parameters to
be nil unless the documentation explicitly says otherwise. So here, we
fix a log line where a dereference is made to an object that will be nil
due to an error being returned.
2025-07-01 08:46:28 +02:00
Oliver Gugger
d90781e36a
Merge branch '0-19-2-branch-rc1-9996' into 0-19-2-branch-rc1
2025-06-27 12:32:33 +02:00
Calvin Zachman
a3e36133af
docs: update release notes
2025-06-27 12:32:33 +02:00
Calvin Zachman
09bcce5ba5
chainreg: use new lseed service
...
This points lnd at the new deployment of the lseed
service used to provide candidate peers during initial
network bootstrap.
2025-06-27 12:32:32 +02:00
Oliver Gugger
bc982499bd
Merge branch '0-19-2-branch-rc1-9978' into 0-19-2-branch-rc1
2025-06-26 08:49:21 +02:00
ziggie
d7b79eff38
lnd: improve code comment
2025-06-26 08:49:10 +02:00
ziggie
78313e3436
lnd: rename removePeer to removePeerUnsafe
...
rename `removePeer` to highlight that the mutex has to be acquired
before calling it.
2025-06-26 08:49:10 +02:00
ziggie
a656f2c8a6
docs: add release-notes
2025-06-26 08:49:08 +02:00
ziggie
67e7e29413
multi: fix deadlock in p2p race condition
...
In case we cannot guarantee that the peers has started up
completely we launch the disconnect method asynchronously.
2025-06-26 08:48:39 +02:00
Oliver Gugger
ddbd2e0c34
Merge branch '0-19-2-branch-rc1-9989' into 0-19-2-branch-rc1
2025-06-25 14:57:30 +02:00
Slyghtning
45b26cf2d4
docs: update release notes
2025-06-25 14:57:18 +02:00
Slyghtning
2937837fc0
chainfee: method to round up the fee for a given transaction weight
2025-06-25 14:56:47 +02:00
Oliver Gugger
911fbae52f
Merge branch '0-19-2-branch-rc1-9991' into 0-19-2-branch-rc1
2025-06-25 14:52:07 +02:00
ziggie
3565df870b
routerrpc: rename var and add more comments
2025-06-25 14:52:06 +02:00
ziggie
4f72354385
routerrpc: add log line for probing the invoice request
2025-06-25 14:52:06 +02:00