-
Notifications
You must be signed in to change notification settings - Fork 607
fix: go.mod cleanup and more #3972
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -85,3 +85,7 @@ storage/ | |
| scratch/ | ||
| rootfs/ | ||
| workspace/ | ||
|
|
||
| # binaries from make etc | ||
| client/builderd-cli | ||
| cmd/builderd/builderd | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,8 @@ | ||
| module github.com/unkeyed/unkey/go/deploy/metald/cmd/metald-init | ||
imeyer marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| go 1.25.1 | ||
| go 1.25 | ||
|
|
||
| toolchain go1.25.1 | ||
|
|
||
| // This is a standalone binary with minimal dependencies | ||
| // It should be statically compiled for use in minimal rootfs environments | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,5 @@ | ||
| module github.com/unkeyed/unkey/demo_api | ||
|
|
||
| go 1.25.1 | ||
| go 1.25 | ||
|
|
||
| toolchain go1.25.1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,5 @@ | ||
| module github.com/unkeyed/unkey/go/deploy/pkg/health | ||
|
|
||
| go 1.25.1 | ||
| go 1.25 | ||
|
|
||
| toolchain go1.25.1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,20 +1,19 @@ | ||
| module github.com/unkeyed/unkey/go/deploy/pkg/spiffe | ||
|
|
||
| go 1.25.1 | ||
| go 1.25 | ||
|
|
||
| require github.com/spiffe/go-spiffe/v2 v2.5.0 | ||
| toolchain go1.25.1 | ||
|
|
||
| require github.com/spiffe/go-spiffe/v2 v2.6.0 | ||
|
|
||
| require ( | ||
| github.com/Microsoft/go-winio v0.6.2 // indirect | ||
| github.com/go-jose/go-jose/v4 v4.0.5 // indirect | ||
| github.com/google/go-cmp v0.7.0 // indirect | ||
| github.com/zeebo/errs v1.4.0 // indirect | ||
| go.opentelemetry.io/otel v1.37.0 // indirect | ||
| golang.org/x/crypto v0.36.0 // indirect | ||
| golang.org/x/net v0.38.0 // indirect | ||
| golang.org/x/sys v0.31.0 // indirect | ||
| golang.org/x/text v0.23.0 // indirect | ||
| google.golang.org/genproto/googleapis/rpc v0.0.0-20241202173237-19429a94021a // indirect | ||
| google.golang.org/grpc v1.70.0 // indirect | ||
| google.golang.org/protobuf v1.36.5 // indirect | ||
| github.com/go-jose/go-jose/v4 v4.1.2 // indirect | ||
| golang.org/x/crypto v0.39.0 // indirect | ||
| golang.org/x/net v0.41.0 // indirect | ||
| golang.org/x/sys v0.33.0 // indirect | ||
| golang.org/x/text v0.26.0 // indirect | ||
| google.golang.org/genproto/googleapis/rpc v0.0.0-20250707201910-8d1bb00bc6a7 // indirect | ||
| google.golang.org/grpc v1.75.0 // indirect | ||
| google.golang.org/protobuf v1.36.7 // indirect | ||
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,40 +1,44 @@ | ||
| module github.com/unkeyed/unkey/go/deploy/pkg/telemetry | ||
|
|
||
| go 1.25.1 | ||
| go 1.25 | ||
|
|
||
| toolchain go1.25.1 | ||
|
|
||
| require ( | ||
| github.com/prometheus/client_golang v1.22.0 | ||
| go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.62.0 | ||
| go.opentelemetry.io/otel v1.37.0 | ||
| go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.37.0 | ||
| go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.37.0 | ||
| go.opentelemetry.io/otel/exporters/prometheus v0.59.0 | ||
| go.opentelemetry.io/otel/sdk v1.37.0 | ||
| go.opentelemetry.io/otel/sdk/metric v1.37.0 | ||
| github.com/prometheus/client_golang v1.23.2 | ||
| go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.63.0 | ||
| go.opentelemetry.io/otel v1.38.0 | ||
| go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.38.0 | ||
| go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.38.0 | ||
| go.opentelemetry.io/otel/exporters/prometheus v0.60.0 | ||
| go.opentelemetry.io/otel/sdk v1.38.0 | ||
| go.opentelemetry.io/otel/sdk/metric v1.38.0 | ||
| ) | ||
|
|
||
| require ( | ||
| github.com/beorn7/perks v1.0.1 // indirect | ||
| github.com/cenkalti/backoff/v5 v5.0.2 // indirect | ||
| github.com/cenkalti/backoff/v5 v5.0.3 // indirect | ||
| github.com/cespare/xxhash/v2 v2.3.0 // indirect | ||
| github.com/felixge/httpsnoop v1.0.4 // indirect | ||
| github.com/go-logr/logr v1.4.3 // indirect | ||
| github.com/go-logr/stdr v1.2.2 // indirect | ||
| github.com/google/uuid v1.6.0 // indirect | ||
| github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.1 // indirect | ||
| github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.2 // indirect | ||
| github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect | ||
| github.com/prometheus/client_model v0.6.2 // indirect | ||
| github.com/prometheus/common v0.65.0 // indirect | ||
| github.com/prometheus/procfs v0.16.1 // indirect | ||
| go.opentelemetry.io/auto/sdk v1.1.0 // indirect | ||
| go.opentelemetry.io/otel/metric v1.37.0 // indirect | ||
| go.opentelemetry.io/otel/trace v1.37.0 // indirect | ||
| go.opentelemetry.io/proto/otlp v1.7.0 // indirect | ||
| golang.org/x/net v0.41.0 // indirect | ||
| golang.org/x/sys v0.33.0 // indirect | ||
| golang.org/x/text v0.26.0 // indirect | ||
| google.golang.org/genproto/googleapis/api v0.0.0-20250603155806-513f23925822 // indirect | ||
| google.golang.org/genproto/googleapis/rpc v0.0.0-20250603155806-513f23925822 // indirect | ||
| google.golang.org/grpc v1.73.0 // indirect | ||
| google.golang.org/protobuf v1.36.6 // indirect | ||
| github.com/prometheus/common v0.66.1 // indirect | ||
| github.com/prometheus/otlptranslator v1.0.0 // indirect | ||
| github.com/prometheus/procfs v0.17.0 // indirect | ||
| go.opentelemetry.io/auto/sdk v1.2.0 // indirect | ||
| go.opentelemetry.io/otel/metric v1.38.0 // indirect | ||
| go.opentelemetry.io/otel/trace v1.38.0 // indirect | ||
| go.opentelemetry.io/proto/otlp v1.8.0 // indirect | ||
| go.yaml.in/yaml/v2 v2.4.3 // indirect | ||
imeyer marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| golang.org/x/net v0.44.0 // indirect | ||
| golang.org/x/sys v0.36.0 // indirect | ||
| golang.org/x/text v0.29.0 // indirect | ||
| google.golang.org/genproto/googleapis/api v0.0.0-20250908214217-97024824d090 // indirect | ||
| google.golang.org/genproto/googleapis/rpc v0.0.0-20250908214217-97024824d090 // indirect | ||
| google.golang.org/grpc v1.75.1 // indirect | ||
| google.golang.org/protobuf v1.36.9 // indirect | ||
| ) | ||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.