Skip to content

Commit 3546592

Browse files
committed
deps: chantools v0.14.1, lnc v0.3.4-alpha
1 parent 241d11d commit 3546592

File tree

11 files changed

+200
-117
lines changed

11 files changed

+200
-117
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# If you change this please also update GO_VERSION in Makefile (then run
22
# `make lint` to see where else it needs to be updated as well).
3-
FROM golang:1.23.12-alpine as builder
3+
FROM golang:1.24.2-alpine as builder
44

55
# Force Go to use the cgo based DNS resolver. This is required to ensure DNS
66
# queries required to connect to linked containers succeed.

dev.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# If you change this please also update GO_VERSION in Makefile (then run
22
# `make lint` to see where else it needs to be updated as well).
3-
FROM golang:1.23.12-alpine AS builder
3+
FROM golang:1.24.2-alpine AS builder
44

55
LABEL maintainer="Olaoluwa Osuntokun <laolu@lightning.engineering>"
66

docker/btcd/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# If you change this please also update GO_VERSION in Makefile (then run
22
# `make lint` to see where else it needs to be updated as well).
3-
FROM golang:1.23.12-alpine as builder
3+
FROM golang:1.24.2-alpine as builder
44

55
LABEL maintainer="Olaoluwa Osuntokun <laolu@lightning.engineering>"
66

go.mod

