Skip to content

Commit 54f007d

Browse files
authored
Merge pull request #1130 from lightninglabs/update-to-lnd-18-4
[custom channels]: update to unmerged release branch of lnd 0.18.4-beta
2 parents eeadc03 + 6420706 commit 54f007d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+1105
-893
lines changed

.github/workflows/main.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ env:
1919
# go needs absolute directories, using the $HOME variable doesn't work here.
2020
GOPATH: /home/runner/work/go
2121

22-
GO_VERSION: '1.22.3'
22+
GO_VERSION: '1.22.6'
2323

24-
LITD_ITEST_BRANCH: '0-19-staging'
24+
LITD_ITEST_BRANCH: 'update-to-lnd-18-4'
2525

2626
jobs:
2727
#######################

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ defaults:
1010
shell: bash
1111

1212
env:
13-
GO_VERSION: 1.22.3
13+
GO_VERSION: 1.22.6
1414

1515
jobs:
1616
main:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.22.3-alpine as builder
1+
FROM golang:1.22.6-alpine as builder
22

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

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ DOCKER_TOOLS = docker run \
5858
-v $(shell bash -c "go env GOMODCACHE || (mkdir -p /tmp/go-modcache; echo /tmp/go-modcache)"):/tmp/build/.modcache \
5959
-v $$(pwd):/build taproot-assets-tools
6060

61-
GO_VERSION = 1.22.3
61+
GO_VERSION = 1.22.6
6262

6363
GREEN := "\\033[0;32m"
6464
NC := "\\033[0m"

dev.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.22.3 as builder
1+
FROM golang:1.22.6 as builder
22

33
WORKDIR /app
44

docs/examples/basic-price-oracle/go.mod

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
module basic-price-oracle
22

3-
go 1.22
4-
5-
toolchain go1.22.3
3+
go 1.22.6
64

