mirror of
https://github.com/juanfont/headscale.git
synced 2026-02-07 20:04:00 +01:00
Update all direct and indirect Go module dependencies to their latest compatible versions. Notable direct dependency updates: - tailscale.com v1.94.0 → v1.94.1 - github.com/coreos/go-oidc/v3 v3.16.0 → v3.17.0 - github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.4 → v2.27.7 - github.com/puzpuzpuz/xsync/v4 v4.3.0 → v4.4.0 - golang.org/x/crypto v0.46.0 → v0.47.0 - golang.org/x/net v0.48.0 → v0.49.0 - google.golang.org/genproto updated to 2025-02-03 Notable indirect dependency updates: - AWS SDK v2 group updated - OpenTelemetry v1.39.0 → v1.40.0 - github.com/jackc/pgx/v5 v5.7.6 → v5.8.0 - github.com/gaissmai/bart v0.18.0 → v0.26.1 Add lockstep comment for gvisor.dev/gvisor noting it must be updated together with tailscale.com, similar to the existing modernc.org/sqlite comment.
241 lines
11 KiB
Modula-2
241 lines
11 KiB
Modula-2
module github.com/juanfont/headscale
|
|
|
|
go 1.25.5
|
|
|
|
require (
|
|
github.com/arl/statsviz v0.8.0
|
|
github.com/cenkalti/backoff/v5 v5.0.3
|
|
github.com/chasefleming/elem-go v0.31.0
|
|
github.com/coder/websocket v1.8.14
|
|
github.com/coreos/go-oidc/v3 v3.17.0
|
|
github.com/creachadair/command v0.2.0
|
|
github.com/creachadair/flax v0.0.5
|
|
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc
|
|
github.com/docker/docker v28.5.2+incompatible
|
|
github.com/fsnotify/fsnotify v1.9.0
|
|
github.com/glebarez/sqlite v1.11.0
|
|
github.com/go-gormigrate/gormigrate/v2 v2.1.5
|
|
github.com/go-json-experiment/json v0.0.0-20251027170946-4849db3c2f7e
|
|
github.com/gofrs/uuid/v5 v5.4.0
|
|
github.com/google/go-cmp v0.7.0
|
|
github.com/gorilla/mux v1.8.1
|
|
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.7
|
|
github.com/jagottsicher/termcolor v1.0.2
|
|
github.com/oauth2-proxy/mockoidc v0.0.0-20240214162133-caebfff84d25
|
|
github.com/ory/dockertest/v3 v3.12.0
|
|
github.com/philip-bui/grpc-zerolog v1.0.1
|
|
github.com/pkg/profile v1.7.0
|
|
github.com/prometheus/client_golang v1.23.2
|
|
github.com/prometheus/common v0.67.5
|
|
github.com/pterm/pterm v0.12.82
|
|
github.com/puzpuzpuz/xsync/v4 v4.4.0
|
|
github.com/rs/zerolog v1.34.0
|
|
github.com/samber/lo v1.52.0
|
|
github.com/sasha-s/go-deadlock v0.3.6
|
|
github.com/spf13/cobra v1.10.2
|
|
github.com/spf13/viper v1.21.0
|
|
github.com/stretchr/testify v1.11.1
|
|
github.com/tailscale/hujson v0.0.0-20250605163823-992244df8c5a
|
|
github.com/tailscale/squibble v0.0.0-20251104223530-a961feffb67f
|
|
github.com/tailscale/tailsql v0.0.0-20260105194658-001575c3ca09
|
|
github.com/tcnksm/go-latest v0.0.0-20170313132115-e3007ae9052e
|
|
go4.org/netipx v0.0.0-20231129151722-fdeea329fbba
|
|
golang.org/x/crypto v0.47.0
|
|
golang.org/x/exp v0.0.0-20260112195511-716be5621a96
|
|
golang.org/x/net v0.49.0
|
|
golang.org/x/oauth2 v0.34.0
|
|
golang.org/x/sync v0.19.0
|
|
google.golang.org/genproto/googleapis/api v0.0.0-20260203192932-546029d2fa20
|
|
google.golang.org/grpc v1.78.0
|
|
google.golang.org/protobuf v1.36.11
|
|
gopkg.in/yaml.v3 v3.0.1
|
|
gorm.io/driver/postgres v1.6.0
|
|
gorm.io/gorm v1.31.1
|
|
tailscale.com v1.94.1
|
|
zgo.at/zcache/v2 v2.4.1
|
|
zombiezen.com/go/postgrestest v1.0.1
|
|
)
|
|
|
|
// NOTE: modernc sqlite has a fragile dependency
|
|
// chain and it is important that they are updated
|
|
// in lockstep to ensure that they do not break
|
|
// some architectures and similar at runtime:
|
|
// https://github.com/juanfont/headscale/issues/2188
|
|
//
|
|
// Fragile libc dependency:
|
|
// https://pkg.go.dev/modernc.org/sqlite#hdr-Fragile_modernc_org_libc_dependency
|
|
// https://gitlab.com/cznic/sqlite/-/issues/177
|
|
//
|
|
// To upgrade, determine the new SQLite version to
|
|
// be used, and consult the `go.mod` file:
|
|
// https://gitlab.com/cznic/sqlite/-/blob/master/go.mod
|
|
// to find
|
|
// the appropriate `libc` version, then upgrade them
|
|
// together, e.g:
|
|
// go get modernc.org/libc@v1.55.3 modernc.org/sqlite@v1.33.1
|
|
require (
|
|
modernc.org/libc v1.67.6 // indirect
|
|
modernc.org/mathutil v1.7.1 // indirect
|
|
modernc.org/memory v1.11.0 // indirect
|
|
modernc.org/sqlite v1.44.3
|
|
)
|
|
|
|
// NOTE: gvisor must be updated in lockstep with
|
|
// tailscale.com. The version used here should match
|
|
// the version required by the tailscale.com dependency.
|
|
// To find the correct version, check tailscale.com's
|
|
// go.mod file for the gvisor.dev/gvisor version:
|
|
// https://github.com/tailscale/tailscale/blob/main/go.mod
|
|
require gvisor.dev/gvisor v0.0.0-20250205023644-9414b50a5633 // indirect
|
|
|
|
require (
|
|
atomicgo.dev/cursor v0.2.0 // indirect
|
|
atomicgo.dev/keyboard v0.2.9 // indirect
|
|
atomicgo.dev/schedule v0.1.0 // indirect
|
|
dario.cat/mergo v1.0.2 // indirect
|
|
filippo.io/edwards25519 v1.1.0 // indirect
|
|
github.com/Azure/go-ansiterm v0.0.0-20250102033503-faa5f7b0171c // indirect
|
|
github.com/Microsoft/go-winio v0.6.2 // indirect
|
|
github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5 // indirect
|
|
github.com/akutz/memconn v0.1.0 // indirect
|
|
github.com/alexbrainman/sspi v0.0.0-20250919150558-7d374ff0d59e // indirect
|
|
github.com/aws/aws-sdk-go-v2 v1.41.1 // indirect
|
|
github.com/aws/aws-sdk-go-v2/config v1.32.7 // indirect
|
|
github.com/aws/aws-sdk-go-v2/credentials v1.19.7 // indirect
|
|
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.18.17 // indirect
|
|
github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.17 // indirect
|
|
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.17 // indirect
|
|
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.4 // indirect
|
|
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.13.4 // indirect
|
|
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.13.17 // indirect
|
|
github.com/aws/aws-sdk-go-v2/service/signin v1.0.5 // indirect
|
|
github.com/aws/aws-sdk-go-v2/service/sso v1.30.9 // indirect
|
|
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.35.13 // indirect
|
|
github.com/aws/aws-sdk-go-v2/service/sts v1.41.6 // indirect
|
|
github.com/aws/smithy-go v1.24.0 // indirect
|
|
github.com/axiomhq/hyperloglog v0.2.6 // indirect
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
|
|
github.com/cespare/xxhash/v2 v2.3.0 // indirect
|
|
github.com/clipperhouse/stringish v0.1.1 // indirect
|
|
github.com/clipperhouse/uax29/v2 v2.5.0 // indirect
|
|
github.com/containerd/console v1.0.5 // indirect
|
|
github.com/containerd/continuity v0.4.5 // indirect
|
|
github.com/containerd/errdefs v1.0.0 // indirect
|
|
github.com/containerd/errdefs/pkg v0.3.0 // indirect
|
|
github.com/creachadair/mds v0.25.15 // indirect
|
|
github.com/creachadair/msync v0.8.2 // indirect
|
|
github.com/dblohm7/wingoes v0.0.0-20250822163801-6d8e6105c62d // indirect
|
|
github.com/dgryski/go-metro v0.0.0-20250106013310-edb8663e5e33 // indirect
|
|
github.com/distribution/reference v0.6.0 // indirect
|
|
github.com/docker/cli v29.2.1+incompatible // indirect
|
|
github.com/docker/go-connections v0.6.0 // indirect
|
|
github.com/docker/go-units v0.5.0 // indirect
|
|
github.com/dustin/go-humanize v1.0.1 // indirect
|
|
github.com/felixge/fgprof v0.9.5 // indirect
|
|
github.com/felixge/httpsnoop v1.0.4 // indirect
|
|
github.com/fxamacker/cbor/v2 v2.9.0 // indirect
|
|
github.com/gaissmai/bart v0.26.1 // indirect
|
|
github.com/glebarez/go-sqlite v1.22.0 // indirect
|
|
github.com/go-jose/go-jose/v3 v3.0.4 // indirect
|
|
github.com/go-jose/go-jose/v4 v4.1.3 // indirect
|
|
github.com/go-logr/logr v1.4.3 // indirect
|
|
github.com/go-logr/stdr v1.2.2 // indirect
|
|
github.com/go-viper/mapstructure/v2 v2.5.0 // indirect
|
|
github.com/godbus/dbus/v5 v5.2.2 // indirect
|
|
github.com/golang-jwt/jwt/v5 v5.3.1 // indirect
|
|
github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 // indirect
|
|
github.com/golang/protobuf v1.5.4 // indirect
|
|
github.com/google/btree v1.1.3 // indirect
|
|
github.com/google/go-github v17.0.0+incompatible // indirect
|
|
github.com/google/go-querystring v1.2.0 // indirect
|
|
github.com/google/pprof v0.0.0-20260202012954-cb029daf43ef // indirect
|
|
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
|
|
github.com/google/uuid v1.6.0 // indirect
|
|
github.com/gookit/color v1.6.0 // indirect
|
|
github.com/gorilla/websocket v1.5.4-0.20250319132907-e064f32e3674 // indirect
|
|
github.com/hashicorp/go-version v1.8.0 // indirect
|
|
github.com/hdevalence/ed25519consensus v0.2.0 // indirect
|
|
github.com/huin/goupnp v1.3.0 // indirect
|
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
|
github.com/jackc/pgpassfile v1.0.0 // indirect
|
|
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
|
|
github.com/jackc/pgx/v5 v5.8.0 // indirect
|
|
github.com/jackc/puddle/v2 v2.2.2 // indirect
|
|
github.com/jinzhu/inflection v1.0.0 // indirect
|
|
github.com/jinzhu/now v1.1.5 // indirect
|
|
github.com/jsimonetti/rtnetlink v1.4.2 // indirect
|
|
github.com/kamstrup/intmap v0.5.2 // indirect
|
|
github.com/klauspost/compress v1.18.3 // indirect
|
|
github.com/lib/pq v1.11.1 // indirect
|
|
github.com/lithammer/fuzzysearch v1.1.8 // indirect
|
|
github.com/mattn/go-colorable v0.1.14 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/mattn/go-runewidth v0.0.19 // indirect
|
|
github.com/mdlayher/netlink v1.8.0 // indirect
|
|
github.com/mdlayher/socket v0.5.1 // indirect
|
|
github.com/mitchellh/go-ps v1.0.0 // indirect
|
|
github.com/moby/docker-image-spec v1.3.1 // indirect
|
|
github.com/moby/moby/api v1.53.0 // indirect
|
|
github.com/moby/moby/client v0.2.2 // indirect
|
|
github.com/moby/sys/atomicwriter v0.1.0 // indirect
|
|
github.com/moby/sys/user v0.4.0 // indirect
|
|
github.com/moby/term v0.5.2 // indirect
|
|
github.com/morikuni/aec v1.1.0 // indirect
|
|
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
|
|
github.com/ncruces/go-strftime v1.0.0 // indirect
|
|
github.com/opencontainers/go-digest v1.0.0 // indirect
|
|
github.com/opencontainers/image-spec v1.1.1 // indirect
|
|
github.com/opencontainers/runc v1.3.2 // indirect
|
|
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
|
|
github.com/petermattis/goid v0.0.0-20260113132338-7c7de50cc741 // indirect
|
|
github.com/pires/go-proxyproto v0.9.2 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
|
|
github.com/prometheus-community/pro-bing v0.7.0 // indirect
|
|
github.com/prometheus/client_model v0.6.2 // indirect
|
|
github.com/prometheus/procfs v0.19.2 // indirect
|
|
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
|
|
github.com/safchain/ethtool v0.7.0 // indirect
|
|
github.com/sagikazarmark/locafero v0.12.0 // indirect
|
|
github.com/sirupsen/logrus v1.9.4 // indirect
|
|
github.com/spf13/afero v1.15.0 // indirect
|
|
github.com/spf13/cast v1.10.0 // indirect
|
|
github.com/spf13/pflag v1.0.10 // indirect
|
|
github.com/subosito/gotenv v1.6.0 // indirect
|
|
github.com/tailscale/certstore v0.1.1-0.20231202035212-d3fa0460f47e // indirect
|
|
github.com/tailscale/go-winio v0.0.0-20231025203758-c4f33415bf55 // indirect
|
|
github.com/tailscale/peercred v0.0.0-20250107143737-35a0c7bd7edc // indirect
|
|
github.com/tailscale/setec v0.0.0-20260115174028-19d190c5556d // indirect
|
|
github.com/tailscale/web-client-prebuilt v0.0.0-20251127225136-f19339b67368 // indirect
|
|
github.com/tailscale/wireguard-go v0.0.0-20250716170648-1d0488a3d7da // indirect
|
|
github.com/x448/float16 v0.8.4 // indirect
|
|
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
|
|
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
|
|
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
|
|
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
|
|
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
|
|
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.65.0 // indirect
|
|
go.opentelemetry.io/otel v1.40.0 // indirect
|
|
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.40.0 // indirect
|
|
go.opentelemetry.io/otel/metric v1.40.0 // indirect
|
|
go.opentelemetry.io/otel/trace v1.40.0 // indirect
|
|
go.yaml.in/yaml/v2 v2.4.3 // indirect
|
|
go.yaml.in/yaml/v3 v3.0.4 // indirect
|
|
go4.org/mem v0.0.0-20240501181205-ae6ca9944745 // indirect
|
|
golang.org/x/mod v0.32.0 // indirect
|
|
golang.org/x/sys v0.40.0 // indirect
|
|
golang.org/x/term v0.39.0 // indirect
|
|
golang.org/x/text v0.33.0 // indirect
|
|
golang.org/x/time v0.14.0 // indirect
|
|
golang.org/x/tools v0.41.0 // indirect
|
|
golang.zx2c4.com/wintun v0.0.0-20230126152724-0fa3db229ce2 // indirect
|
|
golang.zx2c4.com/wireguard/windows v0.5.3 // indirect
|
|
google.golang.org/genproto/googleapis/rpc v0.0.0-20260203192932-546029d2fa20 // indirect
|
|
)
|
|
|
|
tool (
|
|
golang.org/x/tools/cmd/stringer
|
|
tailscale.com/cmd/viewer
|
|
)
|