Lines changed: 43 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ require (
99
github.com/btcsuite/btcd v0.24.3-0.20250318170759-4f4ea81776d6
1010
github.com/btcsuite/btcd/btcec/v2 v2.3.4
1111
github.com/btcsuite/btcd/btcutil v1.1.5
12-
github.com/btcsuite/btcd/btcutil/psbt v1.1.8
12+
github.com/btcsuite/btcd/btcutil/psbt v1.1.10
1313
github.com/btcsuite/btcd/chaincfg/chainhash v1.1.0
1414
github.com/btcsuite/btclog v0.0.0-20241003133417-09c4e92e319c
1515
github.com/btcsuite/btclog/v2 v2.0.1-0.20250728225537-6090e87c6c5b
@@ -22,12 +22,11 @@ require (
2222
github.com/davecgh/go-spew v1.1.1
2323
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0
2424
github.com/gabstv/go-bsdiff v1.0.5
25-
github.com/go-errors/errors v1.4.2
2625
github.com/go-logr/logr v1.4.2 // indirect
2726
github.com/go-logr/stdr v1.2.2 // indirect
2827
github.com/golang/protobuf v1.5.4
2928
github.com/gorilla/websocket v1.5.0
30-
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0
29+
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0
3130
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0
3231
github.com/grpc-ecosystem/grpc-gateway/v2 v2.22.0
3332
github.com/jackc/pgx/v4 v4.18.2
@@ -37,8 +36,7 @@ require (
3736
github.com/jessevdk/go-flags v1.5.0
3837
github.com/jrick/logrotate v1.1.2
3938
github.com/kkdai/bstream v1.0.0
40-
github.com/lightninglabs/chantools v0.13.5
41-
github.com/lightninglabs/lightning-node-connect v0.3.1-alpha
39+
github.com/lightninglabs/chantools v0.14.1
4240
github.com/lightninglabs/lightning-terminal v0.10.5-alpha
4341
github.com/lightninglabs/neutrino v0.16.1
4442
github.com/lightninglabs/neutrino/cache v1.1.2
@@ -55,22 +53,22 @@ require (
5553
github.com/lightningnetwork/lnd/tor v1.1.6
5654
github.com/ltcsuite/ltcd v0.22.1-beta
5755
github.com/miekg/dns v1.1.50
58-
github.com/pkg/errors v0.9.1
56+
github.com/pkg/errors v0.9.1 // indirect
5957
github.com/prometheus/client_golang v1.14.0
6058
github.com/stretchr/testify v1.10.0
6159
github.com/tv42/zbase32 v0.0.0-20220222190657-f76a9fc892fa
62-
github.com/urfave/cli v1.22.9
60+
github.com/urfave/cli v1.22.14
6361
go.etcd.io/bbolt v1.3.11
6462
go.etcd.io/etcd/client/pkg/v3 v3.5.12
6563
go.etcd.io/etcd/client/v3 v3.5.12
6664
go.opentelemetry.io/otel/metric v1.36.0 // indirect
67-
golang.org/x/crypto v0.31.0
65+
golang.org/x/crypto v0.36.0
6866
golang.org/x/exp v0.0.0-20240325151524-a685a6edb6d8
6967
golang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028
70-
golang.org/x/net v0.27.0
71-
golang.org/x/sync v0.10.0
72-
golang.org/x/term v0.27.0
73-
golang.org/x/time v0.3.0
68+
golang.org/x/net v0.38.0
69+
golang.org/x/sync v0.12.0
70+
golang.org/x/term v0.30.0
71+
golang.org/x/time v0.5.0
7472
google.golang.org/grpc v1.65.0
7573
google.golang.org/protobuf v1.34.2
7674
gopkg.in/macaroon-bakery.v2 v2.3.0
@@ -79,9 +77,9 @@ require (
7977
)
8078

8179
require (
82-
dario.cat/mergo v1.0.0 // indirect
80+
dario.cat/mergo v1.0.1 // indirect
8381
github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 // indirect
84-
github.com/Microsoft/go-winio v0.6.1 // indirect
82+
github.com/Microsoft/go-winio v0.6.2 // indirect
8583
github.com/NebulousLabs/fastrand v0.0.0-20181203155948-6fb6489aac4e // indirect
8684
github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5 // indirect
8785
github.com/aead/chacha20 v0.0.0-20180709150244-8b13a72661da // indirect
@@ -100,19 +98,19 @@ require (
10098
github.com/decred/dcrd/crypto/blake256 v1.0.1 // indirect
10199
github.com/decred/dcrd/lru v1.1.2 // indirect
102100
github.com/distribution/reference v0.6.0 // indirect
103-
github.com/docker/cli v27.1.1+incompatible // indirect
104-
github.com/docker/docker v27.1.1+incompatible // indirect
105-
github.com/docker/go-connections v0.4.0 // indirect
101+
github.com/docker/cli v28.0.1+incompatible // indirect
102+
github.com/docker/docker v28.0.1+incompatible // indirect
103+
github.com/docker/go-connections v0.5.0 // indirect
106104
github.com/docker/go-units v0.5.0 // indirect
107105
github.com/dsnet/compress v0.0.1 // indirect
108106
github.com/dustin/go-humanize v1.0.1 // indirect
109107
github.com/fatih/color v1.15.0 // indirect
110108
github.com/fergusstrange/embedded-postgres v1.25.0 // indirect
111109
github.com/fsnotify/fsnotify v1.5.4 // indirect
112110
github.com/go-macaroon-bakery/macaroonpb v1.0.0 // indirect
113-
github.com/go-viper/mapstructure/v2 v2.0.0 // indirect
111+
github.com/go-viper/mapstructure/v2 v2.3.0 // indirect
114112
github.com/gogo/protobuf v1.3.2 // indirect
115-
github.com/golang-jwt/jwt/v4 v4.5.1 // indirect
113+
github.com/golang-jwt/jwt/v4 v4.5.2 // indirect
116114
github.com/golang-migrate/migrate/v4 v4.17.0 // indirect
117115
github.com/golang/snappy v0.0.4 // indirect
118116
github.com/google/btree v1.1.2 // indirect
@@ -121,7 +119,6 @@ require (
121119
github.com/grpc-ecosystem/grpc-gateway v1.16.0 // indirect
122120
github.com/hashicorp/errwrap v1.1.0 // indirect
123121
github.com/hashicorp/go-multierror v1.1.1 // indirect
124-
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
125122
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
126123
github.com/jackc/pgconn v1.14.3 // indirect
127124
github.com/jackc/pgerrcode v0.0.0-20240316143900-6e2875d9b438 // indirect
@@ -141,8 +138,8 @@ require (
141138
github.com/lightninglabs/gozmq v0.0.0-20191113021534-d20a764486bf // indirect
142139
github.com/lightninglabs/lightning-node-connect/hashmailrpc v1.0.2 // indirect
143140
github.com/lightninglabs/loop/looprpc v1.0.0 // indirect
144-
github.com/lightninglabs/loop/swapserverrpc v1.0.11 // indirect
145-
github.com/lightninglabs/pool/auctioneerrpc v1.1.2 // indirect
141+
github.com/lightninglabs/loop/swapserverrpc v1.0.14 // indirect
142+
github.com/lightninglabs/pool/auctioneerrpc v1.1.3 // indirect
146143
github.com/lightninglabs/pool/poolrpc v1.0.0 // indirect
147144
github.com/lightninglabs/taproot-assets v0.2.3 // indirect
148145
github.com/mattn/go-colorable v0.1.13 // indirect
@@ -157,8 +154,8 @@ require (
157154
github.com/ncruces/go-strftime v0.1.9 // indirect
158155
github.com/onsi/gomega v1.26.0 // indirect
159156
github.com/opencontainers/go-digest v1.0.0 // indirect
160-
github.com/opencontainers/image-spec v1.0.2 // indirect
161-
github.com/opencontainers/runc v1.1.14 // indirect
157+
github.com/opencontainers/image-spec v1.1.0 // indirect
158+
github.com/opencontainers/runc v1.2.0 // indirect
162159
github.com/ory/dockertest/v3 v3.10.0 // indirect
163160
github.com/pmezard/go-difflib v1.0.0
164161
github.com/prometheus/client_model v0.4.0 // indirect
@@ -168,7 +165,7 @@ require (
168165
github.com/rivo/uniseg v0.2.0 // indirect
169166
github.com/rogpeppe/fastuuid v1.2.0 // indirect
170167
github.com/russross/blackfriday/v2 v2.1.0 // indirect
171-
github.com/sirupsen/logrus v1.9.2 // indirect
168+
github.com/sirupsen/logrus v1.9.3 // indirect
172169
github.com/soheilhy/cmux v0.1.5 // indirect
173170
github.com/spf13/pflag v1.0.5 // indirect
174171
github.com/stretchr/objx v0.5.2 // indirect
@@ -188,40 +185,40 @@ require (
188185
go.etcd.io/etcd/pkg/v3 v3.5.12 // indirect
189186
go.etcd.io/etcd/raft/v3 v3.5.12 // indirect
190187
go.etcd.io/etcd/server/v3 v3.5.12 // indirect
191-
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.46.1 // indirect
188+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect
192189
go.opentelemetry.io/otel v1.36.0 // indirect
193-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.22.0 // indirect
190+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.29.0 // indirect
194191
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.22.0 // indirect
195192
go.opentelemetry.io/otel/sdk v1.36.0 // indirect
196193
go.opentelemetry.io/otel/trace v1.36.0 // indirect
197-
go.opentelemetry.io/proto/otlp v1.0.0 // indirect; indirec
194+
go.opentelemetry.io/proto/otlp v1.3.1 // indirect; indirec
198195
go.uber.org/atomic v1.10.0 // indirect
199196
go.uber.org/multierr v1.9.0 // indirect
200197
go.uber.org/zap v1.24.0 // indirect
201-
golang.org/x/mod v0.17.0 // indirect
198+
golang.org/x/mod v0.21.0 // indirect
202199
golang.org/x/sys v0.33.0 // indirect
203-
golang.org/x/text v0.21.0 // indirect
204-
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d // indirect
205-
google.golang.org/genproto v0.0.0-20231016165738-49dd2c1f3d0b // indirect
200+
golang.org/x/text v0.23.0 // indirect
201+
golang.org/x/tools v0.24.0 // indirect
202+
google.golang.org/genproto v0.0.0-20240213162025-012b6fc9bca9 // indirect
206203
google.golang.org/genproto/googleapis/api v0.0.0-20240814211410-ddb44dafa142 // indirect
207204
google.golang.org/genproto/googleapis/rpc v0.0.0-20240814211410-ddb44dafa142 // indirect
208205
gopkg.in/errgo.v1 v1.0.1 // indirect
209206
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
210207
gopkg.in/yaml.v2 v2.4.0 // indirect
211208
gopkg.in/yaml.v3 v3.0.1 // indirect
212-
modernc.org/gc/v3 v3.0.0-20240107210532-573471604cb6 // indirect
213-
modernc.org/libc v1.49.3 // indirect
209+
modernc.org/libc v1.55.3 // indirect
214210
modernc.org/mathutil v1.6.0 // indirect
215211
modernc.org/memory v1.8.0 // indirect
216-
modernc.org/sqlite v1.29.10 // indirect
217-
modernc.org/strutil v1.2.0 // indirect
218-
modernc.org/token v1.1.0 // indirect
212+
modernc.org/sqlite v1.34.5 // indirect
219213
nhooyr.io/websocket v1.8.7 // indirect
220214
sigs.k8s.io/yaml v1.3.0 // indirect
221215
)
222216

217+
require github.com/lightninglabs/lightning-node-connect/mailbox v1.0.1
218+
223219
require (
224-
github.com/lightningnetwork/lnd/fn v1.2.3 // indirect
220+
github.com/lightninglabs/lightning-node-connect/gbn v1.0.0 // indirect
221+
github.com/moby/sys/user v0.3.0 // indirect
225222
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
226223
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.61.0 // indirect
227224
)
@@ -248,9 +245,16 @@ replace github.com/lightninglabs/neutrino => github.com/djkazic/neutrino v0.16.1
248245
// New import/rescan functionality
249246
replace github.com/btcsuite/btcwallet => github.com/ZeusLN/btcwallet v0.16.13-zeus
250247

248+
// Exclude the old monolithic lightning-node-connect module
249+
exclude github.com/lightninglabs/lightning-node-connect v0.1.12-alpha
250+
251+
exclude github.com/lightninglabs/lightning-node-connect v0.2.5-alpha
252+
251253
// If you change this please also update docs/INSTALL.md and GO_VERSION in
252254
// Makefile (then run `make lint` to see where else it needs to be updated as
253255
// well).
254-
go 1.23.12
256+
go 1.24.2
257+
258+
toolchain go1.24.3
255259

256260
retract v0.0.2

0 commit comments

Comments
 (0)