Skip to content

Commit ac4be79

Browse files
Merge pull request #750 from ViktorTigerstrom/2024-04-litd-v0_12_5-alpha
Bump litd to version `v0.12.5-alpha`
2 parents 9b9bf4e + 397502e commit ac4be79

File tree

4 files changed

+62
-63
lines changed

4 files changed

+62
-63
lines changed

README.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -66,16 +66,19 @@ If you’d prefer to compile from source code please follow [these instructions]
6666

6767
## Compatibility
6868

69-
Full Lightning Terminal functionality can be dependent on running a certain
70-
version of `lnd`. View the table below to ensure that you run the correct
69+
Full Lightning Terminal functionality can be dependent on running a compatible
70+
version of `lnd`. View the table below to ensure that you run a compatible
7171
version of `lnd` with the relevant `litd` release.
7272

73-
This version compatibility dependency is only relevant for running remote mode
74-
`litd`. The bundled version will always come with the correct, [compatible
75-
versioning](#daemon-versions-packaged-with-lit).
73+
This version compatibility dependency table is only relevant when running litd
74+
in remote mode (meaning that `lnd-mode=remote` is set). It shows the
75+
**_minimum_** `lnd` version that can be used with different versions of `litd`
76+
(LiT). The bundled version will always come with the correct,
77+
[compatible versioning](#daemon-versions-packaged-with-lit).
7678

7779
| LiT | LND |
7880
|-------------------|--------------|
81+
| **v0.12.5-alpha** | v0.17.0-beta |
7982
| **v0.12.4-alpha** | v0.17.0-beta |
8083
| **v0.12.3-alpha** | v0.16.0-beta |
8184
| **v0.12.2-alpha** | v0.16.0-beta |
@@ -152,6 +155,7 @@ The following table shows the supported combinations:
152155

153156
| LiT | LND | Loop | Faraday | Pool | Taproot Assets |
154157
|-------------------|--------------|--------------|---------------|--------------|----------------|
158+
| **v0.12.5-alpha** | v0.17.5-beta | v0.28.1-beta | v0.2.13-alpha | v0.6.4-beta | v0.3.3-alpha |
155159
| **v0.12.4-alpha** | v0.17.4-beta | v0.28.0-beta | v0.2.13-alpha | v0.6.4-beta | v0.3.3-alpha |
156160
| **v0.12.3-alpha** | v0.17.4-beta | v0.27.0-beta | v0.2.11-alpha | v0.6.4-beta | v0.3.3-alpha |
157161
| **v0.12.2-alpha** | v0.17.3-beta | v0.26.6-beta | v0.2.11-alpha | v0.6.4-beta | v0.3.2-alpha |

go.mod

Lines changed: 16 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module github.com/lightninglabs/lightning-terminal
22

33
require (
4-
github.com/btcsuite/btcd v0.24.1-0.20240123000108-62e6af035ec5
4+
github.com/btcsuite/btcd v0.24.2-beta.rc1.0.20240403021926-ae5533602c46
55
github.com/btcsuite/btcd/btcec/v2 v2.3.2
66
github.com/btcsuite/btcd/btcutil v1.1.5
77
github.com/btcsuite/btcd/chaincfg/chainhash v1.1.0
@@ -15,12 +15,12 @@ require (
1515
github.com/lightninglabs/lightning-node-connect v0.3.1-alpha
1616
github.com/lightninglabs/lightning-terminal/autopilotserverrpc v0.0.1
1717
github.com/lightninglabs/lndclient v0.17.4-1
18-
github.com/lightninglabs/loop v0.28.0-beta
18+
github.com/lightninglabs/loop v0.28.1-beta
1919
github.com/lightninglabs/loop/swapserverrpc v1.0.7
2020
github.com/lightninglabs/pool v0.6.4-beta.0.20231003174306-80d8854a0c4b
2121
github.com/lightninglabs/pool/auctioneerrpc v1.1.1
2222
github.com/lightninglabs/taproot-assets v0.3.3
23-
github.com/lightningnetwork/lnd v0.17.4-beta
23+
github.com/lightningnetwork/lnd v0.17.5-beta
2424
github.com/lightningnetwork/lnd/cert v1.2.2
2525
github.com/lightningnetwork/lnd/kvdb v1.4.4
2626
github.com/lightningnetwork/lnd/tlv v1.1.1
@@ -32,7 +32,7 @@ require (
3232
go.etcd.io/bbolt v1.3.7
3333
golang.org/x/crypto v0.21.0
3434
golang.org/x/net v0.23.0
35-
golang.org/x/sync v0.3.0
35+
golang.org/x/sync v0.6.0
3636
google.golang.org/grpc v1.59.0
3737
google.golang.org/protobuf v1.33.0
3838
gopkg.in/macaroon-bakery.v2 v2.1.0
@@ -100,6 +100,7 @@ require (
100100
github.com/grpc-ecosystem/grpc-gateway v1.16.0 // indirect
101101
github.com/hashicorp/errwrap v1.1.0 // indirect
102102
github.com/hashicorp/go-multierror v1.1.1 // indirect
103+
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
103104
github.com/imdario/mergo v0.3.13 // indirect
104105
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
105106
github.com/jackc/pgconn v1.14.3 // indirect
@@ -118,7 +119,6 @@ require (
118119
github.com/jrick/logrotate v1.0.0 // indirect
119120
github.com/json-iterator/go v1.1.12 // indirect
120121
github.com/juju/loggo v0.0.0-20210728185423-eebad3a902c4 // indirect
121-
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
122122
github.com/kkdai/bstream v1.0.0 // indirect
123123
github.com/klauspost/compress v1.15.9 // indirect
124124
github.com/klauspost/cpuid/v2 v2.2.3 // indirect
@@ -146,6 +146,7 @@ require (
146146
github.com/moby/term v0.5.0 // indirect
147147
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
148148
github.com/modern-go/reflect2 v1.0.2 // indirect
149+
github.com/ncruces/go-strftime v0.1.9 // indirect
149150
github.com/nwaples/rardecode v1.1.2 // indirect
150151
github.com/opencontainers/go-digest v1.0.0 // indirect
151152
github.com/opencontainers/image-spec v1.0.2 // indirect
@@ -199,30 +200,27 @@ require (
199200
go.uber.org/atomic v1.10.0 // indirect
200201
go.uber.org/multierr v1.6.0 // indirect
201202
go.uber.org/zap v1.23.0 // indirect
202-
golang.org/x/exp v0.0.0-20230315142452-642cacee5cc0 // indirect
203-
golang.org/x/mod v0.10.0 // indirect
203+
golang.org/x/exp v0.0.0-20231108232855-2478ac86f678 // indirect
204+
golang.org/x/mod v0.14.0 // indirect
204205
golang.org/x/sys v0.18.0 // indirect
205206
golang.org/x/term v0.18.0 // indirect
206207
golang.org/x/text v0.14.0 // indirect
207208
golang.org/x/time v0.3.0 // indirect
208-
golang.org/x/tools v0.9.1 // indirect
209+
golang.org/x/tools v0.17.0 // indirect
209210
google.golang.org/genproto v0.0.0-20230822172742-b8732ec3820d // indirect
210211
google.golang.org/genproto/googleapis/api v0.0.0-20230822172742-b8732ec3820d // indirect
211212
google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d // indirect
212213
gopkg.in/errgo.v1 v1.0.1 // indirect
213214
gopkg.in/natefinch/lumberjack.v2 v2.0.0 // indirect
214215
gopkg.in/yaml.v2 v2.4.0 // indirect
215216
gopkg.in/yaml.v3 v3.0.1 // indirect
216-
lukechampine.com/uint128 v1.2.0 // indirect
217-
modernc.org/cc/v3 v3.40.0 // indirect
218-
modernc.org/ccgo/v3 v3.16.13 // indirect
219-
modernc.org/libc v1.24.1 // indirect
220-
modernc.org/mathutil v1.5.0 // indirect
221-
modernc.org/memory v1.6.0 // indirect
222-
modernc.org/opt v0.1.3 // indirect
223-
modernc.org/sqlite v1.25.0 // indirect
224-
modernc.org/strutil v1.1.3 // indirect
225-
modernc.org/token v1.0.1 // indirect
217+
modernc.org/gc/v3 v3.0.0-20240107210532-573471604cb6 // indirect
218+
modernc.org/libc v1.41.0 // indirect
219+
modernc.org/mathutil v1.6.0 // indirect
220+
modernc.org/memory v1.7.2 // indirect
221+
modernc.org/sqlite v1.29.5 // indirect
222+
modernc.org/strutil v1.2.0 // indirect
223+
modernc.org/token v1.1.0 // indirect
226224
nhooyr.io/websocket v1.8.7 // indirect
227225
sigs.k8s.io/yaml v1.2.0 // indirect
228226
)

0 commit comments

Comments
 (0)