diff --git a/.gitignore b/.gitignore index 55c92f1..437830b 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,7 @@ /tailscale-1.58.2-vendored.tar.xz +/tailscale-1.68.1-vendored.tar.xz +/tailscale-1.68.2-vendored.tar.xz +/tailscale-1.70.0-vendored.tar.xz +/tailscale-1.76.6-vendored.tar.xz +/tailscale-1.78.3-vendored.tar.xz +/tailscale-1.84.1-vendored.tar.xz diff --git a/create-vendor-tarball.sh b/create-vendor-tarball.sh index d4987ca..d6bbcbc 100644 --- a/create-vendor-tarball.sh +++ b/create-vendor-tarball.sh @@ -70,15 +70,32 @@ if $do_license; then VERSION=$(echo -n $dep | awk -F ';' '{ printf "%s", $2 }') VERSION_SPEC=$(echo $VERSION | sed 's/-/~/g') CURL_OUT=$(curl -s https://api.deps.dev/v3/systems/go/packages/$GO_MOD_PATH_URLENCODE/versions/$VERSION) - LICENSES=$(echo -n $CURL_OUT | jq -r '.licenses | join(" OR ")') + LICENSES=$(echo -n $CURL_OUT | jq -r '.licenses | join(" OR ")' 2> /dev/null) if [ ! -z "$LICENSES" ]; then if echo "$LICENSES" | grep -q " OR "; then LICENSE_ASSOC_ARR["($LICENSES)"]=1 else LICENSE_ASSOC_ARR["$LICENSES"]=1 fi - fi - echo "# $LICENSES" + else + # if we couldn't match a license on the exact version, try the default version + CURL_OUT=$(curl -s https://api.deps.dev/v3/systems/go/packages/$GO_MOD_PATH_URLENCODE) + DEFAULT_VERSION=$(echo -n $CURL_OUT | jq -r '.versions.[] | select(.isDefault==true) | .versionKey.version' 2> /dev/null) + CURL_OUT=$(curl -s https://api.deps.dev/v3/systems/go/packages/$GO_MOD_PATH_URLENCODE/versions/$DEFAULT_VERSION) + LICENSES_2ND=$(echo -n $CURL_OUT | jq -r '.licenses | join(" OR ")' 2> /dev/null) + if [ ! -z "$LICENSES_2ND" ]; then + if echo "$LICENSES_2ND" | grep -q " OR "; then + LICENSE_ASSOC_ARR["($LICENSES_2ND)"]=1 + else + LICENSE_ASSOC_ARR["$LICENSES_2ND"]=1 + fi + fi + fi + if [ ! -z "$LICENSES" ]; then + echo "# $LICENSES" + else + echo "# $LICENSES_2ND" + fi echo "Provides: bundled(golang($GO_MOD_PATH)) = $VERSION_SPEC" done diff --git a/sources b/sources index 88482d6..39e3017 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (tailscale-1.58.2-vendored.tar.xz) = 63075ba2b109f6da971db979036c696693b7d687653566dff02caf97b2d40fe85765ec6300305273b3936a0380543bb32f7970c24aa978b26855d2f148c12ea7 +SHA512 (tailscale-1.84.1-vendored.tar.xz) = 0912fd37889b268ef65cf8fa16ca21503697bf74ed7fb3923aa926a80fab1ce80516344328fcf52cbe8fe113f5ec0a2f87d12afecfe27b82e759f491303f7f10 diff --git a/tailscale.spec b/tailscale.spec index a6c3c8f..b101635 100644 --- a/tailscale.spec +++ b/tailscale.spec @@ -9,7 +9,7 @@ # https://github.com/tailscale/tailscale %global goipath github.com/tailscale/tailscale -Version: 1.58.2 +Version: 1.84.1 %if 0%{?rhel} %gometa @@ -21,7 +21,7 @@ Version: 1.58.2 The easiest, most secure way to use WireGuard and 2FA.} Name: tailscale -Release: 1%{?dist} +Release: 4%{?dist} Summary: The easiest, most secure way to use WireGuard and 2FA # main source code is BSD-3-Clause @@ -39,101 +39,129 @@ Requires: iptables # BSD-3-Clause Provides: bundled(golang(filippo.io/mkcert)) = v1.4.4 # Apache-2.0 +Provides: bundled(golang(fyne.io/systray)) = v1.11.1~0.20250317195939~bcf6eed85e7a +# BSD-3-Clause +Provides: bundled(golang(github.com/Kodeworks/golang-image-ico)) = v0.0.0~20141118225523~73f0f4cfade9 +# Apache-2.0 Provides: bundled(golang(github.com/akutz/memconn)) = v0.1.0 # BSD-3-Clause Provides: bundled(golang(github.com/alexbrainman/sspi)) = v0.0.0~20231016080023~1a75b4708caa # MIT -Provides: bundled(golang(github.com/andybalholm/brotli)) = v1.0.5 +Provides: bundled(golang(github.com/andybalholm/brotli)) = v1.1.0 # MIT Provides: bundled(golang(github.com/anmitsu/go-shlex)) = v0.0.0~20200514113438~38f4b401e2be +# BSD-3-Clause +Provides: bundled(golang(github.com/atotto/clipboard)) = v0.1.4 # Apache-2.0 -Provides: bundled(golang(github.com/aws/aws-sdk-go-v2)) = v1.21.0 +Provides: bundled(golang(github.com/aws/aws-sdk-go-v2)) = v1.36.0 # Apache-2.0 -Provides: bundled(golang(github.com/aws/aws-sdk-go-v2/config)) = v1.18.42 +Provides: bundled(golang(github.com/aws/aws-sdk-go-v2/config)) = v1.29.5 # Apache-2.0 -Provides: bundled(golang(github.com/aws/aws-sdk-go-v2/feature/s3/manager)) = v1.11.64 +Provides: bundled(golang(github.com/aws/aws-sdk-go-v2/feature/s3/manager)) = v1.17.58 # Apache-2.0 -Provides: bundled(golang(github.com/aws/aws-sdk-go-v2/service/s3)) = v1.33.0 +Provides: bundled(golang(github.com/aws/aws-sdk-go-v2/service/s3)) = v1.75.3 # Apache-2.0 -Provides: bundled(golang(github.com/aws/aws-sdk-go-v2/service/ssm)) = v1.38.0 +Provides: bundled(golang(github.com/aws/aws-sdk-go-v2/service/ssm)) = v1.44.7 +# MPL-2.0 +Provides: bundled(golang(github.com/bramvdbogaerde/go-scp)) = v1.4.0 +# MIT +Provides: bundled(golang(github.com/cilium/ebpf)) = v0.15.0 +# ISC +Provides: bundled(golang(github.com/coder/websocket)) = v1.8.12 # Apache-2.0 -Provides: bundled(golang(github.com/coreos/go-iptables)) = v0.7.0 +Provides: bundled(golang(github.com/coreos/go-iptables)) = v0.7.1~0.20240112124308~65c67c9f46e6 # Apache-2.0 Provides: bundled(golang(github.com/coreos/go-systemd)) = v0.0.0~20191104093116~d3cd4ed1dbcf -# Apache-2.0 -Provides: bundled(golang(github.com/coreos/go-systemd/v22)) = v22.5.0 -# MIT -Provides: bundled(golang(github.com/creack/pty)) = v1.1.18 -# MIT -Provides: bundled(golang(github.com/dave/courtney)) = v0.4.0 -# MIT -Provides: bundled(golang(github.com/dave/jennifer)) = v1.7.0 -# MIT -Provides: bundled(golang(github.com/dave/patsy)) = v0.0.0~20210517141501~957256f50cba # BSD-3-Clause -Provides: bundled(golang(github.com/dblohm7/wingoes)) = v0.0.0~20230929194252~e994401fc077 +Provides: bundled(golang(github.com/creachadair/taskgroup)) = v0.13.2 +# MIT +Provides: bundled(golang(github.com/creack/pty)) = v1.1.23 +# BSD-3-Clause +Provides: bundled(golang(github.com/dblohm7/wingoes)) = v0.0.0~20240119213807~a09d6be7affa # Apache-2.0 Provides: bundled(golang(github.com/digitalocean/go-smbios)) = v0.0.0~20180907143718~390a4f403a8e +# Apache-2.0 +Provides: bundled(golang(github.com/distribution/reference)) = v0.6.0 +# MIT +Provides: bundled(golang(github.com/djherbis/times)) = v1.6.0 # BSD-3-Clause Provides: bundled(golang(github.com/dsnet/try)) = v0.0.3 -# MIT -Provides: bundled(golang(github.com/evanw/esbuild)) = v0.19.4 -# MIT -Provides: bundled(golang(github.com/frankban/quicktest)) = v1.14.5 -# MIT -Provides: bundled(golang(github.com/fxamacker/cbor/v2)) = v2.5.0 -# BSD-3-Clause -Provides: bundled(golang(github.com/go-json-experiment/json)) = v0.0.0~20230922184908~dc36ffcf8533 # Apache-2.0 -Provides: bundled(golang(github.com/go-logr/zapr)) = v1.2.4 +Provides: bundled(golang(github.com/elastic/crd-ref-docs)) = v0.0.12 +# MIT +Provides: bundled(golang(github.com/evanw/esbuild)) = v0.19.11 +# MIT +Provides: bundled(golang(github.com/fogleman/gg)) = v1.3.0 +# MIT +Provides: bundled(golang(github.com/frankban/quicktest)) = v1.14.6 +# MIT +Provides: bundled(golang(github.com/fxamacker/cbor/v2)) = v2.7.0 +# MIT +Provides: bundled(golang(github.com/gaissmai/bart)) = v0.18.0 +# BSD-3-Clause +Provides: bundled(golang(github.com/go-json-experiment/json)) = v0.0.0~20250223041408~d3c622f1b874 +# Apache-2.0 +Provides: bundled(golang(github.com/go-logr/zapr)) = v1.3.0 # MIT Provides: bundled(golang(github.com/go-ole/go-ole)) = v1.3.0 +# +Provides: bundled(golang(github.com/go4org/plan9netshell)) = v0.0.0~20250324183649~788daa080737 # BSD-2-Clause Provides: bundled(golang(github.com/godbus/dbus/v5)) = v5.1.1~0.20230522191255~76236955d466 # Apache-2.0 Provides: bundled(golang(github.com/golang/groupcache)) = v0.0.0~20210331224755~41bb18bfe9da +# BSD-3-Clause +Provides: bundled(golang(github.com/golang/snappy)) = v0.0.4 # GPL-3.0 -Provides: bundled(golang(github.com/golangci/golangci-lint)) = v1.52.2 +Provides: bundled(golang(github.com/golangci/golangci-lint)) = v1.57.1 # BSD-3-Clause -Provides: bundled(golang(github.com/google/go-cmp)) = v0.5.9 +Provides: bundled(golang(github.com/google/go-cmp)) = v0.6.0 # Apache-2.0 -Provides: bundled(golang(github.com/google/go-containerregistry)) = v0.17.0 +Provides: bundled(golang(github.com/google/go-containerregistry)) = v0.20.2 # Apache-2.0 -Provides: bundled(golang(github.com/google/nftables)) = v0.1.1~0.20230115205135~9aa6fdf5a28c +Provides: bundled(golang(github.com/google/go-tpm)) = v0.9.4 # BSD-3-Clause -Provides: bundled(golang(github.com/google/uuid)) = v1.3.1 +Provides: bundled(golang(github.com/google/gopacket)) = v1.1.19 +# Apache-2.0 +Provides: bundled(golang(github.com/google/nftables)) = v0.2.1~0.20240414091927~5e242ec57806 +# BSD-3-Clause +Provides: bundled(golang(github.com/google/uuid)) = v1.6.0 # MIT Provides: bundled(golang(github.com/goreleaser/nfpm/v2)) = v2.33.1 +# MIT +Provides: bundled(golang(github.com/hashicorp/go-hclog)) = v1.6.2 +# MPL-2.0 +Provides: bundled(golang(github.com/hashicorp/raft)) = v1.7.2 # BSD-3-Clause -Provides: bundled(golang(github.com/hdevalence/ed25519consensus)) = v0.1.0 +Provides: bundled(golang(github.com/hdevalence/ed25519consensus)) = v0.2.0 # MIT -Provides: bundled(golang(github.com/iancoleman/strcase)) = v0.3.0 -# MIT -Provides: bundled(golang(github.com/illarion/gonotify)) = v1.0.1 +Provides: bundled(golang(github.com/illarion/gonotify/v3)) = v3.0.2 +# Apache-2.0 +Provides: bundled(golang(github.com/inetaf/tcpproxy)) = v0.0.0~20250203165043~ded522cbd03f # BSD-3-Clause -Provides: bundled(golang(github.com/insomniacslk/dhcp)) = v0.0.0~20230908212754~65c27093e38a +Provides: bundled(golang(github.com/insomniacslk/dhcp)) = v0.0.0~20231206064809~8c70d406f6d2 # MIT -Provides: bundled(golang(github.com/josharian/native)) = v1.1.1~0.20230202152459~5c7d0dd6ab86 +Provides: bundled(golang(github.com/jellydator/ttlcache/v3)) = v3.1.0 # MIT -Provides: bundled(golang(github.com/jsimonetti/rtnetlink)) = v1.3.5 +Provides: bundled(golang(github.com/jsimonetti/rtnetlink)) = v1.4.0 # MIT Provides: bundled(golang(github.com/kballard/go-shellquote)) = v0.0.0~20180428030007~95032a82bc51 # BSD-3-Clause OR Apache-2.0 OR MIT -Provides: bundled(golang(github.com/klauspost/compress)) = v1.17.4 +Provides: bundled(golang(github.com/klauspost/compress)) = v1.17.11 # BSD-3-Clause Provides: bundled(golang(github.com/kortschak/wol)) = v0.0.0~20200729010619~da482cc4850a # MIT Provides: bundled(golang(github.com/mattn/go-colorable)) = v0.1.13 # MIT -Provides: bundled(golang(github.com/mattn/go-isatty)) = v0.0.19 +Provides: bundled(golang(github.com/mattn/go-isatty)) = v0.0.20 # MIT Provides: bundled(golang(github.com/mdlayher/genetlink)) = v1.3.2 # MIT -Provides: bundled(golang(github.com/mdlayher/netlink)) = v1.7.2 +Provides: bundled(golang(github.com/mdlayher/netlink)) = v1.7.3~0.20250113171957~fbb4dce95f42 # MIT Provides: bundled(golang(github.com/mdlayher/sdnotify)) = v1.0.0 # BSD-3-Clause -Provides: bundled(golang(github.com/miekg/dns)) = v1.1.56 +Provides: bundled(golang(github.com/miekg/dns)) = v1.1.58 # MIT Provides: bundled(golang(github.com/mitchellh/go-ps)) = v1.0.0 # Apache-2.0 @@ -142,34 +170,48 @@ Provides: bundled(golang(github.com/peterbourgon/ff/v3)) = v3.4.0 Provides: bundled(golang(github.com/pkg/errors)) = v0.9.1 # BSD-2-Clause Provides: bundled(golang(github.com/pkg/sftp)) = v1.13.6 +# MIT +Provides: bundled(golang(github.com/prometheus-community/pro-bing)) = v0.4.0 # Apache-2.0 -Provides: bundled(golang(github.com/prometheus/client_golang)) = v1.17.0 +Provides: bundled(golang(github.com/prometheus/client_golang)) = v1.19.1 # Apache-2.0 -Provides: bundled(golang(github.com/prometheus/common)) = v0.44.0 +Provides: bundled(golang(github.com/prometheus/common)) = v0.55.0 +# Apache-2.0 +Provides: bundled(golang(github.com/prometheus/prometheus)) = v0.49.2~0.20240125131847~c3b8ef1694ff # Apache-2.0 Provides: bundled(golang(github.com/safchain/ethtool)) = v0.3.0 # MIT Provides: bundled(golang(github.com/skip2/go-qrcode)) = v0.0.0~20200617195104~da1b6568686e +# BSD-3-Clause +Provides: bundled(golang(github.com/studio-b12/gowebdav)) = v0.9.0 # MIT Provides: bundled(golang(github.com/tailscale/certstore)) = v0.1.1~0.20231202035212~d3fa0460f47e # BSD-3-Clause -Provides: bundled(golang(github.com/tailscale/depaware)) = v0.0.0~20210622194025~720c4b409502 +Provides: bundled(golang(github.com/tailscale/depaware)) = v0.0.0~20250112153213~b748de04d81b # BSD-3-Clause Provides: bundled(golang(github.com/tailscale/goexpect)) = v0.0.0~20210902213824~6e8c725cea41 -# BSD-3-Clause -Provides: bundled(golang(github.com/tailscale/golang-x-crypto)) = v0.0.0~20240108194725~7ce1f622c780 +# +Provides: bundled(golang(github.com/tailscale/golang-x-crypto)) = v0.0.0~20250404221719~a5573b049869 # BSD-2-Clause Provides: bundled(golang(github.com/tailscale/goupnp)) = v1.0.1~0.20210804011211~c64d0f06ea05 # BSD-3-Clause Provides: bundled(golang(github.com/tailscale/hujson)) = v0.0.0~20221223112325~20486734a56a # BSD-3-Clause -Provides: bundled(golang(github.com/tailscale/mkctr)) = v0.0.0~20240102155253~bf50773ba734 +Provides: bundled(golang(github.com/tailscale/mkctr)) = v0.0.0~20250228050937~c75ea1476830 # Apache-2.0 -Provides: bundled(golang(github.com/tailscale/netlink)) = v1.1.1~0.20211101221916~cabfb018fe85 +Provides: bundled(golang(github.com/tailscale/netlink)) = v1.1.1~0.20240822203006~4d49adab4de7 # BSD-3-Clause -Provides: bundled(golang(github.com/tailscale/web-client-prebuilt)) = v0.0.0~20240111230031~5ca22df9e6e7 +Provides: bundled(golang(github.com/tailscale/peercred)) = v0.0.0~20250107143737~35a0c7bd7edc +# BSD-3-Clause +Provides: bundled(golang(github.com/tailscale/setec)) = v0.0.0~20250205144240~8898a29c3fbb +# BSD-3-Clause +Provides: bundled(golang(github.com/tailscale/web-client-prebuilt)) = v0.0.0~20250124233751~d4cd19a26976 +# BSD-3-Clause +Provides: bundled(golang(github.com/tailscale/wf)) = v0.0.0~20240214030419~6fbb0a674ee6 # MIT -Provides: bundled(golang(github.com/tailscale/wireguard-go)) = v0.0.0~20231121184858~cc193a0b3272 +Provides: bundled(golang(github.com/tailscale/wireguard-go)) = v0.0.0~20250304000100~91a0587fb251 +# +Provides: bundled(golang(github.com/tailscale/xnet)) = v0.0.0~20240729143630~8497ac4dab2e # 0BSD Provides: bundled(golang(github.com/tc-hib/winres)) = v0.2.1 # MIT @@ -177,37 +219,35 @@ Provides: bundled(golang(github.com/tcnksm/go-httpstat)) = v0.2.0 # MIT Provides: bundled(golang(github.com/toqueteos/webbrowser)) = v1.2.0 # BSD-3-Clause -Provides: bundled(golang(github.com/u-root/u-root)) = v0.11.0 -# Apache-2.0 -Provides: bundled(golang(github.com/vishvananda/netlink)) = v1.2.1~beta.2 +Provides: bundled(golang(github.com/u-root/u-root)) = v0.14.0 # Apache-2.0 Provides: bundled(golang(github.com/vishvananda/netns)) = v0.0.4 # MIT -Provides: bundled(golang(go.uber.org/zap)) = v1.26.0 +Provides: bundled(golang(go.uber.org/zap)) = v1.27.0 # Apache-2.0 -Provides: bundled(golang(go4.org/mem)) = v0.0.0~20220726221520~4f986261bf13 +Provides: bundled(golang(go4.org/mem)) = v0.0.0~20240501181205~ae6ca9944745 # BSD-3-Clause -Provides: bundled(golang(go4.org/netipx)) = v0.0.0~20230824141953~6213f710f925 +Provides: bundled(golang(go4.org/netipx)) = v0.0.0~20231129151722~fdeea329fbba # BSD-3-Clause -Provides: bundled(golang(golang.org/x/crypto)) = v0.17.1~0.20240102205709~08396bb92b82 +Provides: bundled(golang(golang.org/x/crypto)) = v0.37.0 # BSD-3-Clause -Provides: bundled(golang(golang.org/x/exp)) = v0.0.0~20230905200255~921286631fa9 +Provides: bundled(golang(golang.org/x/exp)) = v0.0.0~20250210185358~939b2ce775ac # BSD-3-Clause -Provides: bundled(golang(golang.org/x/mod)) = v0.14.0 +Provides: bundled(golang(golang.org/x/mod)) = v0.23.0 # BSD-3-Clause -Provides: bundled(golang(golang.org/x/net)) = v0.18.0 +Provides: bundled(golang(golang.org/x/net)) = v0.36.0 # BSD-3-Clause -Provides: bundled(golang(golang.org/x/oauth2)) = v0.12.0 +Provides: bundled(golang(golang.org/x/oauth2)) = v0.26.0 # BSD-3-Clause -Provides: bundled(golang(golang.org/x/sync)) = v0.5.0 +Provides: bundled(golang(golang.org/x/sync)) = v0.13.0 # BSD-3-Clause -Provides: bundled(golang(golang.org/x/sys)) = v0.15.0 +Provides: bundled(golang(golang.org/x/sys)) = v0.32.0 # BSD-3-Clause -Provides: bundled(golang(golang.org/x/term)) = v0.15.0 +Provides: bundled(golang(golang.org/x/term)) = v0.31.0 # BSD-3-Clause -Provides: bundled(golang(golang.org/x/time)) = v0.3.0 +Provides: bundled(golang(golang.org/x/time)) = v0.10.0 # BSD-3-Clause -Provides: bundled(golang(golang.org/x/tools)) = v0.15.0 +Provides: bundled(golang(golang.org/x/tools)) = v0.30.0 # MIT Provides: bundled(golang(golang.zx2c4.com/wintun)) = v0.0.0~20230126152724~0fa3db229ce2 # MIT @@ -215,45 +255,123 @@ Provides: bundled(golang(golang.zx2c4.com/wireguard/windows)) = v0.5.3 # Apache-2.0 Provides: bundled(golang(gopkg.in/square/go-jose.v2)) = v2.6.0 # Apache-2.0 OR MIT -Provides: bundled(golang(gvisor.dev/gvisor)) = v0.0.0~20230928000133~4fe30062272c +Provides: bundled(golang(gvisor.dev/gvisor)) = v0.0.0~20250205023644~9414b50a5633 # MIT OR BSD-3-Clause -Provides: bundled(golang(honnef.co/go/tools)) = v0.4.6 +Provides: bundled(golang(honnef.co/go/tools)) = v0.5.1 +# Apache-2.0 +Provides: bundled(golang(k8s.io/api)) = v0.32.0 +# Apache-2.0 +Provides: bundled(golang(k8s.io/apimachinery)) = v0.32.0 +# Apache-2.0 +Provides: bundled(golang(k8s.io/apiserver)) = v0.32.0 +# Apache-2.0 +Provides: bundled(golang(k8s.io/client-go)) = v0.32.0 +# Apache-2.0 +Provides: bundled(golang(sigs.k8s.io/controller-runtime)) = v0.19.4 +# Apache-2.0 +Provides: bundled(golang(sigs.k8s.io/controller-tools)) = v0.17.0 +# MIT OR BSD-3-Clause OR Apache-2.0 +Provides: bundled(golang(sigs.k8s.io/yaml)) = v1.4.0 +# +Provides: bundled(golang(software.sslmate.com/src/go-pkcs12)) = v0.4.0 +# MIT +Provides: bundled(golang(9fans.net/go)) = v0.0.8~0.20250307142834~96bdba94b63f +# MIT +Provides: bundled(golang(github.com/4meepo/tagalign)) = v1.3.3 +# MIT +Provides: bundled(golang(github.com/Antonboom/testifylint)) = v1.2.0 +# MIT +Provides: bundled(golang(github.com/GaijinEntertainment/go-exhaustruct/v3)) = v3.2.0 +# MIT +Provides: bundled(golang(github.com/Masterminds/sprig)) = v2.22.0+incompatible +# MIT +Provides: bundled(golang(github.com/Microsoft/go-winio)) = v0.6.2 +# GPL-3.0 OR GPL-3.0-or-later +Provides: bundled(golang(github.com/OpenPeeDeeP/depguard/v2)) = v2.2.0 +# Unlicense OR MIT +Provides: bundled(golang(github.com/alecthomas/go-check-sumtype)) = v0.1.4 +# MIT +Provides: bundled(golang(github.com/alexkohler/nakedret/v2)) = v2.0.4 +# MIT +Provides: bundled(golang(github.com/armon/go-metrics)) = v0.4.1 +# MIT +Provides: bundled(golang(github.com/bombsimon/wsl/v4)) = v4.2.1 +# MIT +Provides: bundled(golang(github.com/butuzov/mirror)) = v1.1.0 +# MIT +Provides: bundled(golang(github.com/catenacyber/perfsprint)) = v0.7.1 +# MIT +Provides: bundled(golang(github.com/ccojocar/zxcvbn-go)) = v1.0.2 +# MIT +Provides: bundled(golang(github.com/ckaznocha/intrange)) = v0.1.0 # BSD-3-Clause -Provides: bundled(golang(inet.af/peercred)) = v0.0.0~20210906144145~0893ea02156a +Provides: bundled(golang(github.com/cyphar/filepath-securejoin)) = v0.3.6 # Apache-2.0 -Provides: bundled(golang(inet.af/tcpproxy)) = v0.0.0~20231102063150~2862066fc2a9 -# BSD-3-Clause -Provides: bundled(golang(inet.af/wf)) = v0.0.0~20221017222439~36129f591884 +Provides: bundled(golang(github.com/docker/go-connections)) = v0.5.0 # Apache-2.0 -Provides: bundled(golang(k8s.io/api)) = v0.28.2 -# Apache-2.0 -Provides: bundled(golang(k8s.io/apimachinery)) = v0.28.2 -# Apache-2.0 -Provides: bundled(golang(k8s.io/apiserver)) = v0.28.2 -# Apache-2.0 -Provides: bundled(golang(k8s.io/client-go)) = v0.28.2 +Provides: bundled(golang(github.com/docker/go-units)) = v0.5.0 # MIT -Provides: bundled(golang(nhooyr.io/websocket)) = v1.8.7 +Provides: bundled(golang(github.com/felixge/httpsnoop)) = v1.0.4 +# MIT +Provides: bundled(golang(github.com/ghostiam/protogetter)) = v0.3.5 # Apache-2.0 -Provides: bundled(golang(sigs.k8s.io/controller-runtime)) = v0.16.2 -# Apache-2.0 -Provides: bundled(golang(sigs.k8s.io/controller-tools)) = v0.13.0 -# MIT OR BSD-3-Clause -Provides: bundled(golang(sigs.k8s.io/yaml)) = v1.3.0 -# BSD-3-Clause -Provides: bundled(golang(software.sslmate.com/src/go-pkcs12)) = v0.2.1 +Provides: bundled(golang(github.com/go-logr/stdr)) = v1.2.2 # MIT -Provides: bundled(golang(github.com/Microsoft/go-winio)) = v0.6.1 +Provides: bundled(golang(github.com/go-viper/mapstructure/v2)) = v2.0.0~alpha.1 # MIT -Provides: bundled(golang(github.com/dave/astrid)) = v0.0.0~20170323122508~8c2895878b14 +Provides: bundled(golang(github.com/gobuffalo/flect)) = v1.0.3 # MIT -Provides: bundled(golang(github.com/dave/brenda)) = v1.1.0 -# MIT -Provides: bundled(golang(github.com/gobuffalo/flect)) = v1.0.2 +Provides: bundled(golang(github.com/goccy/go-yaml)) = v1.12.0 +# +Provides: bundled(golang(github.com/golang/freetype)) = v0.0.0~20170609003504~e2365dfdc4a0 +# GPL-3.0 +Provides: bundled(golang(github.com/golangci/plugin-module-register)) = v0.1.1 # Apache-2.0 Provides: bundled(golang(github.com/google/gnostic-models)) = v0.6.9~0.20230804172637~c7be7c783f49 # BSD-3-Clause -Provides: bundled(golang(github.com/gorilla/securecookie)) = v1.1.1 +Provides: bundled(golang(github.com/gorilla/securecookie)) = v1.1.2 +# MPL-2.0 +Provides: bundled(golang(github.com/hashicorp/go-immutable-radix)) = v1.3.1 +# MIT +Provides: bundled(golang(github.com/hashicorp/go-metrics)) = v0.5.4 +# MIT +Provides: bundled(golang(github.com/hashicorp/go-msgpack/v2)) = v2.1.2 +# MPL-2.0 +Provides: bundled(golang(github.com/hashicorp/golang-lru)) = v0.6.0 +# MIT +Provides: bundled(golang(github.com/jjti/go-spancheck)) = v0.5.3 +# MIT +Provides: bundled(golang(github.com/karamaru-alpha/copyloopvar)) = v1.0.8 +# MIT +Provides: bundled(golang(github.com/macabu/inamedparam)) = v0.1.3 +# Apache-2.0 +Provides: bundled(golang(github.com/moby/docker-image-spec)) = v1.3.1 +# Apache-2.0 +Provides: bundled(golang(github.com/santhosh-tekuri/jsonschema/v5)) = v5.3.1 +# GPL-3.0 OR GPL-3.0-or-later +Provides: bundled(golang(github.com/xen0n/gosmopolitan)) = v1.2.2 +# MIT +Provides: bundled(golang(github.com/ykadowak/zerologlint)) = v0.1.5 +# MPL-2.0 +Provides: bundled(golang(go-simpler.org/musttag)) = v0.9.0 +# MPL-2.0 +Provides: bundled(golang(go-simpler.org/sloglint)) = v0.5.0 +# Apache-2.0 +Provides: bundled(golang(go.opentelemetry.io/auto/sdk)) = v1.1.0 +# Apache-2.0 +Provides: bundled(golang(go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp)) = v0.58.0 +# Apache-2.0 +Provides: bundled(golang(go.opentelemetry.io/otel)) = v1.33.0 +# Apache-2.0 +Provides: bundled(golang(go.opentelemetry.io/otel/metric)) = v1.33.0 +# Apache-2.0 +Provides: bundled(golang(go.opentelemetry.io/otel/trace)) = v1.33.0 +# MIT +Provides: bundled(golang(go.uber.org/automaxprocs)) = v1.5.3 +# BSD-3-Clause +Provides: bundled(golang(golang.org/x/xerrors)) = v0.0.0~20240716161551~93cc26a95ae9 +# BSD-3-Clause +Provides: bundled(golang(gopkg.in/evanphx/json-patch.v4)) = v4.12.0 # MIT Provides: bundled(golang(4d63.com/gocheckcompilerdirectives)) = v1.2.1 # MIT @@ -261,21 +379,19 @@ Provides: bundled(golang(4d63.com/gochecknoglobals)) = v0.2.1 # BSD-3-Clause Provides: bundled(golang(dario.cat/mergo)) = v1.0.0 # BSD-3-Clause -Provides: bundled(golang(filippo.io/edwards25519)) = v1.0.0 +Provides: bundled(golang(filippo.io/edwards25519)) = v1.1.0 # MIT -Provides: bundled(golang(github.com/Abirdcfly/dupword)) = v0.0.11 +Provides: bundled(golang(github.com/Abirdcfly/dupword)) = v0.0.14 # MIT Provides: bundled(golang(github.com/AlekSi/pointer)) = v1.2.0 # MIT -Provides: bundled(golang(github.com/Antonboom/errname)) = v0.1.9 +Provides: bundled(golang(github.com/Antonboom/errname)) = v0.1.12 # MIT -Provides: bundled(golang(github.com/Antonboom/nilnil)) = v0.1.4 +Provides: bundled(golang(github.com/Antonboom/nilnil)) = v0.1.7 # MIT -Provides: bundled(golang(github.com/BurntSushi/toml)) = v1.3.2 +Provides: bundled(golang(github.com/BurntSushi/toml)) = v1.4.1~0.20240526193622~a339e1f7089c # MIT Provides: bundled(golang(github.com/Djarvur/go-err113)) = v0.1.0 -# MIT -Provides: bundled(golang(github.com/GaijinEntertainment/go-exhaustruct/v2)) = v2.3.0 # Apache-2.0 Provides: bundled(golang(github.com/Masterminds/goutils)) = v1.1.1 # MIT @@ -284,138 +400,128 @@ Provides: bundled(golang(github.com/Masterminds/semver)) = v1.5.0 Provides: bundled(golang(github.com/Masterminds/semver/v3)) = v3.2.1 # MIT Provides: bundled(golang(github.com/Masterminds/sprig/v3)) = v3.2.3 -# GPL-3.0 OR GPL-3.0-or-later -Provides: bundled(golang(github.com/OpenPeeDeeP/depguard)) = v1.1.1 # BSD-3-Clause -Provides: bundled(golang(github.com/ProtonMail/go-crypto)) = v0.0.0~20230923063757~afb1ddc0824c -# MIT -Provides: bundled(golang(github.com/acomagu/bufpipe)) = v1.0.4 +Provides: bundled(golang(github.com/ProtonMail/go-crypto)) = v1.1.3 # MIT Provides: bundled(golang(github.com/alexkohler/prealloc)) = v1.0.0 # MIT Provides: bundled(golang(github.com/alingse/asasalint)) = v0.0.11 # Apache-2.0 -Provides: bundled(golang(github.com/ashanbrown/forbidigo)) = v1.5.1 +Provides: bundled(golang(github.com/ashanbrown/forbidigo)) = v1.6.0 # Apache-2.0 Provides: bundled(golang(github.com/ashanbrown/makezero)) = v1.1.1 # Apache-2.0 -Provides: bundled(golang(github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream)) = v1.4.10 +Provides: bundled(golang(github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream)) = v1.6.8 # Apache-2.0 -Provides: bundled(golang(github.com/aws/aws-sdk-go-v2/credentials)) = v1.13.40 +Provides: bundled(golang(github.com/aws/aws-sdk-go-v2/credentials)) = v1.17.58 # Apache-2.0 -Provides: bundled(golang(github.com/aws/aws-sdk-go-v2/feature/ec2/imds)) = v1.13.11 +Provides: bundled(golang(github.com/aws/aws-sdk-go-v2/feature/ec2/imds)) = v1.16.27 # Apache-2.0 -Provides: bundled(golang(github.com/aws/aws-sdk-go-v2/internal/configsources)) = v1.1.41 +Provides: bundled(golang(github.com/aws/aws-sdk-go-v2/internal/configsources)) = v1.3.31 # Apache-2.0 -Provides: bundled(golang(github.com/aws/aws-sdk-go-v2/internal/endpoints/v2)) = v2.4.35 +Provides: bundled(golang(github.com/aws/aws-sdk-go-v2/internal/endpoints/v2)) = v2.6.31 # Apache-2.0 -Provides: bundled(golang(github.com/aws/aws-sdk-go-v2/internal/ini)) = v1.3.43 +Provides: bundled(golang(github.com/aws/aws-sdk-go-v2/internal/ini)) = v1.8.2 # Apache-2.0 -Provides: bundled(golang(github.com/aws/aws-sdk-go-v2/internal/v4a)) = v1.0.25 +Provides: bundled(golang(github.com/aws/aws-sdk-go-v2/internal/v4a)) = v1.3.31 # Apache-2.0 -Provides: bundled(golang(github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding)) = v1.9.11 +Provides: bundled(golang(github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding)) = v1.12.2 # Apache-2.0 -Provides: bundled(golang(github.com/aws/aws-sdk-go-v2/service/internal/checksum)) = v1.1.28 +Provides: bundled(golang(github.com/aws/aws-sdk-go-v2/service/internal/checksum)) = v1.5.5 # Apache-2.0 -Provides: bundled(golang(github.com/aws/aws-sdk-go-v2/service/internal/presigned-url)) = v1.9.35 +Provides: bundled(golang(github.com/aws/aws-sdk-go-v2/service/internal/presigned-url)) = v1.12.12 # Apache-2.0 -Provides: bundled(golang(github.com/aws/aws-sdk-go-v2/service/internal/s3shared)) = v1.14.2 +Provides: bundled(golang(github.com/aws/aws-sdk-go-v2/service/internal/s3shared)) = v1.18.12 # Apache-2.0 -Provides: bundled(golang(github.com/aws/aws-sdk-go-v2/service/sso)) = v1.14.1 +Provides: bundled(golang(github.com/aws/aws-sdk-go-v2/service/sso)) = v1.24.14 # Apache-2.0 -Provides: bundled(golang(github.com/aws/aws-sdk-go-v2/service/ssooidc)) = v1.17.1 +Provides: bundled(golang(github.com/aws/aws-sdk-go-v2/service/ssooidc)) = v1.28.13 # Apache-2.0 -Provides: bundled(golang(github.com/aws/aws-sdk-go-v2/service/sts)) = v1.22.0 +Provides: bundled(golang(github.com/aws/aws-sdk-go-v2/service/sts)) = v1.33.13 # Apache-2.0 -Provides: bundled(golang(github.com/aws/smithy-go)) = v1.14.2 +Provides: bundled(golang(github.com/aws/smithy-go)) = v1.22.2 # MIT Provides: bundled(golang(github.com/beorn7/perks)) = v1.0.1 # MIT -Provides: bundled(golang(github.com/bkielbasa/cyclop)) = v1.2.0 +Provides: bundled(golang(github.com/bkielbasa/cyclop)) = v1.2.1 # MIT Provides: bundled(golang(github.com/blakesmith/ar)) = v0.0.0~20190502131153~809d4375e1fb # MIT Provides: bundled(golang(github.com/blizzy78/varnamelen)) = v0.8.0 # MIT -Provides: bundled(golang(github.com/bombsimon/wsl/v3)) = v3.4.0 +Provides: bundled(golang(github.com/breml/bidichk)) = v0.2.7 # MIT -Provides: bundled(golang(github.com/breml/bidichk)) = v0.2.4 +Provides: bundled(golang(github.com/breml/errchkjson)) = v0.3.6 # MIT -Provides: bundled(golang(github.com/breml/errchkjson)) = v0.3.1 -# MIT -Provides: bundled(golang(github.com/butuzov/ireturn)) = v0.2.0 +Provides: bundled(golang(github.com/butuzov/ireturn)) = v0.3.0 # BSD-3-Clause Provides: bundled(golang(github.com/cavaliergopher/cpio)) = v1.0.1 # MIT -Provides: bundled(golang(github.com/cespare/xxhash/v2)) = v2.2.0 +Provides: bundled(golang(github.com/cespare/xxhash/v2)) = v2.3.0 # Apache-2.0 Provides: bundled(golang(github.com/charithe/durationcheck)) = v0.0.10 # MIT -Provides: bundled(golang(github.com/chavacava/garif)) = v0.0.0~20230227094218~b8c73b2037b8 +Provides: bundled(golang(github.com/chavacava/garif)) = v0.1.0 # BSD-3-Clause -Provides: bundled(golang(github.com/cloudflare/circl)) = v1.3.3 +Provides: bundled(golang(github.com/cloudflare/circl)) = v1.3.7 # Apache-2.0 -Provides: bundled(golang(github.com/containerd/stargz-snapshotter/estargz)) = v0.15.1 +Provides: bundled(golang(github.com/containerd/stargz-snapshotter/estargz)) = v0.16.3 # MIT Provides: bundled(golang(github.com/curioswitch/go-reassign)) = v0.2.0 # BSD-3-Clause -Provides: bundled(golang(github.com/daixiang0/gci)) = v0.10.1 +Provides: bundled(golang(github.com/daixiang0/gci)) = v0.12.3 # ISC -Provides: bundled(golang(github.com/davecgh/go-spew)) = v1.1.1 +Provides: bundled(golang(github.com/davecgh/go-spew)) = v1.1.2~0.20180830191138~d8f796af33cc # GPL-3.0 -Provides: bundled(golang(github.com/denis-tingaikin/go-header)) = v0.4.3 +Provides: bundled(golang(github.com/denis-tingaikin/go-header)) = v0.5.0 # Apache-2.0 -Provides: bundled(golang(github.com/docker/cli)) = v24.0.7+incompatible +Provides: bundled(golang(github.com/docker/cli)) = v27.4.1+incompatible # Apache-2.0 Provides: bundled(golang(github.com/docker/distribution)) = v2.8.3+incompatible # Apache-2.0 -Provides: bundled(golang(github.com/docker/docker)) = v24.0.7+incompatible +Provides: bundled(golang(github.com/docker/docker)) = v27.4.1+incompatible # MIT -Provides: bundled(golang(github.com/docker/docker-credential-helpers)) = v0.8.0 +Provides: bundled(golang(github.com/docker/docker-credential-helpers)) = v0.8.2 # MIT -Provides: bundled(golang(github.com/emicklei/go-restful/v3)) = v3.11.0 +Provides: bundled(golang(github.com/emicklei/go-restful/v3)) = v3.11.2 # BSD-2-Clause OR ISC Provides: bundled(golang(github.com/emirpasic/gods)) = v1.18.1 # MIT -Provides: bundled(golang(github.com/esimonov/ifshort)) = v1.0.4 -# MIT -Provides: bundled(golang(github.com/ettle/strcase)) = v0.1.1 +Provides: bundled(golang(github.com/ettle/strcase)) = v0.2.0 # BSD-3-Clause -Provides: bundled(golang(github.com/evanphx/json-patch)) = v5.6.0+incompatible -# BSD-3-Clause -Provides: bundled(golang(github.com/evanphx/json-patch/v5)) = v5.7.0 +Provides: bundled(golang(github.com/evanphx/json-patch/v5)) = v5.9.0 # MIT -Provides: bundled(golang(github.com/fatih/color)) = v1.15.0 +Provides: bundled(golang(github.com/fatih/color)) = v1.18.0 # BSD-3-Clause Provides: bundled(golang(github.com/fatih/structtag)) = v1.2.0 # GPL-3.0 Provides: bundled(golang(github.com/firefart/nonamedreturns)) = v1.0.4 # BSD-3-Clause -Provides: bundled(golang(github.com/fsnotify/fsnotify)) = v1.6.0 +Provides: bundled(golang(github.com/fsnotify/fsnotify)) = v1.7.0 # BSD-3-Clause Provides: bundled(golang(github.com/fzipp/gocyclo)) = v0.6.0 # MIT -Provides: bundled(golang(github.com/go-critic/go-critic)) = v0.8.0 +Provides: bundled(golang(github.com/go-critic/go-critic)) = v0.11.2 # BSD-3-Clause Provides: bundled(golang(github.com/go-git/gcfg)) = v1.5.1~0.20230307220236~3a3c6141e376 # Apache-2.0 -Provides: bundled(golang(github.com/go-git/go-billy/v5)) = v5.4.1 +Provides: bundled(golang(github.com/go-git/go-billy/v5)) = v5.6.1 # Apache-2.0 -Provides: bundled(golang(github.com/go-git/go-git/v5)) = v5.8.1 +Provides: bundled(golang(github.com/go-git/go-git/v5)) = v5.13.1 # Apache-2.0 -Provides: bundled(golang(github.com/go-logr/logr)) = v1.2.4 +Provides: bundled(golang(github.com/go-logr/logr)) = v1.4.2 # Apache-2.0 -Provides: bundled(golang(github.com/go-openapi/jsonpointer)) = v0.20.0 +Provides: bundled(golang(github.com/go-openapi/jsonpointer)) = v0.21.0 # Apache-2.0 -Provides: bundled(golang(github.com/go-openapi/jsonreference)) = v0.20.2 +Provides: bundled(golang(github.com/go-openapi/jsonreference)) = v0.20.4 # Apache-2.0 -Provides: bundled(golang(github.com/go-openapi/swag)) = v0.22.4 +Provides: bundled(golang(github.com/go-openapi/swag)) = v0.23.0 # MIT Provides: bundled(golang(github.com/go-toolsmith/astcast)) = v1.1.0 # MIT Provides: bundled(golang(github.com/go-toolsmith/astcopy)) = v1.1.0 # MIT -Provides: bundled(golang(github.com/go-toolsmith/astequal)) = v1.1.0 +Provides: bundled(golang(github.com/go-toolsmith/astequal)) = v1.2.0 # MIT Provides: bundled(golang(github.com/go-toolsmith/astfmt)) = v1.1.0 # MIT @@ -433,25 +539,17 @@ Provides: bundled(golang(github.com/gofrs/flock)) = v0.8.1 # BSD-3-Clause Provides: bundled(golang(github.com/gogo/protobuf)) = v1.3.2 # BSD-3-Clause -Provides: bundled(golang(github.com/golang/protobuf)) = v1.5.3 -# GPL-3.0 OR GPL-3.0-or-later -Provides: bundled(golang(github.com/golangci/check)) = v0.0.0~20180506172741~cfe4005ccda2 +Provides: bundled(golang(github.com/golang/protobuf)) = v1.5.4 # MIT Provides: bundled(golang(github.com/golangci/dupl)) = v0.0.0~20180902072040~3e9179ac440a -# BSD-3-Clause -Provides: bundled(golang(github.com/golangci/go-misc)) = v0.0.0~20220329215616~d24fe342adfe -# -Provides: bundled(golang(github.com/golangci/gofmt)) = v0.0.0~20220901101216~f2edd75033f2 -# BSD-3-Clause -Provides: bundled(golang(github.com/golangci/lint-1)) = v0.0.0~20191013205115~297bf364a8e0 -# BSD-3-Clause -Provides: bundled(golang(github.com/golangci/maligned)) = v0.0.0~20180506175553~b1d89398deca +# +Provides: bundled(golang(github.com/golangci/gofmt)) = v0.0.0~20231018234816~f50ced29576e # MIT -Provides: bundled(golang(github.com/golangci/misspell)) = v0.4.0 +Provides: bundled(golang(github.com/golangci/misspell)) = v0.4.1 # Apache-2.0 -Provides: bundled(golang(github.com/golangci/revgrep)) = v0.0.0~20220804021717~745bb2f7c2e6 +Provides: bundled(golang(github.com/golangci/revgrep)) = v0.5.2 # BSD-3-Clause -Provides: bundled(golang(github.com/golangci/unconvert)) = v0.0.0~20180507085042~28b1c447d1f4 +Provides: bundled(golang(github.com/golangci/unconvert)) = v0.0.0~20240309020433~c5143eacb3ed # Apache-2.0 Provides: bundled(golang(github.com/google/btree)) = v1.1.2 # Apache-2.0 @@ -461,13 +559,13 @@ Provides: bundled(golang(github.com/google/goterm)) = v0.0.0~2020090703233 # Apache-2.0 Provides: bundled(golang(github.com/google/rpmpack)) = v0.5.0 # MIT -Provides: bundled(golang(github.com/gordonklaus/ineffassign)) = v0.0.0~20230107090616~13ace0543b28 +Provides: bundled(golang(github.com/gordonklaus/ineffassign)) = v0.1.0 # MIT Provides: bundled(golang(github.com/goreleaser/chglog)) = v0.5.0 # MIT Provides: bundled(golang(github.com/goreleaser/fileglob)) = v1.3.0 # BSD-3-Clause -Provides: bundled(golang(github.com/gorilla/csrf)) = v1.7.1 +Provides: bundled(golang(github.com/gorilla/csrf)) = v1.7.3 # MIT Provides: bundled(golang(github.com/gostaticanalysis/analysisutil)) = v0.7.1 # MIT @@ -477,17 +575,13 @@ Provides: bundled(golang(github.com/gostaticanalysis/forcetypeassert)) = v # MIT Provides: bundled(golang(github.com/gostaticanalysis/nilerr)) = v0.1.1 # MPL-2.0 -Provides: bundled(golang(github.com/hashicorp/errwrap)) = v1.1.0 -# MPL-2.0 -Provides: bundled(golang(github.com/hashicorp/go-multierror)) = v1.1.1 -# MPL-2.0 Provides: bundled(golang(github.com/hashicorp/go-version)) = v1.6.0 # MPL-2.0 Provides: bundled(golang(github.com/hashicorp/hcl)) = v1.0.0 # BSD-3-Clause Provides: bundled(golang(github.com/hexops/gotextdiff)) = v1.0.3 # MIT -Provides: bundled(golang(github.com/huandu/xstrings)) = v1.4.0 +Provides: bundled(golang(github.com/huandu/xstrings)) = v1.5.0 # BSD-3-Clause Provides: bundled(golang(github.com/imdario/mergo)) = v0.3.16 # Apache-2.0 @@ -495,7 +589,7 @@ Provides: bundled(golang(github.com/inconshreveable/mousetrap)) = v1.1.0 # MIT Provides: bundled(golang(github.com/jbenet/go-context)) = v0.0.0~20150711004518~d14ea06fba99 # MIT -Provides: bundled(golang(github.com/jgautheron/goconst)) = v1.5.1 +Provides: bundled(golang(github.com/jgautheron/goconst)) = v1.7.0 # MIT Provides: bundled(golang(github.com/jingyugao/rowserrcheck)) = v1.1.1 # MIT @@ -509,13 +603,9 @@ Provides: bundled(golang(github.com/json-iterator/go)) = v1.1.12 # Apache-2.0 Provides: bundled(golang(github.com/julz/importas)) = v0.1.0 # MIT -Provides: bundled(golang(github.com/junk1tm/musttag)) = v0.5.0 -# MIT Provides: bundled(golang(github.com/kevinburke/ssh_config)) = v1.2.0 # MIT -Provides: bundled(golang(github.com/kisielk/errcheck)) = v1.6.3 -# MIT -Provides: bundled(golang(github.com/kisielk/gotool)) = v1.0.0 +Provides: bundled(golang(github.com/kisielk/errcheck)) = v1.7.0 # Apache-2.0 Provides: bundled(golang(github.com/kkHAIKE/contextcheck)) = v1.1.4 # MIT OR BSD-3-Clause @@ -529,7 +619,7 @@ Provides: bundled(golang(github.com/kr/text)) = v0.2.0 # MIT Provides: bundled(golang(github.com/kulti/thelper)) = v0.6.3 # MIT -Provides: bundled(golang(github.com/kunwardeep/paralleltest)) = v1.0.6 +Provides: bundled(golang(github.com/kunwardeep/paralleltest)) = v1.0.10 # MIT Provides: bundled(golang(github.com/kyoh86/exportloopref)) = v0.1.11 # Apache-2.0 @@ -552,14 +642,10 @@ Provides: bundled(golang(github.com/maratori/testpackage)) = v1.1.1 Provides: bundled(golang(github.com/matoous/godox)) = v0.0.0~20230222163458~006bad1f9d26 # MIT Provides: bundled(golang(github.com/mattn/go-runewidth)) = v0.0.14 -# Apache-2.0 -Provides: bundled(golang(github.com/matttproud/golang_protobuf_extensions)) = v1.0.4 -# MIT -Provides: bundled(golang(github.com/mbilski/exhaustivestruct)) = v1.2.0 # MIT Provides: bundled(golang(github.com/mdlayher/socket)) = v0.5.0 # MIT -Provides: bundled(golang(github.com/mgechev/revive)) = v1.3.1 +Provides: bundled(golang(github.com/mgechev/revive)) = v1.3.7 # MIT Provides: bundled(golang(github.com/mitchellh/copystructure)) = v1.2.0 # MIT @@ -578,40 +664,38 @@ Provides: bundled(golang(github.com/moricho/tparallel)) = v0.3.1 Provides: bundled(golang(github.com/munnerz/goautoneg)) = v0.0.0~20191010083416~a7dc8b61c822 # BSD-2-Clause Provides: bundled(golang(github.com/nakabonne/nestif)) = v0.3.1 -# MIT -Provides: bundled(golang(github.com/nbutton23/zxcvbn-go)) = v0.0.0~20210217022336~fa2cb2858354 # ISC Provides: bundled(golang(github.com/nfnt/resize)) = v0.0.0~20180221191011~83c6a9932646 # BSD-2-Clause -Provides: bundled(golang(github.com/nishanths/exhaustive)) = v0.10.0 +Provides: bundled(golang(github.com/nishanths/exhaustive)) = v0.12.0 # BSD-3-Clause Provides: bundled(golang(github.com/nishanths/predeclared)) = v0.2.2 # MIT -Provides: bundled(golang(github.com/nunnatsa/ginkgolinter)) = v0.11.2 +Provides: bundled(golang(github.com/nunnatsa/ginkgolinter)) = v0.16.1 # MIT Provides: bundled(golang(github.com/olekukonko/tablewriter)) = v0.0.5 -# Apache-2.0 +# Apache-2.0 OR CC-BY-SA-4.0 Provides: bundled(golang(github.com/opencontainers/go-digest)) = v1.0.0 # Apache-2.0 -Provides: bundled(golang(github.com/opencontainers/image-spec)) = v1.1.0~rc5 +Provides: bundled(golang(github.com/opencontainers/image-spec)) = v1.1.0 # MIT -Provides: bundled(golang(github.com/pelletier/go-toml/v2)) = v2.0.8 +Provides: bundled(golang(github.com/pelletier/go-toml/v2)) = v2.2.0 # BSD-3-Clause -Provides: bundled(golang(github.com/pierrec/lz4/v4)) = v4.1.18 +Provides: bundled(golang(github.com/pierrec/lz4/v4)) = v4.1.21 # Apache-2.0 Provides: bundled(golang(github.com/pjbgf/sha1cd)) = v0.3.0 # BSD-3-Clause Provides: bundled(golang(github.com/pkg/diff)) = v0.0.0~20210226163009~20ebb0f2a09e # BSD-3-Clause -Provides: bundled(golang(github.com/pmezard/go-difflib)) = v1.0.0 +Provides: bundled(golang(github.com/pmezard/go-difflib)) = v1.0.1~0.20181226105442~5d4384ee4fb2 # MIT -Provides: bundled(golang(github.com/polyfloyd/go-errorlint)) = v1.4.1 +Provides: bundled(golang(github.com/polyfloyd/go-errorlint)) = v1.4.8 # Apache-2.0 -Provides: bundled(golang(github.com/prometheus/client_model)) = v0.4.1~0.20230718164431~9a2bf3000d16 +Provides: bundled(golang(github.com/prometheus/client_model)) = v0.6.1 # Apache-2.0 -Provides: bundled(golang(github.com/prometheus/procfs)) = v0.12.0 +Provides: bundled(golang(github.com/prometheus/procfs)) = v0.15.1 # BSD-3-Clause -Provides: bundled(golang(github.com/quasilyte/go-ruleguard)) = v0.3.19 +Provides: bundled(golang(github.com/quasilyte/go-ruleguard)) = v0.4.2 # BSD-3-Clause Provides: bundled(golang(github.com/quasilyte/gogrep)) = v0.5.0 # MIT @@ -621,21 +705,21 @@ Provides: bundled(golang(github.com/quasilyte/stdinfo)) = v0.0.0~202201141 # MIT Provides: bundled(golang(github.com/rivo/uniseg)) = v0.4.4 # BSD-3-Clause -Provides: bundled(golang(github.com/rogpeppe/go-internal)) = v1.11.0 +Provides: bundled(golang(github.com/rogpeppe/go-internal)) = v1.13.1 # MIT -Provides: bundled(golang(github.com/ryancurrah/gomodguard)) = v1.3.0 +Provides: bundled(golang(github.com/ryancurrah/gomodguard)) = v1.3.1 # MIT -Provides: bundled(golang(github.com/ryanrolds/sqlclosecheck)) = v0.4.0 +Provides: bundled(golang(github.com/ryanrolds/sqlclosecheck)) = v0.5.1 # MIT Provides: bundled(golang(github.com/sanposhiho/wastedassign/v2)) = v2.0.7 # MIT Provides: bundled(golang(github.com/sashamelentyev/interfacebloat)) = v1.1.0 # MIT -Provides: bundled(golang(github.com/sashamelentyev/usestdlibvars)) = v1.23.0 +Provides: bundled(golang(github.com/sashamelentyev/usestdlibvars)) = v1.25.0 # Apache-2.0 -Provides: bundled(golang(github.com/securego/gosec/v2)) = v2.15.0 +Provides: bundled(golang(github.com/securego/gosec/v2)) = v2.19.0 # MIT OR Apache-2.0 -Provides: bundled(golang(github.com/sergi/go-diff)) = v1.3.1 +Provides: bundled(golang(github.com/sergi/go-diff)) = v1.3.2~0.20230802210424~5b0b94c5c0d3 # MIT Provides: bundled(golang(github.com/shazow/go-diff)) = v0.0.0~20160112020656~b6b7b6733b8c # MIT @@ -645,21 +729,19 @@ Provides: bundled(golang(github.com/sirupsen/logrus)) = v1.9.3 # MIT Provides: bundled(golang(github.com/sivchari/containedctx)) = v1.0.3 # MIT -Provides: bundled(golang(github.com/sivchari/nosnakecase)) = v1.7.0 -# MIT Provides: bundled(golang(github.com/sivchari/tenv)) = v1.7.1 # Apache-2.0 -Provides: bundled(golang(github.com/skeema/knownhosts)) = v1.2.1 +Provides: bundled(golang(github.com/skeema/knownhosts)) = v1.3.0 # MIT Provides: bundled(golang(github.com/sonatard/noctx)) = v0.0.2 # MIT Provides: bundled(golang(github.com/sourcegraph/go-diff)) = v0.7.0 # Apache-2.0 -Provides: bundled(golang(github.com/spf13/afero)) = v1.9.5 +Provides: bundled(golang(github.com/spf13/afero)) = v1.11.0 # MIT -Provides: bundled(golang(github.com/spf13/cast)) = v1.5.1 +Provides: bundled(golang(github.com/spf13/cast)) = v1.6.0 # Apache-2.0 -Provides: bundled(golang(github.com/spf13/cobra)) = v1.7.0 +Provides: bundled(golang(github.com/spf13/cobra)) = v1.8.1 # MIT Provides: bundled(golang(github.com/spf13/jwalterweatherman)) = v1.1.0 # BSD-3-Clause @@ -671,9 +753,9 @@ Provides: bundled(golang(github.com/ssgreg/nlreturn/v2)) = v2.2.1 # MIT Provides: bundled(golang(github.com/stbenjam/no-sprintf-host-port)) = v0.1.1 # MIT -Provides: bundled(golang(github.com/stretchr/objx)) = v0.5.0 +Provides: bundled(golang(github.com/stretchr/objx)) = v0.5.2 # MIT -Provides: bundled(golang(github.com/stretchr/testify)) = v1.8.4 +Provides: bundled(golang(github.com/stretchr/testify)) = v1.10.0 # MIT Provides: bundled(golang(github.com/subosito/gotenv)) = v1.4.2 # MIT @@ -683,27 +765,27 @@ Provides: bundled(golang(github.com/tailscale/go-winio)) = v0.0.0~20231025 # MIT Provides: bundled(golang(github.com/tdakkota/asciicheck)) = v0.2.0 # MIT -Provides: bundled(golang(github.com/tetafro/godot)) = v1.4.11 +Provides: bundled(golang(github.com/tetafro/godot)) = v1.4.16 # MIT Provides: bundled(golang(github.com/timakin/bodyclose)) = v0.0.0~20230421092635~574207250966 # MIT Provides: bundled(golang(github.com/timonwong/loggercheck)) = v0.9.4 # MIT -Provides: bundled(golang(github.com/tomarrell/wrapcheck/v2)) = v2.8.1 +Provides: bundled(golang(github.com/tomarrell/wrapcheck/v2)) = v2.8.3 # MIT Provides: bundled(golang(github.com/tommy-muehle/go-mnd/v2)) = v2.5.1 # BSD-3-Clause -Provides: bundled(golang(github.com/u-root/uio)) = v0.0.0~20230305220412~3e8cd9d6bf63 +Provides: bundled(golang(github.com/u-root/uio)) = v0.0.0~20240224005618~d2acac8f3701 # BSD-3-Clause Provides: bundled(golang(github.com/ulikunitz/xz)) = v0.5.11 # MIT -Provides: bundled(golang(github.com/ultraware/funlen)) = v0.0.3 +Provides: bundled(golang(github.com/ultraware/funlen)) = v0.1.0 # MIT -Provides: bundled(golang(github.com/ultraware/whitespace)) = v0.0.5 +Provides: bundled(golang(github.com/ultraware/whitespace)) = v0.1.0 # MIT -Provides: bundled(golang(github.com/uudashr/gocognit)) = v1.0.6 +Provides: bundled(golang(github.com/uudashr/gocognit)) = v1.1.2 # BSD-3-Clause -Provides: bundled(golang(github.com/vbatts/tar-split)) = v0.11.5 +Provides: bundled(golang(github.com/vbatts/tar-split)) = v0.11.6 # MIT Provides: bundled(golang(github.com/x448/float16)) = v0.8.4 # Apache-2.0 @@ -713,23 +795,21 @@ Provides: bundled(golang(github.com/yagipy/maintidx)) = v1.0.0 # Apache-2.0 Provides: bundled(golang(github.com/yeya24/promlinter)) = v0.2.0 # MIT -Provides: bundled(golang(gitlab.com/bosi/decorder)) = v0.2.3 +Provides: bundled(golang(gitlab.com/bosi/decorder)) = v0.4.1 # MIT Provides: bundled(golang(gitlab.com/digitalxero/go-conventional-commit)) = v1.0.7 # MIT Provides: bundled(golang(go.uber.org/multierr)) = v1.11.0 # BSD-3-Clause -Provides: bundled(golang(golang.org/x/exp/typeparams)) = v0.0.0~20230905200255~921286631fa9 +Provides: bundled(golang(golang.org/x/exp/typeparams)) = v0.0.0~20240314144324~c7f7c6466f7f # BSD-3-Clause -Provides: bundled(golang(golang.org/x/image)) = v0.12.0 +Provides: bundled(golang(golang.org/x/image)) = v0.24.0 # BSD-3-Clause -Provides: bundled(golang(golang.org/x/text)) = v0.14.0 +Provides: bundled(golang(golang.org/x/text)) = v0.24.0 # Apache-2.0 Provides: bundled(golang(gomodules.xyz/jsonpatch/v2)) = v2.4.0 -# Apache-2.0 -Provides: bundled(golang(google.golang.org/appengine)) = v1.6.8 # BSD-3-Clause -Provides: bundled(golang(google.golang.org/protobuf)) = v1.31.0 +Provides: bundled(golang(google.golang.org/protobuf)) = v1.35.1 # BSD-3-Clause Provides: bundled(golang(gopkg.in/inf.v0)) = v0.9.1 # Apache-2.0 @@ -743,27 +823,21 @@ Provides: bundled(golang(gopkg.in/yaml.v3)) = v3.0.1 # BSD-2-Clause-Views OR BSD-3-Clause Provides: bundled(golang(howett.net/plist)) = v1.0.0 # Apache-2.0 -Provides: bundled(golang(k8s.io/apiextensions-apiserver)) = v0.28.2 +Provides: bundled(golang(k8s.io/apiextensions-apiserver)) = v0.32.0 # Apache-2.0 -Provides: bundled(golang(k8s.io/component-base)) = v0.28.2 +Provides: bundled(golang(k8s.io/klog/v2)) = v2.130.1 # Apache-2.0 -Provides: bundled(golang(k8s.io/klog/v2)) = v2.100.1 +Provides: bundled(golang(k8s.io/kube-openapi)) = v0.0.0~20241105132330~32ad38e42d3f # Apache-2.0 -Provides: bundled(golang(k8s.io/kube-openapi)) = v0.0.0~20230928205116~a78145627833 -# Apache-2.0 -Provides: bundled(golang(k8s.io/utils)) = v0.0.0~20230726121419~3b25d923346b +Provides: bundled(golang(k8s.io/utils)) = v0.0.0~20241104100929~3ea5e8cea738 # BSD-3-Clause -Provides: bundled(golang(mvdan.cc/gofumpt)) = v0.5.0 +Provides: bundled(golang(mvdan.cc/gofumpt)) = v0.6.0 # BSD-3-Clause -Provides: bundled(golang(mvdan.cc/interfacer)) = v0.0.0~20180901003855~c20040233aed -# BSD-3-Clause -Provides: bundled(golang(mvdan.cc/lint)) = v0.0.0~20170908181259~adc824a0674b -# BSD-3-Clause -Provides: bundled(golang(mvdan.cc/unparam)) = v0.0.0~20230312165513~e84e2d14e3b8 +Provides: bundled(golang(mvdan.cc/unparam)) = v0.0.0~20240104100049~c549a3470d14 # Apache-2.0 OR BSD-3-Clause -Provides: bundled(golang(sigs.k8s.io/json)) = v0.0.0~20221116044647~bc3834ca7abd +Provides: bundled(golang(sigs.k8s.io/json)) = v0.0.0~20241010143419~9aa6b5e7a4b3 # Apache-2.0 -Provides: bundled(golang(sigs.k8s.io/structured-merge-diff/v4)) = v4.3.0 +Provides: bundled(golang(sigs.k8s.io/structured-merge-diff/v4)) = v4.4.2 %description %{common_description} @@ -776,7 +850,7 @@ Provides: bundled(golang(sigs.k8s.io/structured-merge-diff/v4)) = v4.3.0 %prep %goprep %{?with_vendor:-k} -%autopatch -p1 +#%%autopatch -p1 %build @@ -841,5 +915,35 @@ install -dpm 600 %{buildroot}%{_localstatedir}/cache/tailscale %changelog +* Fri Oct 10 2025 Alejandro Sáez - 1.84.1-4 +- rebuild + +* Fri Aug 15 2025 Maxwell G - 1.84.1-3 +- Rebuild for golang-1.25.0 + +* Fri Jul 25 2025 Fedora Release Engineering - 1.84.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + +* Thu Jun 05 2025 Jonathan Wright - 1.84.1-1 +- update to 1.84.1 rhbz#2343107 + +* Thu Jan 16 2025 Jonathan Wright - 1.78.3-1 +- update to 1.78.3 rhbz#2330707 + +* Mon Nov 11 2024 Jonathan Wright - 1.76.6-1 +- update to 1.76.6 rhbz#2307488 + +* Fri Jul 19 2024 Jonathan Wright - 1.70.0-1 +- update to 1.70.0 rhbz#2298530 + +* Fri Jul 05 2024 Jonathan Wright - 1.68.2-2 +- Fix systemd service file + +* Fri Jul 05 2024 Jonathan Wright - 1.68.2-1 +- update to 1.68.2 rhbz#2295738 + +* Mon Jul 01 2024 Jonathan Wright - 1.68.1-1 +- Update to 1.68.1 + * Mon Jun 17 2024 Jonathan Wright - 1.58.2-1 - Initial package build diff --git a/tailscaled.service b/tailscaled.service index 4279d50..e37f87c 100644 --- a/tailscaled.service +++ b/tailscaled.service @@ -10,9 +10,7 @@ After=network-pre.target NetworkManager.service systemd-resolved.service # but you might want to configure this in order to set external firewall # settings. Environment="PORT=41641" -# Extra flags you might want to pass to tailscaled. -Environment="FLAGS=''" -ExecStart=/usr/bin/tailscaled --state=/var/lib/tailscale/tailscaled.state --socket=/run/tailscale/tailscaled.sock --port=${PORT} $FLAGS +ExecStart=/usr/bin/tailscaled --state=/var/lib/tailscale/tailscaled.state --socket=/run/tailscale/tailscaled.sock --port=${PORT} ExecStopPost=/usr/bin/tailscaled --cleanup Restart=on-failure