-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The goal is to bring the latest security and quality of life updates to the project.
- Loading branch information
1 parent
51f2439
commit e2f5c55
Showing
3 changed files
with
337 additions
and
1,585 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ jobs: | |
- uses: actions/[email protected] | ||
- uses: actions/[email protected] | ||
with: | ||
go-version: "1.21" | ||
go-version: "1.22" | ||
- uses: Jerome1337/[email protected] | ||
|
||
govet: | ||
|
@@ -22,7 +22,7 @@ jobs: | |
- uses: actions/[email protected] | ||
- uses: actions/[email protected] | ||
with: | ||
go-version: "1.21" | ||
go-version: "1.22" | ||
- run: | | ||
go vet ./... | ||
|
@@ -48,6 +48,6 @@ jobs: | |
- uses: actions/[email protected] | ||
- uses: actions/[email protected] | ||
with: | ||
go-version: "1.21" | ||
go-version: "1.22" | ||
- run: | | ||
go test ./... |
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,137 +1,144 @@ | ||
module github.com/RedHatInsights/sources-api-go | ||
|
||
go 1.21 | ||
go 1.23 | ||
|
||
toolchain go1.23.4 | ||
|
||
require ( | ||
github.com/99designs/gqlgen v0.17.49 | ||
github.com/99designs/gqlgen v0.17.63 | ||
github.com/RedHatInsights/rbac-client-go v1.0.0 | ||
github.com/RedHatInsights/tenant-utils v0.0.0-20220322192943-150a1a665a5f | ||
github.com/Unleash/unleash-client-go/v4 v4.1.0 | ||
github.com/RedHatInsights/tenant-utils v1.0.0 | ||
github.com/Unleash/unleash-client-go/v4 v4.1.4 | ||
github.com/alicebob/miniredis/v2 v2.17.0 | ||
github.com/aws/aws-sdk-go v1.42.22 | ||
github.com/aws/aws-sdk-go-v2 v1.17.1 | ||
github.com/aws/aws-sdk-go-v2/config v1.17.10 | ||
github.com/aws/aws-sdk-go-v2/credentials v1.12.23 | ||
github.com/gertd/go-pluralize v0.1.7 | ||
github.com/go-gormigrate/gormigrate/v2 v2.0.0 | ||
github.com/aws/aws-sdk-go v1.55.6 | ||
github.com/aws/aws-sdk-go-v2 v1.33.0 | ||
github.com/aws/aws-sdk-go-v2/config v1.29.1 | ||
github.com/aws/aws-sdk-go-v2/credentials v1.17.54 | ||
github.com/gertd/go-pluralize v0.2.1 | ||
github.com/go-gormigrate/gormigrate/v2 v2.1.3 | ||
github.com/go-redis/redis/v8 v8.11.5 | ||
github.com/golang-migrate/migrate/v4 v4.15.1 | ||
github.com/golang-migrate/migrate/v4 v4.18.1 | ||
github.com/google/go-cmp v0.6.0 | ||
github.com/google/uuid v1.6.0 | ||
github.com/hashicorp/vault/api v1.10.0 | ||
github.com/iancoleman/strcase v0.2.0 | ||
github.com/hashicorp/vault/api v1.15.0 | ||
github.com/iancoleman/strcase v0.3.0 | ||
github.com/jackc/pgconn v1.14.3 | ||
github.com/jackc/pgx/v4 v4.18.3 | ||
github.com/labstack/echo-contrib v0.12.0 | ||
github.com/labstack/echo/v4 v4.9.0 | ||
github.com/labstack/gommon v0.4.0 | ||
github.com/labstack/echo-contrib v0.17.2 | ||
github.com/labstack/echo/v4 v4.13.3 | ||
github.com/labstack/gommon v0.4.2 | ||
github.com/lindgrenj6/logrus_zinc v0.0.0-20220822152658-d8a0b604f3f9 | ||
github.com/prometheus/client_golang v1.12.1 | ||
github.com/redhatinsights/app-common-go v1.6.3 | ||
github.com/redhatinsights/platform-go-middlewares v0.19.0 | ||
github.com/redhatinsights/sources-superkey-worker v0.0.0-20220110114734-d076299a7d68 | ||
github.com/segmentio/kafka-go v0.4.25 | ||
github.com/sirupsen/logrus v1.9.0 | ||
github.com/spf13/viper v1.10.0 | ||
github.com/vektah/gqlparser/v2 v2.5.16 | ||
gorm.io/datatypes v1.0.1 | ||
gorm.io/driver/postgres v1.3.1 | ||
gorm.io/gorm v1.23.2 | ||
sigs.k8s.io/yaml v1.3.0 | ||
github.com/prometheus/client_golang v1.20.5 | ||
github.com/redhatinsights/app-common-go v1.6.8 | ||
github.com/redhatinsights/platform-go-middlewares v1.0.0 | ||
github.com/redhatinsights/sources-superkey-worker v0.0.0-20250116182658-11734b11295b | ||
github.com/segmentio/kafka-go v0.4.47 | ||
github.com/sirupsen/logrus v1.9.3 | ||
github.com/spf13/viper v1.19.0 | ||
github.com/vektah/gqlparser/v2 v2.5.21 | ||
gorm.io/datatypes v1.2.5 | ||
gorm.io/driver/postgres v1.5.11 | ||
gorm.io/gorm v1.25.12 | ||
sigs.k8s.io/yaml v1.4.0 | ||
) | ||
|
||
require ( | ||
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.19 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.25 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.19 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/ini v1.3.26 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.19 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sso v1.11.25 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.13.8 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sts v1.17.1 // indirect | ||
github.com/aws/smithy-go v1.13.4 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/go-jose/go-jose/v3 v3.0.3 // indirect | ||
github.com/hashicorp/go-secure-stdlib/parseutil v0.1.6 // indirect | ||
filippo.io/edwards25519 v1.1.0 // indirect | ||
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.24 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.28 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.28 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.1 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.1 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.9 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sso v1.24.11 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.28.10 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sts v1.33.9 // indirect | ||
github.com/aws/smithy-go v1.22.1 // indirect | ||
github.com/cenkalti/backoff/v4 v4.3.0 // indirect | ||
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect | ||
github.com/go-jose/go-jose/v4 v4.0.4 // indirect | ||
github.com/go-sql-driver/mysql v1.8.1 // indirect | ||
github.com/go-viper/mapstructure/v2 v2.2.1 // indirect | ||
github.com/hashicorp/go-secure-stdlib/parseutil v0.1.9 // indirect | ||
github.com/hashicorp/go-secure-stdlib/strutil v0.1.2 // indirect | ||
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/jackc/pgx/v5 v5.7.2 // indirect | ||
github.com/jackc/puddle/v2 v2.2.2 // indirect | ||
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect | ||
github.com/pelletier/go-toml/v2 v2.2.3 // indirect | ||
github.com/pierrec/lz4/v4 v4.1.22 // indirect | ||
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect | ||
github.com/sagikazarmark/locafero v0.7.0 // indirect | ||
github.com/sagikazarmark/slog-shim v0.1.0 // indirect | ||
github.com/sosodev/duration v1.3.1 // indirect | ||
github.com/stretchr/testify v1.9.0 // indirect | ||
github.com/xrash/smetrics v0.0.0-20240312152122-5f08fbb34913 // indirect | ||
golang.org/x/sync v0.7.0 // indirect | ||
github.com/sourcegraph/conc v0.3.0 // indirect | ||
github.com/stretchr/testify v1.10.0 // indirect | ||
github.com/xdg-go/pbkdf2 v1.0.0 // indirect | ||
github.com/xdg-go/scram v1.1.2 // indirect | ||
github.com/xdg-go/stringprep v1.0.4 // indirect | ||
github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 // indirect | ||
go.uber.org/multierr v1.11.0 // indirect | ||
golang.org/x/exp v0.0.0-20250106191152-7588d65b2ba8 // indirect | ||
golang.org/x/sync v0.10.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
gorm.io/driver/mysql v1.5.7 // indirect | ||
) | ||
|
||
require ( | ||
github.com/Masterminds/semver/v3 v3.1.1 // indirect | ||
github.com/agnivade/levenshtein v1.1.1 // indirect | ||
github.com/Masterminds/semver/v3 v3.3.1 // indirect | ||
github.com/agnivade/levenshtein v1.2.0 // indirect | ||
github.com/alicebob/gopher-json v0.0.0-20200520072559-a9ecdc9d1d3a // indirect | ||
github.com/aws/aws-sdk-go-v2/service/secretsmanager v1.16.3 | ||
github.com/aws/aws-sdk-go-v2/service/secretsmanager v1.34.13 | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/cenkalti/backoff/v3 v3.0.0 // indirect | ||
github.com/cespare/xxhash/v2 v2.1.2 // indirect | ||
github.com/cpuguy83/go-md2man/v2 v2.0.4 // indirect | ||
github.com/cespare/xxhash/v2 v2.3.0 // indirect | ||
github.com/cpuguy83/go-md2man/v2 v2.0.6 // indirect | ||
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect | ||
github.com/fsnotify/fsnotify v1.5.1 // indirect | ||
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/golang/snappy v0.0.4 // indirect | ||
github.com/gorilla/websocket v1.5.0 // indirect | ||
github.com/fsnotify/fsnotify v1.8.0 // indirect | ||
github.com/gorilla/websocket v1.5.3 // indirect | ||
github.com/hashicorp/errwrap v1.1.0 // indirect | ||
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect | ||
github.com/hashicorp/go-multierror v1.1.1 // indirect | ||
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect | ||
github.com/hashicorp/go-rootcerts v1.0.2 // indirect | ||
github.com/hashicorp/go-sockaddr v1.0.2 // indirect | ||
github.com/hashicorp/go-sockaddr v1.0.7 // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/jackc/chunkreader/v2 v2.0.1 // indirect | ||
github.com/jackc/pgio v1.0.0 // indirect | ||
github.com/jackc/pgpassfile v1.0.0 // indirect | ||
github.com/jackc/pgproto3/v2 v2.3.3 // indirect | ||
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect | ||
github.com/jackc/pgtype v1.14.0 // indirect | ||
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect | ||
github.com/jackc/pgtype v1.14.4 // indirect | ||
github.com/jinzhu/inflection v1.0.0 // indirect | ||
github.com/jinzhu/now v1.1.5 // indirect | ||
github.com/jmespath/go-jmespath v0.4.0 // indirect | ||
github.com/klauspost/compress v1.13.6 // indirect | ||
github.com/lindgrenj6/sources-api-client-go v0.0.0-20210215174124-caba6974c015 // indirect | ||
github.com/magiconair/properties v1.8.5 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/klauspost/compress v1.17.11 // indirect | ||
github.com/magiconair/properties v1.8.9 // indirect | ||
github.com/mattn/go-colorable v0.1.14 // indirect | ||
github.com/mattn/go-isatty v0.0.20 // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect | ||
github.com/mitchellh/go-homedir v1.1.0 // indirect | ||
github.com/mitchellh/mapstructure v1.5.0 // indirect | ||
github.com/pelletier/go-toml v1.9.4 // indirect | ||
github.com/pierrec/lz4 v2.6.1+incompatible // indirect | ||
github.com/prometheus/client_model v0.2.0 // indirect | ||
github.com/prometheus/common v0.32.1 // indirect | ||
github.com/prometheus/procfs v0.7.3 // indirect | ||
github.com/prometheus/client_model v0.6.1 // indirect | ||
github.com/prometheus/common v0.62.0 // indirect | ||
github.com/prometheus/procfs v0.15.1 // indirect | ||
github.com/russross/blackfriday/v2 v2.1.0 // indirect | ||
github.com/ryanuber/go-glob v1.0.0 // indirect | ||
github.com/spf13/afero v1.6.0 // indirect | ||
github.com/spf13/cast v1.4.1 // indirect | ||
github.com/spf13/jwalterweatherman v1.1.0 // indirect | ||
github.com/spf13/afero v1.12.0 // indirect | ||
github.com/spf13/cast v1.7.1 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/stretchr/objx v0.5.2 // indirect | ||
github.com/subosito/gotenv v1.2.0 // indirect | ||
github.com/twmb/murmur3 v1.1.5 // indirect | ||
github.com/urfave/cli/v2 v2.27.2 // indirect | ||
github.com/subosito/gotenv v1.6.0 // indirect | ||
github.com/twmb/murmur3 v1.1.8 // indirect | ||
github.com/urfave/cli/v2 v2.27.5 // indirect | ||
github.com/valyala/bytebufferpool v1.0.0 // indirect | ||
github.com/valyala/fasttemplate v1.2.1 // indirect | ||
github.com/xdg/scram v0.0.0-20180814205039-7eeb5667e42c // indirect | ||
github.com/xdg/stringprep v1.0.0 // indirect | ||
github.com/valyala/fasttemplate v1.2.2 // indirect | ||
github.com/yuin/gopher-lua v0.0.0-20200816102855-ee81675732da // indirect | ||
golang.org/x/crypto v0.24.0 // indirect | ||
golang.org/x/mod v0.18.0 // indirect | ||
golang.org/x/net v0.26.0 // indirect | ||
golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 // indirect | ||
golang.org/x/sys v0.21.0 // indirect | ||
golang.org/x/text v0.16.0 | ||
golang.org/x/time v0.0.0-20201208040808-7e3f01d25324 // indirect | ||
golang.org/x/tools v0.22.0 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/protobuf v1.34.1 // indirect | ||
gopkg.in/ini.v1 v1.66.2 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
golang.org/x/crypto v0.32.0 // indirect | ||
golang.org/x/mod v0.22.0 // indirect | ||
golang.org/x/net v0.34.0 // indirect | ||
golang.org/x/sys v0.29.0 // indirect | ||
golang.org/x/text v0.21.0 | ||
golang.org/x/time v0.9.0 // indirect | ||
golang.org/x/tools v0.29.0 // indirect | ||
google.golang.org/protobuf v1.36.3 // indirect | ||
gopkg.in/ini.v1 v1.67.0 // indirect | ||
) |
Oops, something went wrong.