75
replace (
86
github.com/lightninglabs/taproot-assets => ../../../
@@ -13,7 +11,7 @@ replace (
1311
)
1412

1513
require (
16-
github.com/lightninglabs/taproot-assets v0.0.0
14+
github.com/lightninglabs/taproot-assets v0.4.2-0.20241021185901-36a85b65b2b0
1715
github.com/sirupsen/logrus v1.9.2
1816
google.golang.org/grpc v1.59.0
1917
)
@@ -25,18 +23,18 @@ require (
2523
github.com/aead/chacha20 v0.0.0-20180709150244-8b13a72661da // indirect
2624
github.com/aead/siphash v1.0.1 // indirect
2725
github.com/beorn7/perks v1.0.1 // indirect
28-
github.com/btcsuite/btcd v0.24.2-beta.rc1.0.20240403021926-ae5533602c46 // indirect
29-
github.com/btcsuite/btcd/btcec/v2 v2.3.3 // indirect
26+
github.com/btcsuite/btcd v0.24.3-0.20240921052913-67b8efd3ba53 // indirect
27+
github.com/btcsuite/btcd/btcec/v2 v2.3.4 // indirect
3028
github.com/btcsuite/btcd/btcutil v1.1.5 // indirect
3129
github.com/btcsuite/btcd/btcutil/psbt v1.1.8 // indirect
3230
github.com/btcsuite/btcd/chaincfg/chainhash v1.1.0 // indirect
3331
github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f // indirect
34-
github.com/btcsuite/btcwallet v0.16.10-0.20240410030101-6fe19a472a62 // indirect
35-
github.com/btcsuite/btcwallet/wallet/txauthor v1.3.4 // indirect
36-
github.com/btcsuite/btcwallet/wallet/txrules v1.2.1 // indirect
37-
github.com/btcsuite/btcwallet/wallet/txsizes v1.2.4 // indirect
38-
github.com/btcsuite/btcwallet/walletdb v1.4.2 // indirect
39-
github.com/btcsuite/btcwallet/wtxmgr v1.5.3 // indirect
32+
github.com/btcsuite/btcwallet v0.16.10-0.20240912233857-ffb143c77cc5 // indirect
33+
github.com/btcsuite/btcwallet/wallet/txauthor v1.3.5 // indirect
34+
github.com/btcsuite/btcwallet/wallet/txrules v1.2.2 // indirect
35+
github.com/btcsuite/btcwallet/wallet/txsizes v1.2.5 // indirect
36+
github.com/btcsuite/btcwallet/walletdb v1.4.4 // indirect
37+
github.com/btcsuite/btcwallet/wtxmgr v1.5.4 // indirect
4038
github.com/btcsuite/go-socks v0.0.0-20170105172521-4720035b7bfd // indirect
4139
github.com/btcsuite/websocket v0.0.0-20150119174127-31079b680792 // indirect
4240
github.com/btcsuite/winsvc v1.0.0 // indirect
@@ -50,7 +48,7 @@ require (
5048
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0 // indirect
5149
github.com/decred/dcrd/lru v1.1.2 // indirect
5250
github.com/docker/cli v20.10.17+incompatible // indirect
53-
github.com/docker/docker v24.0.7+incompatible // indirect
51+
github.com/docker/docker v24.0.9+incompatible // indirect
5452
github.com/docker/go-connections v0.4.0 // indirect
5553
github.com/docker/go-units v0.5.0 // indirect
5654
github.com/dustin/go-humanize v1.0.1 // indirect
@@ -84,25 +82,27 @@ require (
8482
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
8583
github.com/jackc/pgtype v1.14.0 // indirect
8684
github.com/jackc/pgx/v4 v4.18.2 // indirect
85+
github.com/jackc/pgx/v5 v5.5.4 // indirect
86+
github.com/jackc/puddle/v2 v2.2.1 // indirect
8787
github.com/jessevdk/go-flags v1.4.0 // indirect
8888
github.com/jonboulle/clockwork v0.2.2 // indirect
89-
github.com/jrick/logrotate v1.0.0 // indirect
89+
github.com/jrick/logrotate v1.1.2 // indirect
9090
github.com/json-iterator/go v1.1.12 // indirect
9191
github.com/juju/loggo v0.0.0-20210728185423-eebad3a902c4 // indirect
9292
github.com/kkdai/bstream v1.0.0 // indirect
9393
github.com/lib/pq v1.10.9 // indirect
9494
github.com/lightninglabs/gozmq v0.0.0-20191113021534-d20a764486bf // indirect
95-
github.com/lightninglabs/lndclient v1.0.1-0.20240725080034-64a756aa4c36 // indirect
95+
github.com/lightninglabs/lndclient v0.18.4-0 // indirect
9696
github.com/lightninglabs/neutrino v0.16.1-0.20240425105051-602843d34ffd // indirect
9797
github.com/lightninglabs/neutrino/cache v1.1.2 // indirect
98-
github.com/lightningnetwork/lightning-onion v1.2.1-0.20230823005744-06182b1d7d2f // indirect
99-
github.com/lightningnetwork/lnd v0.18.0-beta.rc4.0.20240919091721-70580403898e // indirect
98+
github.com/lightningnetwork/lightning-onion v1.2.1-0.20240712235311-98bd56499dfb // indirect
99+
github.com/lightningnetwork/lnd v0.18.3-beta.rc3.0.20241021112623-6f0d7f9a87d3 // indirect
100100
github.com/lightningnetwork/lnd/clock v1.1.1 // indirect
101-
github.com/lightningnetwork/lnd/fn v1.1.0 // indirect
102-
github.com/lightningnetwork/lnd/healthcheck v1.2.4 // indirect
103-
github.com/lightningnetwork/lnd/kvdb v1.4.8 // indirect
101+
github.com/lightningnetwork/lnd/fn v1.2.1 // indirect
102+
github.com/lightningnetwork/lnd/healthcheck v1.2.5 // indirect
103+
github.com/lightningnetwork/lnd/kvdb v1.4.10 // indirect
104104
github.com/lightningnetwork/lnd/queue v1.1.1 // indirect
105-
github.com/lightningnetwork/lnd/sqldb v1.0.2 // indirect
105+
github.com/lightningnetwork/lnd/sqldb v1.0.4 // indirect
106106
github.com/lightningnetwork/lnd/ticker v1.1.1 // indirect
107107
github.com/lightningnetwork/lnd/tlv v1.2.6 // indirect
108108
github.com/lightningnetwork/lnd/tor v1.1.2 // indirect
@@ -117,7 +117,7 @@ require (
117117
github.com/ncruces/go-strftime v0.1.9 // indirect
118118
github.com/opencontainers/go-digest v1.0.0 // indirect
119119
github.com/opencontainers/image-spec v1.0.2 // indirect
120-
github.com/opencontainers/runc v1.1.12 // indirect
120+
github.com/opencontainers/runc v1.1.14 // indirect
121121
github.com/ory/dockertest/v3 v3.10.0 // indirect
122122
github.com/pkg/errors v0.9.1 // indirect
123123
github.com/pmezard/go-difflib v1.0.0 // indirect
@@ -138,30 +138,30 @@ require (
138138
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
139139
github.com/xi2/xz v0.0.0-20171230120015-48954b6210f8 // indirect
140140
github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2 // indirect
141-
go.etcd.io/bbolt v1.3.8 // indirect
141+
go.etcd.io/bbolt v1.3.11 // indirect
142142
go.etcd.io/etcd/api/v3 v3.5.12 // indirect
143143
go.etcd.io/etcd/client/pkg/v3 v3.5.12 // indirect
144144
go.etcd.io/etcd/client/v2 v2.305.12 // indirect
145145
go.etcd.io/etcd/client/v3 v3.5.12 // indirect
146146
go.etcd.io/etcd/pkg/v3 v3.5.12 // indirect
147147
go.etcd.io/etcd/raft/v3 v3.5.12 // indirect
148148
go.etcd.io/etcd/server/v3 v3.5.12 // indirect
149-
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.46.0 // indirect
150-
go.opentelemetry.io/otel v1.20.0 // indirect
149+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.46.1 // indirect
150+
go.opentelemetry.io/otel v1.21.0 // indirect
151151
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.20.0 // indirect
152152
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.20.0 // indirect
153-
go.opentelemetry.io/otel/metric v1.20.0 // indirect
154-
go.opentelemetry.io/otel/sdk v1.20.0 // indirect
155-
go.opentelemetry.io/otel/trace v1.20.0 // indirect
153+
go.opentelemetry.io/otel/metric v1.21.0 // indirect
154+
go.opentelemetry.io/otel/sdk v1.21.0 // indirect
155+
go.opentelemetry.io/otel/trace v1.21.0 // indirect
156156
go.opentelemetry.io/proto/otlp v1.0.0 // indirect
157157
go.uber.org/atomic v1.10.0 // indirect
158158
go.uber.org/multierr v1.6.0 // indirect
159159
go.uber.org/zap v1.23.0 // indirect
160160
golang.org/x/crypto v0.22.0 // indirect
161161
golang.org/x/exp v0.0.0-20240325151524-a685a6edb6d8 // indirect
162162
golang.org/x/mod v0.16.0 // indirect
163-
golang.org/x/net v0.23.0 // indirect
164-
golang.org/x/sync v0.6.0 // indirect
163+
golang.org/x/net v0.24.0 // indirect
164+
golang.org/x/sync v0.7.0 // indirect
165165
golang.org/x/sys v0.19.0 // indirect
166166
golang.org/x/term v0.19.0 // indirect
167167
golang.org/x/text v0.14.0 // indirect

0 commit comments

Comments
 (0)