2019-04-16 05:00:55 -05:00
|
|
|
module github.com/grafana/grafana
|
|
|
|
|
2022-11-04 09:20:08 -05:00
|
|
|
go 1.19
|
2019-04-16 05:00:55 -05:00
|
|
|
|
2020-07-13 06:19:40 -05:00
|
|
|
// Override xorm's outdated go-mssqldb dependency, since we can't upgrade to current xorm (due to breaking changes).
|
|
|
|
// We need a more current go-mssqldb so we get rid of a version of apache/thrift with vulnerabilities.
|
2021-03-26 07:16:57 -05:00
|
|
|
// Also, use our fork with fixes for unimplemented methods (required for Go 1.16).
|
|
|
|
replace github.com/denisenkom/go-mssqldb => github.com/grafana/go-mssqldb v0.0.0-20210326084033-d0ce3c521036
|
2020-07-13 06:19:40 -05:00
|
|
|
|
2020-08-25 04:52:21 -05:00
|
|
|
// Override k8s.io/client-go outdated dependency, which is an indirect dependency of grafana/loki.
|
|
|
|
// It's also present on grafana/loki's go.mod so we'll need till it gets updated.
|
2022-12-13 09:41:16 -06:00
|
|
|
replace k8s.io/client-go => k8s.io/client-go v0.25.0
|
2020-08-25 04:52:21 -05:00
|
|
|
|
2021-10-18 12:50:10 -05:00
|
|
|
replace github.com/russellhaering/goxmldsig@v1.1.0 => github.com/russellhaering/goxmldsig v1.1.1
|
|
|
|
|
2022-09-20 10:39:46 -05:00
|
|
|
// Avoid using v2.0.0+incompatible Redigo used by dependencies as the latest maintained branch of Redigo is v1.
|
|
|
|
replace github.com/gomodule/redigo => github.com/gomodule/redigo v1.8.9
|
|
|
|
|
2022-11-05 02:52:21 -05:00
|
|
|
// Override docker/docker to avoid:
|
|
|
|
// go: github.com/drone-runners/drone-runner-docker@v1.8.2 requires
|
|
|
|
// github.com/docker/docker@v0.0.0-00010101000000-000000000000: invalid version: unknown revision 000000000000
|
|
|
|
replace github.com/docker/docker => github.com/moby/moby v0.7.3-0.20190826074503-38ab9da00309
|
|
|
|
|
2019-04-16 05:00:55 -05:00
|
|
|
require (
|
2022-11-05 02:52:21 -05:00
|
|
|
cloud.google.com/go/storage v1.22.1
|
2022-05-05 10:56:53 -05:00
|
|
|
cuelang.org/go v0.4.3
|
2022-10-28 06:33:37 -05:00
|
|
|
github.com/Azure/azure-sdk-for-go v65.0.0+incompatible
|
|
|
|
github.com/Azure/go-autorest/autorest v0.11.27
|
2022-06-17 12:46:20 -05:00
|
|
|
github.com/BurntSushi/toml v1.1.0
|
2021-05-11 03:44:00 -05:00
|
|
|
github.com/Masterminds/semver v1.5.0
|
2019-04-16 05:00:55 -05:00
|
|
|
github.com/VividCortex/mysqlerr v0.0.0-20170204212430-6c6b55f8796f
|
2022-11-28 05:39:12 -06:00
|
|
|
github.com/aws/aws-sdk-go v1.44.146
|
2020-10-08 09:42:55 -05:00
|
|
|
github.com/beevik/etree v1.1.0
|
2022-10-03 08:58:41 -05:00
|
|
|
github.com/benbjohnson/clock v1.3.0
|
2020-08-25 04:52:21 -05:00
|
|
|
github.com/bradfitz/gomemcache v0.0.0-20190913173617-a41fca850d0b
|
2022-09-20 10:39:46 -05:00
|
|
|
github.com/centrifugal/centrifuge v0.25.0
|
2021-10-18 12:50:10 -05:00
|
|
|
github.com/cortexproject/cortex v1.10.1-0.20211014125347-85c378182d0d
|
2022-07-28 01:43:30 -05:00
|
|
|
github.com/crewjam/saml v0.4.8
|
2022-04-15 09:48:44 -05:00
|
|
|
github.com/denisenkom/go-mssqldb v0.12.0
|
2022-04-14 13:54:35 -05:00
|
|
|
github.com/fatih/color v1.13.0
|
2020-10-19 13:06:12 -05:00
|
|
|
github.com/gchaincl/sqlhooks v1.3.0
|
2022-04-21 12:23:54 -05:00
|
|
|
github.com/getsentry/sentry-go v0.13.0
|
2022-07-05 12:54:07 -05:00
|
|
|
github.com/go-git/go-git/v5 v5.4.2
|
2022-12-14 05:32:45 -06:00
|
|
|
github.com/go-kit/kit v0.12.0 // indirect
|
2022-10-07 04:10:20 -05:00
|
|
|
github.com/go-openapi/strfmt v0.21.3
|
2021-10-18 12:50:10 -05:00
|
|
|
github.com/go-redis/redis/v8 v8.11.4
|
2021-02-04 00:37:28 -06:00
|
|
|
github.com/go-sourcemap/sourcemap v2.1.3+incompatible
|
2021-05-10 05:02:26 -05:00
|
|
|
github.com/go-sql-driver/mysql v1.6.0
|
2022-08-11 16:54:32 -05:00
|
|
|
github.com/go-stack/stack v1.8.1
|
2019-04-16 08:26:39 -05:00
|
|
|
github.com/gobwas/glob v0.2.3
|
2022-11-30 15:16:57 -06:00
|
|
|
github.com/gofrs/uuid v4.3.0+incompatible
|
2021-09-09 11:19:29 -05:00
|
|
|
github.com/gogo/protobuf v1.3.2
|
2021-08-31 01:19:26 -05:00
|
|
|
github.com/golang/mock v1.6.0
|
2021-09-09 11:19:29 -05:00
|
|
|
github.com/golang/snappy v0.0.4
|
2022-10-28 06:33:37 -05:00
|
|
|
github.com/google/go-cmp v0.5.9
|
2021-08-04 10:41:07 -05:00
|
|
|
github.com/google/uuid v1.3.0
|
2021-08-31 01:19:26 -05:00
|
|
|
github.com/google/wire v0.5.0
|
2022-09-20 10:39:46 -05:00
|
|
|
github.com/gorilla/websocket v1.5.0
|
2022-12-20 03:55:41 -06:00
|
|
|
github.com/grafana/alerting v0.0.0-20221219210434-60ecaff51745
|
2022-09-26 10:26:18 -05:00
|
|
|
github.com/grafana/cuetsy v0.1.1
|
2022-09-30 06:51:28 -05:00
|
|
|
github.com/grafana/grafana-aws-sdk v0.11.0
|
2022-12-20 09:20:31 -06:00
|
|
|
github.com/grafana/grafana-azure-sdk-go v1.5.1
|
2022-12-15 08:28:25 -06:00
|
|
|
github.com/grafana/grafana-plugin-sdk-go v0.147.0
|
2022-11-15 07:48:31 -06:00
|
|
|
github.com/grafana/thema v0.0.0-20221113112305-b441ed85a1fd
|
2021-05-06 10:10:51 -05:00
|
|
|
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0
|
2022-04-14 13:54:35 -05:00
|
|
|
github.com/hashicorp/go-hclog v1.0.0
|
2021-11-15 06:22:10 -06:00
|
|
|
github.com/hashicorp/go-plugin v1.4.3
|
2021-04-05 05:39:49 -05:00
|
|
|
github.com/hashicorp/go-version v1.3.0
|
2022-01-20 16:31:16 -06:00
|
|
|
github.com/influxdata/influxdb-client-go/v2 v2.6.0
|
2021-06-09 13:15:42 -05:00
|
|
|
github.com/influxdata/line-protocol v0.0.0-20210311194329-9aa0e372d097
|
2020-10-28 03:36:57 -05:00
|
|
|
github.com/jmespath/go-jmespath v0.4.0
|
2021-11-15 06:22:10 -06:00
|
|
|
github.com/json-iterator/go v1.1.12
|
2021-02-09 03:55:38 -06:00
|
|
|
github.com/jung-kurt/gofpdf v1.16.2
|
2022-11-29 09:37:45 -06:00
|
|
|
github.com/lib/pq v1.10.7
|
2021-02-15 02:12:10 -06:00
|
|
|
github.com/linkedin/goavro/v2 v2.10.0
|
2021-08-31 01:19:26 -05:00
|
|
|
github.com/m3db/prometheus_remote_client_golang v0.4.4
|
2022-12-15 08:28:25 -06:00
|
|
|
github.com/magefile/mage v1.14.0
|
2022-04-14 13:54:35 -05:00
|
|
|
github.com/mattn/go-isatty v0.0.14
|
2022-11-10 08:49:28 -06:00
|
|
|
github.com/mattn/go-sqlite3 v1.14.16
|
2022-10-07 04:10:20 -05:00
|
|
|
github.com/matttproud/golang_protobuf_extensions v1.0.2
|
2021-06-09 11:13:21 -05:00
|
|
|
github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f
|
2020-08-25 04:52:21 -05:00
|
|
|
github.com/opentracing/opentracing-go v1.2.0
|
2019-04-16 05:00:55 -05:00
|
|
|
github.com/patrickmn/go-cache v2.1.0+incompatible
|
2022-02-15 10:54:27 -06:00
|
|
|
github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8 // indirect
|
2020-04-25 15:48:20 -05:00
|
|
|
github.com/pkg/errors v0.9.1
|
2022-10-04 04:41:34 -05:00
|
|
|
github.com/prometheus/alertmanager v0.24.1-0.20221003101219-ae510d09c048
|
2022-11-08 01:35:05 -06:00
|
|
|
github.com/prometheus/client_golang v1.13.1
|
2020-07-27 02:26:16 -05:00
|
|
|
github.com/prometheus/client_model v0.2.0
|
2022-08-18 12:44:31 -05:00
|
|
|
github.com/prometheus/common v0.37.0
|
2021-10-18 12:50:10 -05:00
|
|
|
github.com/prometheus/prometheus v1.8.2-0.20211011171444-354d8d2ecfac
|
2021-01-11 05:09:11 -06:00
|
|
|
github.com/robfig/cron/v3 v3.0.1
|
2021-09-23 05:33:31 -05:00
|
|
|
github.com/russellhaering/goxmldsig v1.1.1
|
2022-11-29 09:37:45 -06:00
|
|
|
github.com/stretchr/testify v1.8.1
|
2019-04-16 05:00:55 -05:00
|
|
|
github.com/teris-io/shortid v0.0.0-20171029131806-771a37caa5cf
|
2021-12-17 09:43:43 -06:00
|
|
|
github.com/ua-parser/uap-go v0.0.0-20211112212520-00c877edfe0f
|
2021-08-04 10:41:07 -05:00
|
|
|
github.com/uber/jaeger-client-go v2.29.1+incompatible
|
2021-01-11 04:50:00 -06:00
|
|
|
github.com/urfave/cli/v2 v2.3.0
|
2022-03-26 13:57:29 -05:00
|
|
|
github.com/vectordotdev/go-datemath v0.1.1-0.20220323213446-f3954d0b18ae
|
2022-04-15 09:48:44 -05:00
|
|
|
github.com/weaveworks/common v0.0.0-20210913144402-035033b78a78 // indirect
|
2020-03-18 09:30:07 -05:00
|
|
|
github.com/xorcare/pointer v1.1.0
|
2022-08-22 11:11:45 -05:00
|
|
|
github.com/yalue/merged_fs v1.2.2
|
2019-04-16 05:00:55 -05:00
|
|
|
github.com/yudai/gojsondiff v1.0.0
|
2021-08-04 10:41:07 -05:00
|
|
|
go.opentelemetry.io/collector v0.31.0
|
2021-08-06 07:06:56 -05:00
|
|
|
go.opentelemetry.io/collector/model v0.31.0
|
2022-10-28 06:33:37 -05:00
|
|
|
go.opentelemetry.io/otel v1.7.0
|
2021-10-06 12:43:25 -05:00
|
|
|
go.opentelemetry.io/otel/exporters/jaeger v1.0.0
|
2022-10-28 06:33:37 -05:00
|
|
|
go.opentelemetry.io/otel/sdk v1.7.0
|
|
|
|
go.opentelemetry.io/otel/trace v1.7.0
|
2022-11-29 09:37:45 -06:00
|
|
|
golang.org/x/crypto v0.3.0
|
2022-06-20 04:24:21 -05:00
|
|
|
golang.org/x/exp v0.0.0-20220613132600-b0d781184e0d
|
2022-11-30 15:16:57 -06:00
|
|
|
golang.org/x/net v0.2.0
|
2022-11-29 09:37:45 -06:00
|
|
|
golang.org/x/oauth2 v0.2.0
|
Reconcile coremodels, entities, objects under new kind framework (#56492)
* Update thema to latest
* Deal with s/Library/*Runtime/
* Commit new, working results of codegen
* We like pointers now
* Always take runtime arg for NewBase()
* Sketchy handwavy pass at entity meta framework
* Little nibbles
* Update pkg/framework/coremodel/entityframework.cue
Co-authored-by: Artur Wierzbicki <wierzbicki.artur.94@gmail.com>
* Move file into new framework location
* Introduce loaders, Go code
* Complete rename to kind
* Flesh out framework, add svg/dashboard examples
* Cruft removal
* Remove generated kind go files from gitignore
* Refine maturity concept, add SlotKind
* Update embed and go deps
* Export PrefixWithGrafanaCUE
* Make the loader actually work, holy crap
* Many small tweaks to type.cue
* Add Apache 2 licensing exceptions for kinds
* Add new kinds dir, start of generator
* Roll back to earlier oapi-codegen
* Introduce new grafana-specific CUE loaders
* Introduce new tidy code generators framework
* Catch up kind framework with tinkering
* Add slices for the generators
* Add write/verify step to main generator
* Many renames
* Split up kind framework cue files
* Use kind.Decl within generated kinds
* Create kind.SomeDecl wrapper type to cache lineages
* Better names again
* Get one generated implemented, hopefully
* Copy dashboard schema into new kind.cue
* Small fixes to make the initial gen work
* Put svg kind in its new home
* Add generated Go dashboard type
* More renames and cleanups
* Add base kind registry and generator
* Stop blacklisting *_gen.go files
This is not the Go best practice, anyway. All we actually want to ignore
for enterprise is generated wire files.
* Change codegen output directories
pkg/kind -> pkg/kinds
pkg/registry/kindreg -> pkg/registry/corekind
* Rename pkg/framework/kind to pkg/kindsys
* Add core structured kind generator
* Add plural and machine names to kind spec
* Copy playlist over to kind system
* Consolidate kindsys files
* Add raw kind generator
* Update CODEOWNERS for kind framework
* Touch up comments a bit
* More docs tweaks
* Remove generated types to reduce noise for review
* Split each generator into its own file
* Rename Slot kind to Composable kind
* Add handwavy types for customkind loading
* Guard against init calls to framework loader
* First pass at doc on extending the kind system
* Improve attribute example in docs
* Fix wire imports
* Add basic TS types generator
* Fix composable kind category def
* No need for a separate file with generate directive
* Catch dashboard schema up
* Rename generator types to something saner and generic
* Make version configurable in ts/go generators
* Add CommonMeta to ease property access
* Add kindsys prop indicating whether lineage is group
* Put all kind categories back in a single file
* Finish with kindsys group props
* Refactor maturity progression per discussion
- Replace "committed" with "merged"
- All kindcats can use all maturity levels, at least for now
* Convert ts veneer index generator to modular system
* Move over to new jennywrites framework
* Strip down old coremodel generator
* Use public version of jennywrites
* Pull latest thema
* Commit generated Go types
* Add header injection postprocessor
* Move sdboyer/jennywrites to grafana/codejen
* Tweak header output
* Remove dashboard and playlist coremodels
* Fix up backend dashboards devenv test
* Fix TS import patterns to new gen filename
* Update internal imports, remove coremodel registry
* Fix compilation errors, wire generation
* Export and replace the prefix dropper
* More Go struct and field name changes
* Last name fixes, hopefully
* Fix lint errors
* Last lint error
Co-authored-by: Artur Wierzbicki <wierzbicki.artur.94@gmail.com>
2022-11-10 14:36:40 -06:00
|
|
|
golang.org/x/sync v0.1.0
|
2022-11-29 09:37:45 -06:00
|
|
|
golang.org/x/time v0.2.0
|
|
|
|
golang.org/x/tools v0.3.0
|
2022-04-06 11:10:58 -05:00
|
|
|
gonum.org/v1/gonum v0.11.0
|
2022-11-05 02:52:21 -05:00
|
|
|
google.golang.org/api v0.84.0
|
2022-10-28 06:33:37 -05:00
|
|
|
google.golang.org/grpc v1.47.0
|
2022-08-18 12:44:31 -05:00
|
|
|
google.golang.org/protobuf v1.28.1
|
2021-04-22 08:06:32 -05:00
|
|
|
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
|
2022-11-29 09:37:45 -06:00
|
|
|
gopkg.in/ini.v1 v1.67.0
|
2021-04-29 12:29:42 -05:00
|
|
|
gopkg.in/ldap.v3 v3.1.0
|
2019-04-16 05:00:55 -05:00
|
|
|
gopkg.in/mail.v2 v2.3.1
|
2021-01-11 07:56:08 -06:00
|
|
|
gopkg.in/square/go-jose.v2 v2.5.1
|
2022-12-06 14:17:17 -06:00
|
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
2022-06-14 12:33:49 -05:00
|
|
|
gopkg.in/yaml.v3 v3.0.1
|
2021-09-23 05:33:31 -05:00
|
|
|
xorm.io/builder v0.3.6
|
2020-04-01 08:57:21 -05:00
|
|
|
xorm.io/core v0.7.3
|
2021-02-15 02:59:39 -06:00
|
|
|
xorm.io/xorm v0.8.2
|
2021-04-09 14:17:22 -05:00
|
|
|
)
|
2021-05-26 02:31:19 -05:00
|
|
|
|
2021-08-31 01:19:26 -05:00
|
|
|
require (
|
2022-12-20 09:20:31 -06:00
|
|
|
github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0 // indirect
|
2021-11-09 11:33:54 -06:00
|
|
|
github.com/Azure/go-autorest v14.2.0+incompatible // indirect
|
|
|
|
github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect
|
|
|
|
github.com/Azure/go-autorest/autorest/to v0.4.0 // indirect
|
|
|
|
github.com/Azure/go-autorest/autorest/validation v0.3.1 // indirect
|
|
|
|
github.com/Azure/go-autorest/logger v0.2.1 // indirect
|
|
|
|
github.com/Azure/go-autorest/tracing v0.6.0 // indirect
|
2022-09-20 10:39:46 -05:00
|
|
|
github.com/FZambia/eagle v0.0.2 // indirect
|
2021-08-31 01:19:26 -05:00
|
|
|
github.com/FZambia/sentinel v1.1.0 // indirect
|
2022-08-11 16:54:32 -05:00
|
|
|
github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137 // indirect
|
2022-10-28 06:33:37 -05:00
|
|
|
github.com/andybalholm/brotli v1.0.4
|
2022-01-20 08:06:26 -06:00
|
|
|
github.com/apache/arrow/go/arrow v0.0.0-20211112161151-bc219186db40 // indirect
|
2021-08-31 01:19:26 -05:00
|
|
|
github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d // indirect
|
|
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
2022-10-07 04:10:20 -05:00
|
|
|
github.com/cenkalti/backoff/v4 v4.1.3 // indirect
|
2022-09-20 10:39:46 -05:00
|
|
|
github.com/centrifugal/protocol v0.8.10 // indirect
|
2021-09-21 15:51:47 -05:00
|
|
|
github.com/cespare/xxhash/v2 v2.1.2 // indirect
|
2021-08-31 01:19:26 -05:00
|
|
|
github.com/cheekybits/genny v1.0.0 // indirect
|
2021-09-29 03:59:05 -05:00
|
|
|
github.com/cockroachdb/apd/v2 v2.0.2 // indirect
|
2022-05-26 20:21:37 -05:00
|
|
|
github.com/deepmap/oapi-codegen v1.10.1
|
2021-09-21 15:51:47 -05:00
|
|
|
github.com/dennwc/varint v1.0.0 // indirect
|
2021-09-20 15:21:59 -05:00
|
|
|
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
|
2021-08-31 01:19:26 -05:00
|
|
|
github.com/docker/go-units v0.4.0 // indirect
|
|
|
|
github.com/edsrzf/mmap-go v1.0.0 // indirect
|
2022-05-21 19:44:12 -05:00
|
|
|
github.com/emicklei/proto v1.10.0 // indirect
|
2021-08-31 01:19:26 -05:00
|
|
|
github.com/felixge/httpsnoop v1.0.2 // indirect
|
2022-10-07 04:10:20 -05:00
|
|
|
github.com/go-kit/log v0.2.1
|
2021-09-21 15:51:47 -05:00
|
|
|
github.com/go-logfmt/logfmt v0.5.1 // indirect
|
2022-10-07 04:10:20 -05:00
|
|
|
github.com/go-openapi/analysis v0.21.4 // indirect
|
|
|
|
github.com/go-openapi/errors v0.20.3 // indirect
|
2021-08-31 01:19:26 -05:00
|
|
|
github.com/go-openapi/jsonpointer v0.19.5 // indirect
|
2022-10-03 08:58:41 -05:00
|
|
|
github.com/go-openapi/jsonreference v0.20.0 // indirect
|
2022-10-07 04:10:20 -05:00
|
|
|
github.com/go-openapi/loads v0.21.2
|
|
|
|
github.com/go-openapi/runtime v0.24.1 // indirect
|
|
|
|
github.com/go-openapi/spec v0.20.7 // indirect
|
|
|
|
github.com/go-openapi/swag v0.22.3 // indirect
|
2022-10-03 08:58:41 -05:00
|
|
|
github.com/go-openapi/validate v0.22.0 // indirect
|
2021-08-31 01:19:26 -05:00
|
|
|
github.com/gogo/googleapis v1.4.1 // indirect
|
2021-10-18 12:50:10 -05:00
|
|
|
github.com/gogo/status v1.1.0 // indirect
|
2022-07-28 01:43:30 -05:00
|
|
|
github.com/golang-jwt/jwt/v4 v4.4.2 // indirect
|
2021-08-31 01:19:26 -05:00
|
|
|
github.com/golang-sql/civil v0.0.0-20190719163853-cb61b32ac6fe // indirect
|
2022-05-05 03:37:26 -05:00
|
|
|
github.com/golang/glog v1.0.0 // indirect
|
2021-08-31 01:19:26 -05:00
|
|
|
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
|
2022-06-30 03:24:44 -05:00
|
|
|
github.com/golang/protobuf v1.5.2
|
2021-08-31 01:19:26 -05:00
|
|
|
github.com/gomodule/redigo v2.0.0+incompatible // indirect
|
|
|
|
github.com/google/btree v1.0.1 // indirect
|
2022-10-28 06:33:37 -05:00
|
|
|
github.com/google/flatbuffers v2.0.5+incompatible // indirect
|
2022-11-05 02:52:21 -05:00
|
|
|
github.com/googleapis/gax-go/v2 v2.4.0
|
2022-10-28 06:33:37 -05:00
|
|
|
github.com/gorilla/mux v1.8.0
|
2021-11-10 07:58:04 -06:00
|
|
|
github.com/grafana/grafana-google-sdk-go v0.0.0-20211104130251-b190293eaf58
|
2021-08-31 01:19:26 -05:00
|
|
|
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.1-0.20191002090509-6af20e3a5340 // indirect
|
2022-04-22 09:59:10 -05:00
|
|
|
github.com/hashicorp/errwrap v1.1.0 // indirect
|
2021-08-31 01:19:26 -05:00
|
|
|
github.com/hashicorp/go-msgpack v0.5.5 // indirect
|
2022-05-26 20:21:37 -05:00
|
|
|
github.com/hashicorp/go-multierror v1.1.1
|
2021-08-31 01:19:26 -05:00
|
|
|
github.com/hashicorp/go-sockaddr v1.0.2 // indirect
|
2022-07-28 01:43:30 -05:00
|
|
|
github.com/hashicorp/golang-lru v0.5.4 // indirect
|
2021-10-28 09:41:10 -05:00
|
|
|
github.com/hashicorp/yamux v0.0.0-20210826001029-26ff87cf9493 // indirect
|
2022-09-20 10:39:46 -05:00
|
|
|
github.com/igm/sockjs-go/v3 v3.0.2 // indirect
|
2021-08-31 01:19:26 -05:00
|
|
|
github.com/jessevdk/go-flags v1.5.0 // indirect
|
2022-07-28 01:43:30 -05:00
|
|
|
github.com/jonboulle/clockwork v0.3.0 // indirect
|
2021-08-31 01:19:26 -05:00
|
|
|
github.com/josharian/intern v1.0.0 // indirect
|
|
|
|
github.com/jpillora/backoff v1.0.0 // indirect
|
|
|
|
github.com/mailru/easyjson v0.7.7 // indirect
|
2021-10-08 06:19:04 -05:00
|
|
|
github.com/mattermost/xml-roundtrip-validator v0.1.0 // indirect
|
2021-08-31 01:19:26 -05:00
|
|
|
github.com/mattetti/filebuffer v1.0.1 // indirect
|
2022-10-28 06:33:37 -05:00
|
|
|
github.com/mattn/go-runewidth v0.0.13 // indirect
|
|
|
|
github.com/miekg/dns v1.1.49 // indirect
|
2021-08-31 01:19:26 -05:00
|
|
|
github.com/mitchellh/go-testing-interface v1.14.0 // indirect
|
2021-11-08 09:52:12 -06:00
|
|
|
github.com/mna/redisc v1.3.2 // indirect
|
2021-08-31 01:19:26 -05:00
|
|
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
2021-11-15 06:22:10 -06:00
|
|
|
github.com/modern-go/reflect2 v1.0.2 // indirect
|
2021-08-31 01:19:26 -05:00
|
|
|
github.com/mpvl/unique v0.0.0-20150818121801-cbe035fff7de // indirect
|
|
|
|
github.com/oklog/run v1.1.0 // indirect
|
|
|
|
github.com/oklog/ulid v1.3.1 // indirect
|
2022-11-30 16:52:15 -06:00
|
|
|
github.com/olekukonko/tablewriter v0.0.5
|
2021-08-31 01:19:26 -05:00
|
|
|
github.com/opentracing-contrib/go-grpc v0.0.0-20210225150812-73cb765af46e // indirect
|
|
|
|
github.com/opentracing-contrib/go-stdlib v1.0.0 // indirect
|
|
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
2021-09-09 11:25:22 -05:00
|
|
|
github.com/prometheus/common/sigv4 v0.1.0 // indirect
|
2022-08-11 16:54:32 -05:00
|
|
|
github.com/prometheus/exporter-toolkit v0.7.1 // indirect
|
2021-08-31 01:19:26 -05:00
|
|
|
github.com/prometheus/node_exporter v1.0.0-rc.0.0.20200428091818-01054558c289 // indirect
|
2022-08-18 12:44:31 -05:00
|
|
|
github.com/prometheus/procfs v0.8.0 // indirect
|
2022-05-21 19:44:12 -05:00
|
|
|
github.com/protocolbuffers/txtpbfmt v0.0.0-20220428173112-74888fd59c2b // indirect
|
2022-04-21 12:23:54 -05:00
|
|
|
github.com/rs/cors v1.8.2 // indirect
|
2021-08-31 01:19:26 -05:00
|
|
|
github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529 // indirect
|
2022-09-20 10:39:46 -05:00
|
|
|
github.com/segmentio/encoding v0.3.5
|
2021-08-31 01:19:26 -05:00
|
|
|
github.com/sercand/kuberesolver v2.4.0+incompatible // indirect
|
2022-07-05 12:54:07 -05:00
|
|
|
github.com/sergi/go-diff v1.1.0 // indirect
|
2021-08-31 01:19:26 -05:00
|
|
|
github.com/shurcooL/httpfs v0.0.0-20190707220628-8d4bc4ba7749 // indirect
|
|
|
|
github.com/shurcooL/vfsgen v0.0.0-20200824052919-0d455de96546 // indirect
|
2022-11-05 02:52:21 -05:00
|
|
|
github.com/sirupsen/logrus v1.9.0 // indirect
|
2022-11-29 09:37:45 -06:00
|
|
|
github.com/stretchr/objx v0.5.0 // indirect
|
2021-08-31 01:19:26 -05:00
|
|
|
github.com/uber/jaeger-lib v2.4.1+incompatible // indirect
|
2021-09-07 13:05:24 -05:00
|
|
|
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
2021-08-31 01:19:26 -05:00
|
|
|
github.com/weaveworks/promrus v1.2.0 // indirect
|
|
|
|
github.com/yudai/golcs v0.0.0-20170316035057-ecda9a501e82 // indirect
|
2022-10-07 04:10:20 -05:00
|
|
|
go.mongodb.org/mongo-driver v1.10.0 // indirect
|
2021-08-31 01:19:26 -05:00
|
|
|
go.opencensus.io v0.23.0 // indirect
|
2022-11-29 09:37:45 -06:00
|
|
|
go.uber.org/atomic v1.10.0
|
2022-04-22 09:59:10 -05:00
|
|
|
go.uber.org/goleak v1.1.12 // indirect
|
2022-11-29 09:37:45 -06:00
|
|
|
golang.org/x/sys v0.2.0 // indirect
|
2022-11-02 08:28:43 -05:00
|
|
|
golang.org/x/text v0.4.0
|
2022-11-05 02:52:21 -05:00
|
|
|
golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f // indirect
|
2021-08-31 01:19:26 -05:00
|
|
|
google.golang.org/appengine v1.6.7 // indirect
|
2022-10-28 06:33:37 -05:00
|
|
|
google.golang.org/genproto v0.0.0-20220708155623-50e5f4832e73
|
2021-08-31 01:19:26 -05:00
|
|
|
gopkg.in/asn1-ber.v1 v1.0.0-20181015200546-f715ec2f112d // indirect
|
|
|
|
)
|
|
|
|
|
2022-02-15 10:54:27 -06:00
|
|
|
require (
|
2022-04-15 09:48:44 -05:00
|
|
|
cloud.google.com/go/kms v1.4.0
|
2022-12-20 09:20:31 -06:00
|
|
|
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.2.0
|
|
|
|
github.com/Azure/azure-sdk-for-go/sdk/keyvault/azkeys v0.9.0
|
2022-11-01 07:02:17 -05:00
|
|
|
github.com/Azure/azure-storage-blob-go v0.15.0
|
2022-10-28 06:33:37 -05:00
|
|
|
github.com/Azure/go-autorest/autorest/adal v0.9.20
|
2022-04-21 14:27:43 -05:00
|
|
|
github.com/armon/go-radix v1.0.0
|
2022-07-04 03:33:07 -05:00
|
|
|
github.com/blugelabs/bluge v0.1.9
|
2022-07-28 01:43:30 -05:00
|
|
|
github.com/blugelabs/bluge_segment_api v0.2.0
|
2022-10-28 06:33:37 -05:00
|
|
|
github.com/bufbuild/connect-go v1.0.0
|
2022-08-31 07:54:32 -05:00
|
|
|
github.com/dlmiddlecote/sqlstats v1.0.2
|
2022-11-05 02:52:21 -05:00
|
|
|
github.com/drone/drone-cli v1.6.1
|
Reconcile coremodels, entities, objects under new kind framework (#56492)
* Update thema to latest
* Deal with s/Library/*Runtime/
* Commit new, working results of codegen
* We like pointers now
* Always take runtime arg for NewBase()
* Sketchy handwavy pass at entity meta framework
* Little nibbles
* Update pkg/framework/coremodel/entityframework.cue
Co-authored-by: Artur Wierzbicki <wierzbicki.artur.94@gmail.com>
* Move file into new framework location
* Introduce loaders, Go code
* Complete rename to kind
* Flesh out framework, add svg/dashboard examples
* Cruft removal
* Remove generated kind go files from gitignore
* Refine maturity concept, add SlotKind
* Update embed and go deps
* Export PrefixWithGrafanaCUE
* Make the loader actually work, holy crap
* Many small tweaks to type.cue
* Add Apache 2 licensing exceptions for kinds
* Add new kinds dir, start of generator
* Roll back to earlier oapi-codegen
* Introduce new grafana-specific CUE loaders
* Introduce new tidy code generators framework
* Catch up kind framework with tinkering
* Add slices for the generators
* Add write/verify step to main generator
* Many renames
* Split up kind framework cue files
* Use kind.Decl within generated kinds
* Create kind.SomeDecl wrapper type to cache lineages
* Better names again
* Get one generated implemented, hopefully
* Copy dashboard schema into new kind.cue
* Small fixes to make the initial gen work
* Put svg kind in its new home
* Add generated Go dashboard type
* More renames and cleanups
* Add base kind registry and generator
* Stop blacklisting *_gen.go files
This is not the Go best practice, anyway. All we actually want to ignore
for enterprise is generated wire files.
* Change codegen output directories
pkg/kind -> pkg/kinds
pkg/registry/kindreg -> pkg/registry/corekind
* Rename pkg/framework/kind to pkg/kindsys
* Add core structured kind generator
* Add plural and machine names to kind spec
* Copy playlist over to kind system
* Consolidate kindsys files
* Add raw kind generator
* Update CODEOWNERS for kind framework
* Touch up comments a bit
* More docs tweaks
* Remove generated types to reduce noise for review
* Split each generator into its own file
* Rename Slot kind to Composable kind
* Add handwavy types for customkind loading
* Guard against init calls to framework loader
* First pass at doc on extending the kind system
* Improve attribute example in docs
* Fix wire imports
* Add basic TS types generator
* Fix composable kind category def
* No need for a separate file with generate directive
* Catch dashboard schema up
* Rename generator types to something saner and generic
* Make version configurable in ts/go generators
* Add CommonMeta to ease property access
* Add kindsys prop indicating whether lineage is group
* Put all kind categories back in a single file
* Finish with kindsys group props
* Refactor maturity progression per discussion
- Replace "committed" with "merged"
- All kindcats can use all maturity levels, at least for now
* Convert ts veneer index generator to modular system
* Move over to new jennywrites framework
* Strip down old coremodel generator
* Use public version of jennywrites
* Pull latest thema
* Commit generated Go types
* Add header injection postprocessor
* Move sdboyer/jennywrites to grafana/codejen
* Tweak header output
* Remove dashboard and playlist coremodels
* Fix up backend dashboards devenv test
* Fix TS import patterns to new gen filename
* Update internal imports, remove coremodel registry
* Fix compilation errors, wire generation
* Export and replace the prefix dropper
* More Go struct and field name changes
* Last name fixes, hopefully
* Fix lint errors
* Last lint error
Co-authored-by: Artur Wierzbicki <wierzbicki.artur.94@gmail.com>
2022-11-10 14:36:40 -06:00
|
|
|
github.com/getkin/kin-openapi v0.103.0
|
2022-02-15 10:54:27 -06:00
|
|
|
github.com/golang-migrate/migrate/v4 v4.7.0
|
2022-07-29 01:26:44 -05:00
|
|
|
github.com/google/go-github/v45 v45.2.0
|
2022-11-16 14:08:01 -06:00
|
|
|
github.com/grafana/codejen v0.0.3
|
2022-04-06 03:19:04 -05:00
|
|
|
github.com/grafana/dskit v0.0.0-20211011144203-3a88ec0b675f
|
2022-11-30 15:16:57 -06:00
|
|
|
github.com/huandu/xstrings v1.3.1
|
2022-08-16 13:17:14 -05:00
|
|
|
github.com/jmoiron/sqlx v1.3.5
|
2022-09-29 11:01:02 -05:00
|
|
|
github.com/matryer/is v1.4.0
|
2022-11-29 09:37:45 -06:00
|
|
|
github.com/parca-dev/parca v0.12.1
|
2022-11-05 02:52:21 -05:00
|
|
|
github.com/urfave/cli v1.22.9
|
2022-06-01 02:31:34 -05:00
|
|
|
go.etcd.io/etcd/api/v3 v3.5.4
|
2022-10-28 06:33:37 -05:00
|
|
|
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.32.0
|
2022-05-05 03:37:26 -05:00
|
|
|
go.opentelemetry.io/contrib/propagators/jaeger v1.6.0
|
2022-10-28 06:33:37 -05:00
|
|
|
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.7.0
|
|
|
|
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.7.0
|
2022-04-15 09:48:44 -05:00
|
|
|
gocloud.dev v0.25.0
|
2022-12-13 09:41:16 -06:00
|
|
|
k8s.io/client-go v12.0.0+incompatible // gets replaced with v0.25.0
|
2022-02-15 10:54:27 -06:00
|
|
|
)
|
2021-12-21 06:15:27 -06:00
|
|
|
|
2022-12-15 08:28:25 -06:00
|
|
|
require k8s.io/apimachinery v0.25.0
|
|
|
|
|
2022-04-14 13:54:35 -05:00
|
|
|
require (
|
2022-11-05 02:52:21 -05:00
|
|
|
cloud.google.com/go v0.102.0 // indirect
|
2022-11-01 07:02:17 -05:00
|
|
|
github.com/Azure/azure-pipeline-go v0.2.3 // indirect
|
2022-11-17 14:41:46 -06:00
|
|
|
github.com/Masterminds/goutils v1.1.1 // indirect
|
|
|
|
github.com/Masterminds/semver/v3 v3.1.1 // indirect
|
2022-04-14 13:54:35 -05:00
|
|
|
github.com/armon/go-metrics v0.3.10 // indirect
|
2022-09-14 00:59:18 -05:00
|
|
|
github.com/bmatcuk/doublestar v1.1.1 // indirect
|
|
|
|
github.com/buildkite/yaml v2.1.0+incompatible // indirect
|
2022-11-22 10:04:14 -06:00
|
|
|
github.com/containerd/containerd v1.6.8 // indirect
|
2022-06-17 12:46:20 -05:00
|
|
|
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
|
2022-10-26 06:46:50 -05:00
|
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
2022-11-22 10:04:14 -06:00
|
|
|
github.com/docker/distribution v2.8.1+incompatible // indirect
|
|
|
|
github.com/docker/go-connections v0.4.0 // indirect
|
2022-11-05 02:52:21 -05:00
|
|
|
github.com/drone-runners/drone-runner-docker v1.8.2 // indirect
|
|
|
|
github.com/drone/drone-go v1.7.1 // indirect
|
|
|
|
github.com/drone/envsubst v1.0.3 // indirect
|
|
|
|
github.com/drone/runner-go v1.12.0 // indirect
|
2022-12-13 09:41:16 -06:00
|
|
|
github.com/emicklei/go-restful/v3 v3.8.0 // indirect
|
2022-10-28 06:33:37 -05:00
|
|
|
github.com/go-ozzo/ozzo-validation/v4 v4.3.0 // indirect
|
2022-12-13 09:41:16 -06:00
|
|
|
github.com/google/gnostic v0.5.7-v3refs // indirect
|
2022-07-29 01:26:44 -05:00
|
|
|
github.com/google/go-querystring v1.1.0 // indirect
|
2022-12-13 09:41:16 -06:00
|
|
|
github.com/google/gofuzz v1.2.0 // indirect
|
2022-11-05 02:52:21 -05:00
|
|
|
github.com/googleapis/enterprise-certificate-proxy v0.0.0-20220520183353-fd19c99a87aa // indirect
|
|
|
|
github.com/googleapis/go-type-adapters v1.0.0 // indirect
|
2022-04-14 13:54:35 -05:00
|
|
|
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
|
2022-10-07 04:10:20 -05:00
|
|
|
github.com/hashicorp/memberlist v0.4.0 // indirect
|
Reconcile coremodels, entities, objects under new kind framework (#56492)
* Update thema to latest
* Deal with s/Library/*Runtime/
* Commit new, working results of codegen
* We like pointers now
* Always take runtime arg for NewBase()
* Sketchy handwavy pass at entity meta framework
* Little nibbles
* Update pkg/framework/coremodel/entityframework.cue
Co-authored-by: Artur Wierzbicki <wierzbicki.artur.94@gmail.com>
* Move file into new framework location
* Introduce loaders, Go code
* Complete rename to kind
* Flesh out framework, add svg/dashboard examples
* Cruft removal
* Remove generated kind go files from gitignore
* Refine maturity concept, add SlotKind
* Update embed and go deps
* Export PrefixWithGrafanaCUE
* Make the loader actually work, holy crap
* Many small tweaks to type.cue
* Add Apache 2 licensing exceptions for kinds
* Add new kinds dir, start of generator
* Roll back to earlier oapi-codegen
* Introduce new grafana-specific CUE loaders
* Introduce new tidy code generators framework
* Catch up kind framework with tinkering
* Add slices for the generators
* Add write/verify step to main generator
* Many renames
* Split up kind framework cue files
* Use kind.Decl within generated kinds
* Create kind.SomeDecl wrapper type to cache lineages
* Better names again
* Get one generated implemented, hopefully
* Copy dashboard schema into new kind.cue
* Small fixes to make the initial gen work
* Put svg kind in its new home
* Add generated Go dashboard type
* More renames and cleanups
* Add base kind registry and generator
* Stop blacklisting *_gen.go files
This is not the Go best practice, anyway. All we actually want to ignore
for enterprise is generated wire files.
* Change codegen output directories
pkg/kind -> pkg/kinds
pkg/registry/kindreg -> pkg/registry/corekind
* Rename pkg/framework/kind to pkg/kindsys
* Add core structured kind generator
* Add plural and machine names to kind spec
* Copy playlist over to kind system
* Consolidate kindsys files
* Add raw kind generator
* Update CODEOWNERS for kind framework
* Touch up comments a bit
* More docs tweaks
* Remove generated types to reduce noise for review
* Split each generator into its own file
* Rename Slot kind to Composable kind
* Add handwavy types for customkind loading
* Guard against init calls to framework loader
* First pass at doc on extending the kind system
* Improve attribute example in docs
* Fix wire imports
* Add basic TS types generator
* Fix composable kind category def
* No need for a separate file with generate directive
* Catch dashboard schema up
* Rename generator types to something saner and generic
* Make version configurable in ts/go generators
* Add CommonMeta to ease property access
* Add kindsys prop indicating whether lineage is group
* Put all kind categories back in a single file
* Finish with kindsys group props
* Refactor maturity progression per discussion
- Replace "committed" with "merged"
- All kindcats can use all maturity levels, at least for now
* Convert ts veneer index generator to modular system
* Move over to new jennywrites framework
* Strip down old coremodel generator
* Use public version of jennywrites
* Pull latest thema
* Commit generated Go types
* Add header injection postprocessor
* Move sdboyer/jennywrites to grafana/codejen
* Tweak header output
* Remove dashboard and playlist coremodels
* Fix up backend dashboards devenv test
* Fix TS import patterns to new gen filename
* Update internal imports, remove coremodel registry
* Fix compilation errors, wire generation
* Export and replace the prefix dropper
* More Go struct and field name changes
* Last name fixes, hopefully
* Fix lint errors
* Last lint error
Co-authored-by: Artur Wierzbicki <wierzbicki.artur.94@gmail.com>
2022-11-10 14:36:40 -06:00
|
|
|
github.com/invopop/yaml v0.1.0 // indirect
|
2022-09-26 10:26:18 -05:00
|
|
|
github.com/kr/text v0.2.0 // indirect
|
2022-04-14 13:54:35 -05:00
|
|
|
github.com/mattn/go-colorable v0.1.12 // indirect
|
2022-11-01 07:02:17 -05:00
|
|
|
github.com/mattn/go-ieproxy v0.0.3 // indirect
|
2022-11-17 14:41:46 -06:00
|
|
|
github.com/mitchellh/copystructure v1.2.0 // indirect
|
2022-04-14 13:54:35 -05:00
|
|
|
github.com/mitchellh/mapstructure v1.4.3 // indirect
|
2022-11-17 14:41:46 -06:00
|
|
|
github.com/mitchellh/reflectwalk v1.0.2 // indirect
|
2022-12-13 09:41:16 -06:00
|
|
|
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
|
2022-11-22 10:04:14 -06:00
|
|
|
github.com/opencontainers/go-digest v1.0.0 // indirect
|
|
|
|
github.com/opencontainers/image-spec v1.0.3-0.20211202183452-c5a74bcca799 // indirect
|
2022-10-28 06:33:37 -05:00
|
|
|
github.com/rivo/uniseg v0.2.0 // indirect
|
2022-04-14 13:54:35 -05:00
|
|
|
github.com/russross/blackfriday/v2 v2.1.0 // indirect
|
2022-09-20 10:39:46 -05:00
|
|
|
github.com/segmentio/asm v1.1.4 // indirect
|
2022-11-17 14:41:46 -06:00
|
|
|
github.com/shopspring/decimal v1.2.0 // indirect
|
|
|
|
github.com/spf13/cast v1.3.1 // indirect
|
2022-12-13 09:41:16 -06:00
|
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
2022-12-05 11:48:10 -06:00
|
|
|
github.com/unknwon/bra v0.0.0-20200517080246-1e3013ecaff8 // indirect
|
|
|
|
github.com/unknwon/com v1.0.1 // indirect
|
|
|
|
github.com/unknwon/log v0.0.0-20150304194804-e617c87089d3 // indirect
|
2022-11-05 02:52:21 -05:00
|
|
|
go.starlark.net v0.0.0-20221020143700-22309ac47eac // indirect
|
2022-12-13 09:41:16 -06:00
|
|
|
golang.org/x/term v0.2.0 // indirect
|
2022-12-05 11:48:10 -06:00
|
|
|
gopkg.in/fsnotify/fsnotify.v1 v1.4.7 // indirect
|
2022-12-13 09:41:16 -06:00
|
|
|
gopkg.in/inf.v0 v0.9.1 // indirect
|
|
|
|
k8s.io/api v0.25.0 // indirect
|
|
|
|
k8s.io/klog/v2 v2.70.1 // indirect
|
|
|
|
k8s.io/kube-openapi v0.0.0-20220803162953-67bda5d908f1 // indirect
|
|
|
|
k8s.io/utils v0.0.0-20220728103510-ee6ede2d64ed // indirect
|
|
|
|
sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 // indirect
|
|
|
|
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
|
|
|
|
sigs.k8s.io/yaml v1.3.0 // indirect
|
2022-04-14 13:54:35 -05:00
|
|
|
)
|
|
|
|
|
2021-12-21 06:15:27 -06:00
|
|
|
require (
|
2022-11-05 02:52:21 -05:00
|
|
|
cloud.google.com/go/compute v1.7.0 // indirect
|
2022-04-15 09:48:44 -05:00
|
|
|
cloud.google.com/go/iam v0.3.0 // indirect
|
2022-12-20 09:20:31 -06:00
|
|
|
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.2.0 // indirect
|
|
|
|
github.com/Azure/azure-sdk-for-go/sdk/keyvault/internal v0.7.0 // indirect
|
|
|
|
github.com/AzureAD/microsoft-authentication-library-for-go v0.7.0 // indirect
|
2022-11-17 14:41:46 -06:00
|
|
|
github.com/Masterminds/sprig/v3 v3.2.2
|
2022-04-22 09:59:10 -05:00
|
|
|
github.com/Microsoft/go-winio v0.5.2 // indirect
|
2022-07-05 12:54:07 -05:00
|
|
|
github.com/ProtonMail/go-crypto v0.0.0-20210428141323-04723f9f07d7 // indirect
|
2022-06-22 07:49:26 -05:00
|
|
|
github.com/RoaringBitmap/roaring v0.9.4 // indirect
|
2022-07-05 12:54:07 -05:00
|
|
|
github.com/acomagu/bufpipe v1.0.3 // indirect
|
2022-05-09 03:00:09 -05:00
|
|
|
github.com/axiomhq/hyperloglog v0.0.0-20191112132149-a4c4c47bc57f // indirect
|
|
|
|
github.com/bits-and-blooms/bitset v1.2.0 // indirect
|
|
|
|
github.com/blevesearch/go-porterstemmer v1.0.3 // indirect
|
2022-06-22 07:49:26 -05:00
|
|
|
github.com/blevesearch/mmap-go v1.0.4 // indirect
|
2022-05-09 03:00:09 -05:00
|
|
|
github.com/blevesearch/segment v0.9.0 // indirect
|
|
|
|
github.com/blevesearch/snowballstem v0.9.0 // indirect
|
2022-06-22 07:49:26 -05:00
|
|
|
github.com/blevesearch/vellum v1.0.7 // indirect
|
|
|
|
github.com/blugelabs/ice v1.0.0 // indirect
|
2022-05-09 03:00:09 -05:00
|
|
|
github.com/caio/go-tdigest v3.1.0+incompatible // indirect
|
2022-03-14 12:32:11 -05:00
|
|
|
github.com/chromedp/cdproto v0.0.0-20220208224320-6efb837e6bc2 // indirect
|
2022-05-05 03:37:26 -05:00
|
|
|
github.com/coreos/go-semver v0.3.0 // indirect
|
2022-10-28 06:33:37 -05:00
|
|
|
github.com/dgryski/go-metro v0.0.0-20211217172704-adc40b04c140 // indirect
|
2022-11-22 10:04:14 -06:00
|
|
|
github.com/docker/docker v20.10.21+incompatible
|
2022-03-14 12:32:11 -05:00
|
|
|
github.com/elazarl/goproxy v0.0.0-20220115173737-adb46da277ac // indirect
|
2022-07-05 12:54:07 -05:00
|
|
|
github.com/emirpasic/gods v1.12.0 // indirect
|
2022-03-14 12:32:11 -05:00
|
|
|
github.com/ghodss/yaml v1.0.1-0.20190212211648-25d852aebe32 // indirect
|
2022-07-05 12:54:07 -05:00
|
|
|
github.com/go-git/gcfg v1.5.0 // indirect
|
|
|
|
github.com/go-git/go-billy/v5 v5.3.1 // indirect
|
2022-04-13 02:58:20 -05:00
|
|
|
github.com/go-logr/logr v1.2.3 // indirect
|
|
|
|
github.com/go-logr/stdr v1.2.2 // indirect
|
2022-04-21 12:23:54 -05:00
|
|
|
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
|
2022-10-20 09:11:53 -05:00
|
|
|
github.com/google/go-github v17.0.0+incompatible
|
2022-10-28 06:33:37 -05:00
|
|
|
github.com/grpc-ecosystem/grpc-gateway/v2 v2.10.3 // indirect
|
2021-12-17 10:01:45 -06:00
|
|
|
github.com/imdario/mergo v0.3.12 // indirect
|
2022-07-05 12:54:07 -05:00
|
|
|
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
|
|
|
|
github.com/kevinburke/ssh_config v0.0.0-20201106050909-4977a11b4351 // indirect
|
2022-10-28 06:33:37 -05:00
|
|
|
github.com/klauspost/compress v1.15.5 // indirect
|
2022-04-06 03:19:04 -05:00
|
|
|
github.com/kylelemons/godebug v1.1.0 // indirect
|
2022-10-04 06:31:05 -05:00
|
|
|
github.com/labstack/echo/v4 v4.9.0 // indirect
|
2022-05-26 20:21:37 -05:00
|
|
|
github.com/labstack/gommon v0.3.1 // indirect
|
2022-07-05 12:54:07 -05:00
|
|
|
github.com/mitchellh/go-homedir v1.1.0 // indirect
|
2022-05-21 19:44:12 -05:00
|
|
|
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
|
2022-05-09 03:00:09 -05:00
|
|
|
github.com/mschoch/smat v0.2.0 // indirect
|
2022-10-28 06:33:37 -05:00
|
|
|
github.com/pierrec/lz4/v4 v4.1.12 // indirect
|
2022-05-26 20:21:37 -05:00
|
|
|
github.com/valyala/fasttemplate v1.2.1 // indirect
|
2022-06-28 02:25:30 -05:00
|
|
|
github.com/wk8/go-ordered-map v1.0.0
|
2022-07-05 12:54:07 -05:00
|
|
|
github.com/xanzy/ssh-agent v0.3.0 // indirect
|
2022-05-05 10:56:53 -05:00
|
|
|
github.com/xlab/treeprint v1.1.0 // indirect
|
2022-04-21 12:23:54 -05:00
|
|
|
github.com/yudai/pp v2.0.1+incompatible // indirect
|
2022-10-28 06:33:37 -05:00
|
|
|
go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.7.0 // indirect
|
|
|
|
go.opentelemetry.io/proto/otlp v0.16.0 // indirect
|
2022-11-15 07:48:31 -06:00
|
|
|
golang.org/x/mod v0.7.0 // indirect
|
2022-07-05 12:54:07 -05:00
|
|
|
gopkg.in/warnings.v0 v0.1.2 // indirect
|
2021-12-01 10:05:08 -06:00
|
|
|
)
|
|
|
|
|
2021-10-08 06:19:04 -05:00
|
|
|
// Use fork of crewjam/saml with fixes for some issues until changes get merged into upstream
|
2022-07-28 01:43:30 -05:00
|
|
|
replace github.com/crewjam/saml => github.com/grafana/saml v0.4.9-0.20220727151557-61cd9c9353fc
|
2021-10-08 06:19:04 -05:00
|
|
|
|
2022-04-14 13:54:35 -05:00
|
|
|
// Thema's thema CLI requires cobra, which eventually works its way down to go-hclog@v1.0.0.
|
|
|
|
// Upgrading affects backend plugins: https://github.com/grafana/grafana/pull/47653#discussion_r850508593
|
|
|
|
// No harm to Thema because it's only a dependency in its main package.
|
|
|
|
replace github.com/hashicorp/go-hclog => github.com/hashicorp/go-hclog v0.16.1
|
2022-04-22 08:40:27 -05:00
|
|
|
|
2022-06-16 19:24:02 -05:00
|
|
|
// This is a patched v0.8.2 intended to fix session.Find (and others) silently ignoring SQLITE_BUSY errors. This could
|
|
|
|
// happen, for example, during a read when the sqlite db is under heavy write load.
|
|
|
|
// This patch cherry picks compatible fixes from upstream xorm PR#1998 and can be reverted on upgrade to xorm v1.2.0+.
|
|
|
|
replace xorm.io/xorm => github.com/grafana/xorm v0.8.3-0.20220614223926-2fcda7565af6
|
2022-10-03 08:58:41 -05:00
|
|
|
|
|
|
|
// Use our fork of the upstream alertmanagers.
|
|
|
|
// This is required in order to get notification delivery errors from the receivers API.
|
2022-10-13 08:08:09 -05:00
|
|
|
replace github.com/prometheus/alertmanager => github.com/grafana/prometheus-alertmanager v0.24.1-0.20221012142027-823cd9150293
|
2022-10-28 06:33:37 -05:00
|
|
|
|
|
|
|
// grpc v1.46.0 removed "WithBalancerName()" API, still in use by weaveworks/commons.
|
|
|
|
replace google.golang.org/grpc => google.golang.org/grpc v1.45.0
|
|
|
|
|
|
|
|
replace google.golang.org/genproto => google.golang.org/genproto v0.0.0-20220421151946-72621c1f0bd3
|