Skip to content

Commit 9980c6b

Browse files
mod: bump lnd, loop, taproot-assets & lnc
Bump lnd to `v0.17.4-beta`, loop to `v0.27.0-beta`, taproot-assets to and `v0.3.3` lightning-node-connect to `v0.3.0-alpha`. This commit also bumps the loop swapserverrpc to `v1.0.6`, as it's required by the new loop version.
1 parent 7226f6c commit 9980c6b

File tree

2 files changed

+425
-43
lines changed

2 files changed

+425
-43
lines changed

go.mod

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

33
require (
4-
github.com/btcsuite/btcd v0.23.5-0.20230905170901-80f5a0ffdf36
4+
github.com/btcsuite/btcd v0.24.1-0.20240123000108-62e6af035ec5
55
github.com/btcsuite/btcd/btcec/v2 v2.3.2
6-
github.com/btcsuite/btcd/btcutil v1.1.4-0.20230904040416-d4f519f5dc05
7-
github.com/btcsuite/btcd/chaincfg/chainhash v1.0.2
6+
github.com/btcsuite/btcd/btcutil v1.1.5
7+
github.com/btcsuite/btcd/chaincfg/chainhash v1.1.0
88
github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f
99
github.com/btcsuite/btcwallet/walletdb v1.4.0
1010
github.com/go-errors/errors v1.0.1
1111
github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.3
1212
github.com/improbable-eng/grpc-web v0.12.0
1313
github.com/jessevdk/go-flags v1.4.0
1414
github.com/lightninglabs/faraday v0.2.11-alpha.0.20231003174141-945b7188032f
15-
github.com/lightninglabs/lightning-node-connect v0.2.7-alpha
15+
github.com/lightninglabs/lightning-node-connect v0.3.0-alpha.0.20240208172904-08e5d9e85972
1616
github.com/lightninglabs/lightning-terminal/autopilotserverrpc v0.0.1
1717
github.com/lightninglabs/lndclient v0.17.0-4
18-
github.com/lightninglabs/loop v0.26.6-beta
19-
github.com/lightninglabs/loop/swapserverrpc v1.0.5
18+
github.com/lightninglabs/loop v0.27.0-beta
19+
github.com/lightninglabs/loop/swapserverrpc v1.0.6
2020
github.com/lightninglabs/pool v0.6.4-beta.0.20231003174306-80d8854a0c4b
2121
github.com/lightninglabs/pool/auctioneerrpc v1.1.1
22-
github.com/lightninglabs/taproot-assets v0.3.2
23-
github.com/lightningnetwork/lnd v0.17.3-beta
22+
github.com/lightninglabs/taproot-assets v0.3.3
23+
github.com/lightningnetwork/lnd v0.17.4-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
@@ -30,7 +30,7 @@ require (
3030
github.com/stretchr/testify v1.8.4
3131
github.com/urfave/cli v1.22.9
3232
go.etcd.io/bbolt v1.3.7
33-
golang.org/x/crypto v0.14.0
33+
golang.org/x/crypto v0.17.0
3434
golang.org/x/net v0.17.0
3535
golang.org/x/sync v0.3.0
3636
google.golang.org/grpc v1.59.0
@@ -51,7 +51,7 @@ require (
5151
github.com/andybalholm/brotli v1.0.4 // indirect
5252
github.com/beorn7/perks v1.0.1 // indirect
5353
github.com/btcsuite/btcd/btcutil/psbt v1.1.8 // indirect
54-
github.com/btcsuite/btcwallet v0.16.10-0.20231129183218-5df09dd43358 // indirect
54+
github.com/btcsuite/btcwallet v0.16.10-0.20240127010340-16b422a2e8bf // indirect
5555
github.com/btcsuite/btcwallet/wallet/txauthor v1.3.2 // indirect
5656
github.com/btcsuite/btcwallet/wallet/txrules v1.2.0 // indirect
5757
github.com/btcsuite/btcwallet/wallet/txsizes v1.2.3 // indirect
@@ -80,6 +80,7 @@ require (
8080
github.com/dsnet/compress v0.0.1 // indirect
8181
github.com/dustin/go-humanize v1.0.1 // indirect
8282
github.com/fergusstrange/embedded-postgres v1.10.0 // indirect
83+
github.com/fortytw2/leaktest v1.3.0 // indirect
8384
github.com/go-logr/logr v1.3.0 // indirect
8485
github.com/go-logr/stdr v1.2.2 // indirect
8586
github.com/gogo/protobuf v1.3.2 // indirect
@@ -91,7 +92,7 @@ require (
9192
github.com/google/btree v1.0.1 // indirect
9293
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
9394
github.com/google/uuid v1.3.1 // indirect
94-
github.com/gorilla/websocket v1.4.2 // indirect
95+
github.com/gorilla/websocket v1.5.0 // indirect
9596
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 // indirect
9697
github.com/grpc-ecosystem/go-grpc-middleware/providers/prometheus v1.0.0-rc.0 // indirect
9798
github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.0.0-rc.3 // indirect
@@ -200,9 +201,9 @@ require (
200201
go.uber.org/zap v1.23.0 // indirect
201202
golang.org/x/exp v0.0.0-20230315142452-642cacee5cc0 // indirect
202203
golang.org/x/mod v0.10.0 // indirect
203-
golang.org/x/sys v0.13.0 // indirect
204-
golang.org/x/term v0.13.0 // indirect
205-
golang.org/x/text v0.13.0 // indirect
204+
golang.org/x/sys v0.15.0 // indirect
205+
golang.org/x/term v0.15.0 // indirect
206+
golang.org/x/text v0.14.0 // indirect
206207
golang.org/x/time v0.3.0 // indirect
207208
golang.org/x/tools v0.9.1 // indirect
208209
google.golang.org/genproto v0.0.0-20230822172742-b8732ec3820d // indirect

0 commit comments

Comments
 (0)