-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Health checks fsd on port 6809 before adding to possible server list. Future health checks are completed against prom endpoint. - Handles open security notices from dependabot. - Handles entire lifecycle of an fsd server.
- Loading branch information
Showing
12 changed files
with
337 additions
and
335 deletions.
There are no files selected for viewing
This file contains 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 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 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,79 +1,81 @@ | ||
module github.com/vatsimnetwork/vatdns | ||
|
||
go 1.19 | ||
go 1.21 | ||
|
||
require ( | ||
github.com/aws/aws-sdk-go-v2 v1.17.3 | ||
github.com/aws/aws-sdk-go-v2/config v1.18.11 | ||
github.com/aws/aws-sdk-go-v2/credentials v1.13.11 | ||
github.com/aws/aws-sdk-go-v2/service/s3 v1.30.1 | ||
github.com/cloudflare/cloudflare-go v0.60.0 | ||
github.com/digitalocean/godo v1.95.0 | ||
github.com/fsnotify/fsnotify v1.6.0 | ||
github.com/getsentry/sentry-go v0.18.0 | ||
github.com/aws/aws-sdk-go-v2 v1.21.2 | ||
github.com/aws/aws-sdk-go-v2/config v1.19.1 | ||
github.com/aws/aws-sdk-go-v2/credentials v1.13.43 | ||
github.com/aws/aws-sdk-go-v2/service/s3 v1.40.2 | ||
github.com/bluele/zapslack v0.0.0-20170530053720-3dde4cb45852 | ||
github.com/cloudflare/cloudflare-go v0.80.0 | ||
github.com/digitalocean/godo v1.105.0 | ||
github.com/fsnotify/fsnotify v1.7.0 | ||
github.com/getsentry/sentry-go v0.25.0 | ||
github.com/go-yaml/yaml v2.1.0+incompatible | ||
github.com/jftuga/geodist v1.0.0 | ||
github.com/miekg/dns v1.1.50 | ||
github.com/oschwald/geoip2-golang v1.8.0 | ||
github.com/miekg/dns v1.1.56 | ||
github.com/oschwald/geoip2-golang v1.9.0 | ||
github.com/paulbellamy/ratecounter v0.2.0 | ||
github.com/prometheus/client_golang v1.14.0 | ||
github.com/prometheus/common v0.37.0 | ||
github.com/spf13/viper v1.15.0 | ||
github.com/stretchr/testify v1.8.1 | ||
go.uber.org/zap v1.24.0 | ||
github.com/prometheus/client_golang v1.17.0 | ||
github.com/prometheus/common v0.45.0 | ||
github.com/spf13/viper v1.17.0 | ||
github.com/stretchr/testify v1.8.4 | ||
go.uber.org/zap v1.26.0 | ||
|
||
) | ||
|
||
require ( | ||
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.4.10 // indirect | ||
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.21 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.27 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.21 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/ini v1.3.28 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/v4a v1.0.18 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.9.11 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.1.22 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.21 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.13.21 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sso v1.12.0 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.0 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sts v1.18.2 // indirect | ||
github.com/aws/smithy-go v1.13.5 // indirect | ||
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.4.14 // indirect | ||
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.13.13 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.43 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.37 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/ini v1.3.45 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/v4a v1.1.6 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.9.15 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.1.38 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.37 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.15.6 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sso v1.15.2 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.17.3 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sts v1.23.2 // indirect | ||
github.com/aws/smithy-go v1.15.0 // indirect | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/cespare/xxhash/v2 v2.1.2 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/bluele/slack v0.0.0-20180528010058-b4b4d354a079 // indirect | ||
github.com/cespare/xxhash/v2 v2.2.0 // indirect | ||
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect | ||
github.com/goccy/go-json v0.10.2 // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/google/go-querystring v1.1.0 // indirect | ||
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect | ||
github.com/hashicorp/go-retryablehttp v0.7.2 // indirect | ||
github.com/hashicorp/go-retryablehttp v0.7.4 // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/magiconair/properties v1.8.7 // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect | ||
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect | ||
github.com/mitchellh/mapstructure v1.5.0 // indirect | ||
github.com/newrelic/go-agent/v3 v3.20.3 // indirect | ||
github.com/oschwald/maxminddb-golang v1.10.0 // indirect | ||
github.com/pelletier/go-toml/v2 v2.0.6 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/prometheus/client_model v0.3.0 // indirect | ||
github.com/prometheus/procfs v0.8.0 // indirect | ||
github.com/spf13/afero v1.9.3 // indirect | ||
github.com/spf13/cast v1.5.0 // indirect | ||
github.com/spf13/jwalterweatherman v1.1.0 // indirect | ||
github.com/oschwald/maxminddb-golang v1.11.0 // indirect | ||
github.com/pelletier/go-toml/v2 v2.1.0 // indirect | ||
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect | ||
github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 // indirect | ||
github.com/prometheus/procfs v0.11.1 // indirect | ||
github.com/sagikazarmark/locafero v0.3.0 // indirect | ||
github.com/sagikazarmark/slog-shim v0.1.0 // indirect | ||
github.com/sourcegraph/conc v0.3.0 // indirect | ||
github.com/spf13/afero v1.10.0 // indirect | ||
github.com/spf13/cast v1.5.1 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/subosito/gotenv v1.4.2 // indirect | ||
go.uber.org/atomic v1.9.0 // indirect | ||
go.uber.org/multierr v1.8.0 // indirect | ||
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect | ||
golang.org/x/net v0.4.0 // indirect | ||
golang.org/x/oauth2 v0.0.0-20221014153046-6fdb5e3db783 // indirect | ||
golang.org/x/sys v0.3.0 // indirect | ||
golang.org/x/text v0.5.0 // indirect | ||
golang.org/x/time v0.1.0 // indirect | ||
golang.org/x/tools v0.1.12 // indirect | ||
github.com/subosito/gotenv v1.6.0 // indirect | ||
go.uber.org/multierr v1.10.0 // indirect | ||
golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect | ||
golang.org/x/mod v0.12.0 // indirect | ||
golang.org/x/net v0.17.0 // indirect | ||
golang.org/x/oauth2 v0.12.0 // indirect | ||
golang.org/x/sys v0.13.0 // indirect | ||
golang.org/x/text v0.13.0 // indirect | ||
golang.org/x/time v0.3.0 // indirect | ||
golang.org/x/tools v0.13.0 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/genproto v0.0.0-20221227171554-f9683d7f8bef // indirect | ||
google.golang.org/grpc v1.52.0 // indirect | ||
google.golang.org/protobuf v1.28.1 // indirect | ||
google.golang.org/protobuf v1.31.0 // indirect | ||
gopkg.in/ini.v1 v1.67.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
Oops, something went wrong.