Merge pull request #11018 from ziggie1984/move-10992-release-note-to-v0.21.2
Some checks failed
Vulnerability scan / Scan release binaries (push) Has been cancelled
CI / Static Checks (push) Has been cancelled
CI / Check commits (push) Has been cancelled
CI / Lint code (push) Has been cancelled
CI / Cross compilation (push) Has been cancelled
CI / Cross compilation-1 (push) Has been cancelled
CI / Cross compilation-2 (push) Has been cancelled
CI / Run unit tests (push) Has been cancelled
CI / Run unit tests-1 (push) Has been cancelled
CI / Run unit tests-2 (push) Has been cancelled
CI / Run unit tests-3 (push) Has been cancelled
CI / Run unit tests-4 (push) Has been cancelled
CI / Run unit tests-5 (push) Has been cancelled
CI / Run unit tests-6 (push) Has been cancelled
CI / Run unit tests-7 (push) Has been cancelled
CI / Run unit tests-8 (push) Has been cancelled
CI / Run unit tests-9 (push) Has been cancelled
CI / Run basic itests (push) Has been cancelled
CI / Run basic itests-1 (push) Has been cancelled
CI / Run basic itests-2 (push) Has been cancelled
CI / Run basic itests-3 (push) Has been cancelled
CI / Run basic itests-4 (push) Has been cancelled
CI / Run itests (push) Has been cancelled
CI / Run itests-1 (push) Has been cancelled
CI / Run itests-2 (push) Has been cancelled
CI / Run itests-3 (push) Has been cancelled
CI / Run itests-4 (push) Has been cancelled
CI / Run itests-5 (push) Has been cancelled
CI / Run itests-6 (push) Has been cancelled
CI / Run itests-7 (push) Has been cancelled
CI / Run windows itest (push) Has been cancelled
CI / Run macOS itest (push) Has been cancelled
CI / Check pinned dependencies (push) Has been cancelled
CI / Check pinned dependencies-1 (push) Has been cancelled
CI / Check release notes updated (push) Has been cancelled
CI / Backwards compatibility test (push) Has been cancelled
CI / Cache Cleanup (push) Has been cancelled
CI / Send coverage report (push) Has been cancelled

docs: move gossip bounds note to v0.21.2
This commit is contained in:
Olaoluwa Osuntokun 2026-08-03 15:20:44 -07:00 committed by GitHub
commit afdfd19484
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 11 additions and 11 deletions

View file

@ -43,6 +43,16 @@
v0.20-era mandatory version so the v0.21 waiting proof migration runs
without replaying older migrations against an already-initialized database.
* [Bounded the memory used while syncing the channel
graph](https://github.com/lightningnetwork/lnd/pull/10992). A peer replying
to our `query_channel_range` could previously make us buffer an
unpredictable number of short channel IDs, as the only limit was a coarse
67MB cap on the bytes a single zlib-compressed reply could decompress to.
Replies are now capped at a precise number of short channel IDs, both
per-message and in aggregate across a single query, and the accumulated
reply state is released as soon as any reply fails validation so that a
peer cannot pin it by deliberately forcing an error.
# New Features
## Functional Enhancements
@ -107,3 +117,4 @@
* bitromortac
* Jared Tobin
* Olaoluwa Osuntokun

View file

@ -55,16 +55,6 @@
the reported network statistics such as total network capacity, channel
count and max out degree.
* [Bounded the memory used while syncing the channel
graph](https://github.com/lightningnetwork/lnd/pull/10992). A peer replying
to our `query_channel_range` could previously make us buffer an
unpredictable number of short channel IDs, as the only limit was a coarse
67MB cap on the bytes a single zlib-compressed reply could decompress to.
Replies are now capped at a precise number of short channel IDs, both
per-message and in aggregate across a single query, and the accumulated
reply state is released as soon as any reply fails validation so that a
peer cannot pin it by deliberately forcing an error.
# New Features
## Functional Enhancements
@ -169,4 +159,3 @@
* Boris Nagaev
* Erick Cestari
* Jared Tobin
* Olaoluwa Osuntokun