Boris Nagaev
b9832c475a
go.mod: bypass gonum.org domain
...
Probably the domain has blocked our CI by IP address. This commit go-replaced
the packages with their GitHub versions to fix the CI check "go mod check".
2025-11-04 21:58:45 -03:00
sputn1ck
e4f64ec9cc
Revert "Merge pull request #1028 from starius/downgrade-deps"
...
This reverts commit b11c959bc8 , reversing
changes made to 0a182ee308 .
2025-10-31 18:48:26 +01:00
Boris Nagaev
7d58b65a84
go.mod: downgrade deps for litd release
...
lnd v0.19.3-beta
tapd v0.6.1
go 1.23.12 (except in tools/ where golangci-lint needs Go 1.24)
Remove docs generators as cli-docs depends on Go 1.24.
2025-10-31 10:23:52 -03:00
Boris Nagaev
b458c5ebd8
go.mod: fix taproot-assets commit
...
Loop was pinned to commit c44e078c33e0 (tapchannel: support stxo on aux sweeper)
which was merged into "main" branch of taproot-assets as e6ae082c0b4b.
2025-10-14 23:16:10 -03:00
George Tsagkarelis
eac843e968
build: bump deps
2025-10-13 11:08:12 +02:00
Boris Nagaev
15f94234cd
cmd/loop: add commands "loop man", "loop markdown"
...
Produce the documentations in man .1 and markdown formats.
The template for markdown was patched to removed column "Environment variables"
Upstream PR: https://github.com/urfave/cli-docs/pull/15
Also the input has to be pre-processed to remove nested "help" subcommands from
each subcommand to improve readability.
Upstream PR: https://github.com/urfave/cli-docs/pull/16
2025-10-07 16:54:38 -03:00
Boris Nagaev
5e6e789496
cmd/loop: urfave/cli -> urfave/cli/v3
2025-10-07 14:41:02 -03:00
Boris Nagaev
f721459ef0
bump LND to 0.19.3
2025-08-31 23:03:11 -03:00
dependabot[bot]
7cbf765e11
build(deps): bump github.com/go-viper/mapstructure/v2
...
Bumps [github.com/go-viper/mapstructure/v2](https://github.com/go-viper/mapstructure ) from 2.3.0 to 2.4.0.
- [Release notes](https://github.com/go-viper/mapstructure/releases )
- [Changelog](https://github.com/go-viper/mapstructure/blob/main/CHANGELOG.md )
- [Commits](https://github.com/go-viper/mapstructure/compare/v2.3.0...v2.4.0 )
---
updated-dependencies:
- dependency-name: github.com/go-viper/mapstructure/v2
dependency-version: 2.4.0
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com>
2025-08-21 14:52:54 +00:00
Slyghtning
2ed543b0f9
gomod: upgrade go version and golangci
...
go is updated to v1.24.6 and golangci
from v1.64.6 to v2.4.0.
2025-08-19 21:56:59 +02:00
Andras Banki-Horvath
0af425be7b
build: bump Go to v1.23.12
2025-08-07 10:33:09 +02:00
Slyghtning
2f21a488d8
Merge pull request #988 from hieblmi/normalize-deposit-swap
...
staticaddr: migrate deposit swap hashes
2025-08-01 23:07:04 +02:00
Slyghtning
6e7441ba8d
staticaddr: migrate swap hashes to deposits
2025-08-01 11:26:32 +02:00
George Tsagkarelis
408e6d75d0
build: bump tapd
2025-07-31 10:56:12 +02:00
Boris Nagaev
36c5d6cee7
test: golang.org/x/net/context -> context
2025-07-24 02:19:25 -03:00
Andras Banki-Horvath
31f996cb37
build: bump tapd to v0.6.1 and lnd to v0.19.2-beta
2025-07-16 19:05:32 +02:00
dependabot[bot]
c6d5e41438
build(deps): bump github.com/go-viper/mapstructure/v2
...
Bumps [github.com/go-viper/mapstructure/v2](https://github.com/go-viper/mapstructure ) from 2.2.1 to 2.3.0.
- [Release notes](https://github.com/go-viper/mapstructure/releases )
- [Changelog](https://github.com/go-viper/mapstructure/blob/main/CHANGELOG.md )
- [Commits](https://github.com/go-viper/mapstructure/compare/v2.2.1...v2.3.0 )
---
updated-dependencies:
- dependency-name: github.com/go-viper/mapstructure/v2
dependency-version: 2.3.0
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com>
2025-06-27 16:38:10 +00:00
Boris Nagaev
38aaa4d07a
staticaddr: recover withdrawals in parallel
...
Use errgroup to publish each transaction in a separate goroutine.
Publishing a transaction can take a while in neutrino mode.
2025-06-24 01:44:32 -03:00
Oliver Gugger
5d16c50762
multi: bump Go version to v1.23.9
2025-05-26 15:58:07 +02:00
Oliver Gugger
45a83a70dc
mod: bump to latest lnd, aperture and tapd
2025-05-26 15:56:38 +02:00
Oliver Gugger
059186568f
mod: bump tapd, add replace directive to compile tapd
...
Because tapd now uses a fork of the SQL migration library, which can
only be used through a replace directive which isn't populated
transitively to other dependent projects, we now need to copy that
directive to every project.
2025-05-02 09:49:07 +02:00
ffranr
64e6bbd451
perms: move perms.go into looprpc
...
The Lightning Node Connect (LNC) WASM client currently imports both
`looprpc` and the entire `loop` module to access `perms.go`. This
creates problems because `loop` imports `taproot-assets`, resulting in
too many symbols for the WASM build.
To fix this, we will move `perms.go`—which defines RPC endpoint
permissions—into `looprpc`. After this change, the LNC WASM client will
import only `looprpc`, while the rest of `loop` can continue importing
`taproot-assets` without affecting the LNC WASM build.
2025-04-28 12:56:21 -03:00
Oliver Gugger
c70dcc5449
mod+liquidity+test: update to latest lndclient+tapd
...
Required to build litd with the latest lnd+tapd.
2025-04-25 08:38:03 +02:00
dependabot[bot]
1a4ca9e372
build(deps): bump golang.org/x/net from 0.36.0 to 0.38.0
...
Bumps [golang.org/x/net](https://github.com/golang/net ) from 0.36.0 to 0.38.0.
- [Commits](https://github.com/golang/net/compare/v0.36.0...v0.38.0 )
---
updated-dependencies:
- dependency-name: golang.org/x/net
dependency-version: 0.38.0
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com>
2025-04-24 14:36:11 +00:00
Boris Nagaev
1480536132
looprpc: update swapserverrpc to v1.0.13
...
swapserverrpc/v1.0.11 was force-pushed causing build errors with GOPROXY=direct.
Also updated in main go.mod, however it didn't fail, because replace to local
dir is used.
2025-04-24 11:19:59 -03:00
Boris Nagaev
a852596582
go.mod: re-pin taproot-assets to a commit in main
2025-04-24 11:19:59 -03:00
dependabot[bot]
371fcfaf35
build(deps): bump github.com/golang-jwt/jwt/v4 from 4.5.1 to 4.5.2
...
Bumps [github.com/golang-jwt/jwt/v4](https://github.com/golang-jwt/jwt ) from 4.5.1 to 4.5.2.
- [Release notes](https://github.com/golang-jwt/jwt/releases )
- [Changelog](https://github.com/golang-jwt/jwt/blob/main/VERSION_HISTORY.md )
- [Commits](https://github.com/golang-jwt/jwt/compare/v4.5.1...v4.5.2 )
---
updated-dependencies:
- dependency-name: github.com/golang-jwt/jwt/v4
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com>
2025-03-21 22:38:19 +00:00
Boris Nagaev
2249c41d2f
loopdb: switch to go.etcd.io/bbolt
...
github.com/coreos/bbolt has race conditions:
https://github.com/golang/go/issues/54690
2025-03-19 15:00:30 +01:00
dependabot[bot]
c8072e874a
build(deps): bump golang.org/x/net from 0.33.0 to 0.36.0
...
Bumps [golang.org/x/net](https://github.com/golang/net ) from 0.33.0 to 0.36.0.
- [Commits](https://github.com/golang/net/compare/v0.33.0...v0.36.0 )
---
updated-dependencies:
- dependency-name: golang.org/x/net
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com>
2025-03-13 11:51:53 -03:00
Oliver Gugger
722ad8839d
multi: update lnd compile-time dependency to v0.19.0
2025-03-10 22:59:49 +01:00
dependabot[bot]
aa9d398528
build(deps): bump golang.org/x/net from 0.27.0 to 0.33.0
...
Bumps [golang.org/x/net](https://github.com/golang/net ) from 0.27.0 to 0.33.0.
- [Commits](https://github.com/golang/net/compare/v0.27.0...v0.33.0 )
---
updated-dependencies:
- dependency-name: golang.org/x/net
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com>
2025-01-21 18:43:45 +00:00
sputn1ck
1440b6bb1d
loopout: add asset loop out payment flow
2025-01-21 18:26:19 +01:00
sputn1ck
20d5081368
assets: add basic asset client
2025-01-21 14:38:02 +01:00
dependabot[bot]
0021569db1
build(deps): bump golang.org/x/crypto from 0.25.0 to 0.31.0
...
Bumps [golang.org/x/crypto](https://github.com/golang/crypto ) from 0.25.0 to 0.31.0.
- [Commits](https://github.com/golang/crypto/compare/v0.25.0...v0.31.0 )
---
updated-dependencies:
- dependency-name: golang.org/x/crypto
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com>
2024-12-18 14:30:34 +00:00
Slyghtning
c9068ac1ca
gomod: bump looprpc and swapserverrpc version
2024-12-12 18:31:10 +01:00
dependabot[bot]
82cc77a987
build(deps): bump github.com/golang-jwt/jwt/v4 from 4.4.2 to 4.5.1
...
Bumps [github.com/golang-jwt/jwt/v4](https://github.com/golang-jwt/jwt ) from 4.4.2 to 4.5.1.
- [Release notes](https://github.com/golang-jwt/jwt/releases )
- [Changelog](https://github.com/golang-jwt/jwt/blob/main/VERSION_HISTORY.md )
- [Commits](https://github.com/golang-jwt/jwt/compare/v4.4.2...v4.5.1 )
---
updated-dependencies:
- dependency-name: github.com/golang-jwt/jwt/v4
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com>
2024-11-12 21:38:33 +00:00
dependabot[bot]
ac4752f722
build(deps): bump github.com/opencontainers/runc from 1.1.12 to 1.1.14
...
Bumps [github.com/opencontainers/runc](https://github.com/opencontainers/runc ) from 1.1.12 to 1.1.14.
- [Release notes](https://github.com/opencontainers/runc/releases )
- [Changelog](https://github.com/opencontainers/runc/blob/main/CHANGELOG.md )
- [Commits](https://github.com/opencontainers/runc/compare/v1.1.12...v1.1.14 )
---
updated-dependencies:
- dependency-name: github.com/opencontainers/runc
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com>
2024-10-22 07:25:23 +00:00
Oliver Gugger
93525d3edf
multi: bump lnd compile time dependency to v0.18.4-beta
2024-10-22 09:12:31 +02:00
dependabot[bot]
d160112610
build(deps): bump github.com/jackc/pgx/v5 from 5.3.1 to 5.6.0
...
Bumps [github.com/jackc/pgx/v5](https://github.com/jackc/pgx ) from 5.3.1 to 5.6.0.
- [Changelog](https://github.com/jackc/pgx/blob/master/CHANGELOG.md )
- [Commits](https://github.com/jackc/pgx/compare/v5.3.1...v5.6.0 )
---
updated-dependencies:
- dependency-name: github.com/jackc/pgx/v5
dependency-type: indirect
...
The commit was updated by Boris to bump the version to 5.6.0.
2024-09-02 12:30:57 -03:00
Boris Nagaev
6b852c1c0b
go.mod: update btcwallet
...
Update it to the version having symbol chain.ErrInsufficientFee.
2024-08-27 19:26:29 -03:00
Boris Nagaev
54bf02294e
go.mod: update lnd to v0.18.3-beta.rc1
...
This is needed to update btcwallet dependency.
2024-08-27 19:26:29 -03:00
Andras Banki-Horvath
dbc56ff8c9
build: use tagged looprpc v1.0.0
2024-08-21 17:36:09 +02:00
Andras Banki-Horvath
64886dfc66
looprpc: convert looprpc into a versioned module
...
This commit transforms the looprpc subpackage into a versioned module.
By doing so, projects that rely solely on the generated RPC code from
the proto files will benefit from significantly reduced dependencies
during compilation.
2024-08-21 16:46:33 +02:00
Boris Nagaev
1aec52c719
go.mod: update docker and cli to 27.1.1
...
Fix build in https://github.com/lightninglabs/loop/pull/802
2024-08-12 12:29:18 -03:00
dependabot[bot]
fa3b9b3a96
build(deps): bump github.com/docker/docker
...
Bumps [github.com/docker/docker](https://github.com/docker/docker ) from 24.0.9+incompatible to 25.0.6+incompatible.
- [Release notes](https://github.com/docker/docker/releases )
- [Commits](https://github.com/docker/docker/compare/v24.0.9...v25.0.6 )
---
updated-dependencies:
- dependency-name: github.com/docker/docker
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com>
2024-08-12 12:29:18 -03:00
Boris Nagaev
99a0f831b3
go.mod: update LND to v0.18.0-beta.1
...
This is the same as v0.18.0-beta.
2024-06-03 16:36:32 -03:00
Slyghtning
402d9a84df
gomod: bump lnd to version 0.18.0-beta
2024-05-31 09:39:20 +02:00
Andras Banki-Horvath
1ca2542a30
build: bump lnd to v0.18.0-beta.rc3
2024-05-23 10:13:22 +02:00
Boris Nagaev
bfc3f44aa1
update aperture to include lsat to l402 renaming
...
Fix the build:
go mod tidy
sed 's@\<lsat\>@l402@g' -i `git grep -l -w aperture/lsat`
make rpc
2024-04-24 13:28:04 -03:00
Boris Nagaev
b99cde172a
go: bump protobuf to v1.33.0-hex-display
2024-04-24 13:23:50 -03:00