Merge pull request #1320 from ViktorT-11/2026-06-cut-v0_17_rc1
Some checks failed
CI / frontend tests on macOS-latest (push) Has been cancelled
CI / frontend tests on ubuntu-latest (push) Has been cancelled
CI / frontend tests on windows-latest (push) Has been cancelled
CI / backend build on macOS-latest (push) Has been cancelled
CI / backend build on ubuntu-latest (push) Has been cancelled
CI / backend build on windows-latest (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 / RPC proto compilation check (push) Has been cancelled
CI / check commits (push) Has been cancelled
CI / Sqlc check (push) Has been cancelled
CI / lint (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 / build itest binaries (push) Has been cancelled
CI / check release notes updated (push) Has been cancelled
CI / integration test (push) Has been cancelled
CI / integration test-1 (push) Has been cancelled
CI / integration test-2 (push) Has been cancelled

Prepare for litd `v0.17.0-alpha.rc1` release
This commit is contained in:
Viktor Torstensson 2026-06-09 20:31:35 +02:00 committed by GitHub
commit 1903010be5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 7 additions and 12 deletions

View file

@ -152,10 +152,11 @@ func kvdbToSqlProgrammaticMigration(ctx context.Context,
// We'll fetch the macaroonIDList from `lnd` next. Note that since lnd's
// RPC servers may not have been fully started yet if the execution of
// accounts and session migration were really quick, we poll the request
// up to 10 times with a 0.5 second delay between the attempts. This
// should be a sufficient amount of time for the RPC servers to start.
// up to 120 times with a 0.5 second delay between the attempts. This
// should be a sufficient amount of time for the wallet to have been
// loaded and for the RPC servers to started.
const (
maxListMacaroonIDAttempts = 10
maxListMacaroonIDAttempts = 120
listMacaroonIDRetryDelay = 500 * time.Millisecond
)

View file

@ -100,12 +100,6 @@
### Pool
* Updated [`pool` to
`v0.7.0-beta`](https://github.com/lightninglabs/lightning-terminal/pull/1313),
which includes a fix for the auctioneer subscription stream silently
dying on EOF, jittered reconnect backoff, and a fix for stream
handling in the pending-open-channel consumer.
* Updated [`pool` to
`v0.7.1-beta`](https://github.com/lightninglabs/lightning-terminal/pull/1314),
which includes a fix for `HandleServerShutdown` silently dropping

View file

@ -34,12 +34,12 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmn" +
// versioning 2.0.0 spec (http://semver.org/).
const (
appMajor uint = 0
appMinor uint = 16
appPatch uint = 1
appMinor uint = 17
appPatch uint = 0
// appPreRelease MUST only contain characters from semanticAlphabet per
// the semantic versioning spec.
appPreRelease = "alpha"
appPreRelease = "alpha.rc1"
)
// Version returns the application version as a properly formed string per the