Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ jobs:
uses: golangci/golangci-lint-action@v3
with:
version: v1.53
skip-pkg-cache: true
skip-pkg-cache: true # golangci-lint-action caching conflicts with the setup-go cache and `go get` above. See https://github.com/golangci/golangci-lint-action/issues/23
11 changes: 6 additions & 5 deletions cmd/manualchange.go
Original file line number Diff line number Diff line change
Expand Up @@ -138,11 +138,12 @@ func ManualChange(signals chan os.Signal, ready chan bool) int {

queries := []*sdp.Query{
{
UUID: u[:],
Method: method,
Scope: viper.GetString("query-scope"),
Type: viper.GetString("query-type"),
Query: viper.GetString("query"),
UUID: u[:],
Method: method,
Scope: viper.GetString("query-scope"),
Type: viper.GetString("query-type"),
Query: viper.GetString("query"),
IgnoreCache: true,
},
}
options := &websocket.DialOptions{
Expand Down
1 change: 1 addition & 0 deletions cmd/request.go
Original file line number Diff line number Diff line change
Expand Up @@ -352,6 +352,7 @@ func createInitialRequest() (*sdp.GatewayRequest, error) {
LinkDepth: viper.GetUint32("link-depth"),
FollowOnlyBlastPropagation: viper.GetBool("blast-radius"),
},
IgnoreCache: viper.GetBool("ignore-cache"),
},
}
case "load-bookmark":
Expand Down
50 changes: 23 additions & 27 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,72 +4,68 @@ go 1.21

require (
github.com/bufbuild/connect-go v1.10.0
github.com/getsentry/sentry-go v0.23.0
github.com/getsentry/sentry-go v0.24.1
github.com/google/uuid v1.3.1
github.com/mattn/go-isatty v0.0.19
github.com/overmindtech/sdp-go v0.49.5
github.com/overmindtech/sdp-go v0.49.6
github.com/sirupsen/logrus v1.9.3
github.com/spf13/cobra v1.7.0
github.com/spf13/viper v1.16.0
github.com/ttacon/chalk v0.0.0-20160626202418-22c06c80ed31
github.com/uptrace/opentelemetry-go-extra/otellogrus v0.2.2
github.com/uptrace/opentelemetry-go-extra/otellogrus v0.2.3
github.com/xiam/dig v0.0.0-20191116195832-893b5fb5093b
go.opentelemetry.io/contrib/detectors/aws/ec2 v1.17.0
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.42.0
go.opentelemetry.io/otel v1.16.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.16.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.16.0
go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.16.0
go.opentelemetry.io/otel/sdk v1.16.0
go.opentelemetry.io/otel/trace v1.16.0
go.opentelemetry.io/contrib/detectors/aws/ec2 v1.20.0
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0
go.opentelemetry.io/otel v1.19.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.19.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.19.0
go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.19.0
go.opentelemetry.io/otel/sdk v1.19.0
go.opentelemetry.io/otel/trace v1.19.0
golang.org/x/oauth2 v0.12.0
google.golang.org/protobuf v1.31.0
nhooyr.io/websocket v1.8.7
)

require (
github.com/auth0/go-jwt-middleware/v2 v2.1.0 // indirect
github.com/aws/aws-sdk-go v1.44.266 // indirect
github.com/aws/aws-sdk-go v1.45.16 // indirect
github.com/cenkalti/backoff/v4 v4.2.1 // indirect
github.com/felixge/httpsnoop v1.0.3 // indirect
github.com/fsnotify/fsnotify v1.6.0 // indirect
github.com/go-logr/logr v1.2.4 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/grpc-ecosystem/grpc-gateway/v2 v2.15.2 // indirect
github.com/grpc-ecosystem/grpc-gateway/v2 v2.16.0 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/klauspost/compress v1.16.7 // indirect
github.com/klauspost/compress v1.17.0 // indirect
github.com/magiconair/properties v1.8.7 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/nats-io/nats-server/v2 v2.9.22 // indirect
github.com/nats-io/nats.go v1.29.0 // indirect
github.com/nats-io/nkeys v0.4.4 // indirect
github.com/nats-io/nats-server/v2 v2.10.1 // indirect
github.com/nats-io/nats.go v1.30.2 // indirect
github.com/nats-io/nkeys v0.4.5 // indirect
github.com/nats-io/nuid v1.0.1 // indirect
github.com/pelletier/go-toml/v2 v2.0.8 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/rogpeppe/go-internal v1.10.0 // indirect
github.com/spf13/afero v1.9.5 // indirect
github.com/spf13/cast v1.5.1 // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/subosito/gotenv v1.4.2 // indirect
github.com/uptrace/opentelemetry-go-extra/otelutil v0.2.2 // indirect
github.com/uptrace/opentelemetry-go-extra/otelutil v0.2.3 // indirect
github.com/xiam/to v0.0.0-20191116183551-8328998fc0ed // indirect
go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.16.0 // indirect
go.opentelemetry.io/otel/metric v1.16.0 // indirect
go.opentelemetry.io/proto/otlp v0.19.0 // indirect
go.opentelemetry.io/otel/metric v1.19.0 // indirect
go.opentelemetry.io/proto/otlp v1.0.0 // indirect
golang.org/x/crypto v0.13.0 // indirect
golang.org/x/net v0.15.0 // indirect
golang.org/x/sys v0.12.0 // indirect
golang.org/x/text v0.13.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/genproto v0.0.0-20230526015343-6ee61e4f9d5f // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20230526161137-0005af68ea54 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20230526161137-0005af68ea54 // indirect
google.golang.org/grpc v1.55.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20230711160842-782d3b101e98 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20230711160842-782d3b101e98 // indirect
google.golang.org/grpc v1.58.2 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/square/go-jose.v2 v2.6.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
Expand Down
Loading