Elle
e8213dbc44
Merge pull request #9752 from erickcestari/reject-payment-without-invoice
...
routerrpc: reject payment to invoice that don't have payment secret or blinded paths
2025-06-30 13:11:36 +02:00
Elle Mouton
b4b1c4bd8d
graph/db: remove KVStore fall-back
...
Now that SQLStore fully implements V1Store, we no longer need the
KVStore fall-back.
2025-06-26 10:12:46 +02:00
Oliver Gugger
fb1fef9e6c
Merge pull request #9971 from ellemouton/graphSQL16-closed-scids
...
[16] graph/db: SQL closed SCIDs table and last few methods
2025-06-25 17:32:49 +02:00
Elle
1fcf112107
Merge pull request #9925 from ellemouton/rbIncomingFollowup
...
routing: clean-up & fix blinded path incoming chained channel logic
2025-06-25 16:30:40 +02:00
ziggie
d6b89b9e9e
docs: add release-notes
2025-06-25 14:24:36 +02:00
Elle Mouton
23c8f7099c
graph/db: impl ForEachChannelCacheable
2025-06-25 13:26:52 +02:00
Elle Mouton
e68b882f7b
docs: update release notes
2025-06-25 13:15:25 +02:00
Elle Mouton
a4459cc5a5
docs: update release notes
2025-06-25 12:57:40 +02:00
Elle Mouton
e875183c4f
sqldb+graph/db: impl DisconnectBlockAtHeight
...
Which lets us run `TestDisconnectBlockAtHeight` and
`TestStressTestChannelGraphAPI` against our SQL backends.
2025-06-25 11:22:03 +02:00
Elle Mouton
eec89362a5
graph/db+sqldb: impl DisabledChannelIDs
...
Which lets us run `TestDisabledChannelIDs` against our SQL DB backends.
2025-06-24 21:04:36 +02:00
Elle Mouton
2a6e6683eb
graph/db+sqldb: implement DeleteChannelEdges
...
This lets us run TestGraphZombieIndex against the SQL backends.
2025-06-24 19:02:45 +02:00
Elle
6b80796bb8
Merge pull request #9936 from ellemouton/graphSQL12
...
[12] graph/db: Implement more graph SQLStore methods
2025-06-24 14:37:33 +02:00
Elle Mouton
75a353146d
docs: update release notes
...
Warn users of simnet/signet/regtest scripts that they will now need to
explicitly specify the `--nobootstrap` flag to turn bootstrapping off.
2025-06-24 12:56:46 +02:00
Elle Mouton
3687171cd5
sqldb+graph/db: implement FilterChannelRange
...
This lets us run `TestFilterChannelRange` against the SQL backends.
2025-06-24 12:17:52 +02:00
Boris Nagaev
7b70ad7fd1
docs: update release notes
2025-06-22 11:06:54 -03:00
Erick Cestari
831fefef7c
docs: add release notes for 9752
2025-06-20 09:23:09 -03:00
Boris Nagaev
409bf3c6cc
docs: update release notes (include_auth_proof)
2025-06-19 18:19:33 -03:00
Elle Mouton
ece157b40b
graph/db: implement ForEachNodeChannel
...
Which lets us then run `TestIncompleteChannelPolicies` and
`BenchmarkForEachChannel` against our SQL backends.
2025-06-18 16:55:00 +02:00
Elle Mouton
f89e3ceced
graph/db+sqldb: implement ForEachSourceNodeChannel
...
In this commit, the ForEachSourceNodeChannel implementation of the
SQLStore is added. Since this is the first method of the SQLStore that
fetches channel and policy info, it also adds all the helpers that are
required to do so. These will be re-used in upcoming commits as more
"For"-type methods are added.
With this implementation, we convert the `TestForEachSourceNodeChannel`
such that it is run against SQL backends.
2025-06-18 08:43:56 +02:00
Oliver Gugger
c1740c14ba
Merge pull request #9887 from ellemouton/graphSQL9-chan-policies-schema
...
graph/db+sqldb: channel policy SQL schemas, queries and upsert CRUD
2025-06-17 16:30:23 +02:00
Mohamed Awnallah
e7d30e0790
docs: update release notes
2025-06-14 14:31:57 +00:00
Yong
fe405426ca
Merge pull request #9356 from funyug/add-filters-fwdhistory
...
lnrpc: add incoming/outgoing channel ids filter to forwarding history request
2025-06-14 08:36:51 +08:00
Elle Mouton
4e2750e179
sqldb: channel policy tables
...
Define the SQL tables for representing channel policies. Namely:
- channel_policies
- channel_policy_extra_types
2025-06-12 07:16:18 +02:00
Shivam Chawla
bfe1edf4ec
lnrpc: add filters to forwardhistoryrequest
...
This commit adds incoming and outgoing channel ids filter to forwarding history request to filter events received/forwarded from/to a particular channel
2025-06-11 09:10:13 +05:30
Elle Mouton
6fb90c88ca
docs: update release notes
2025-06-10 20:10:36 +02:00
Elle Mouton
6141bcd851
docs: update release notes
2025-06-09 08:44:50 +02:00
Abdullahi Yunus
ccf3a282d0
docs: add release note
2025-06-06 12:21:46 +01:00
Oliver Gugger
fc906f2a65
Merge pull request #9127 from MPins/issue-8993
...
Add the option on path creator to specify the incoming channel on blinded path
2025-06-05 08:47:05 +02:00
Elle Mouton
efc04b9918
docs: update release notes
2025-05-27 18:37:00 +02:00
Alex Pilon
0437850089
docs: Update release notes for --route_hints flag
2025-05-24 20:01:48 -04:00
Elle Mouton
7cef62f999
docs: update release notes
2025-05-22 14:17:43 +02:00
Elle Mouton
1410a0949d
lnwire: validate that gossip messages contain valid TLV
...
In this commit, we check that the extra bytes appended to gossip
messages contain valid TLV streams. We do this here for:
- channel_announcement
- channel_announcement_2
- channel_update
- channel_update_2
- node_announcement
This is in preparation for the SQL version of the graph store which will
normalise TLV streams at persistence time.
2025-05-22 14:14:41 +02:00
Elle Mouton
52018dbbec
graph/db: introduce the V1Store interface
...
In this commit, we introduce the `V1Store` interface which the existing
`graphdb.KVStore` implements today. The idea is to eventually create a
SQL DB backed implementation of this interface.
2025-05-22 14:14:40 +02:00
MPins
6fb2d47e84
doc: release-notes-0.20.0
2025-05-13 19:42:54 -03:00
MPins
097c262341
doc: creating file release-notes-0.20.0.md
2025-02-10 23:50:04 -03:00