fixes for scenes framework (#1822)

* removed scenes object from caching hash

* update backend deps
This commit is contained in:
Sriram
2024-04-29 11:45:10 +01:00
committed by GitHub
parent 26096e7f32
commit 3ebc05d242
4 changed files with 44 additions and 40 deletions

33
go.mod
View File

@@ -4,7 +4,16 @@ go 1.22
toolchain go1.22.1
require github.com/grafana/grafana-plugin-sdk-go v0.220.0
require (
github.com/bitly/go-simplejson v0.5.1
github.com/dlclark/regexp2 v1.10.0
github.com/grafana/grafana-plugin-sdk-go v0.225.0
github.com/patrickmn/go-cache v2.1.0+incompatible
github.com/prometheus/client_golang v1.18.0
github.com/stretchr/testify v1.9.0
golang.org/x/net v0.23.0
gotest.tools v2.2.0+incompatible
)
require (
github.com/BurntSushi/toml v1.3.2 // indirect
@@ -25,7 +34,7 @@ require (
github.com/go-openapi/swag v0.22.4 // indirect
github.com/goccy/go-json v0.10.2 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/golang/protobuf v1.5.4 // indirect
github.com/google/flatbuffers v23.5.26+incompatible // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/google/uuid v1.6.0 // indirect
@@ -33,6 +42,7 @@ require (
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 // indirect
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect
github.com/grpc-ecosystem/grpc-gateway/v2 v2.19.0 // indirect
github.com/hashicorp/go-hclog v1.6.3 // indirect
github.com/hashicorp/go-plugin v1.6.0 // indirect
github.com/hashicorp/yamux v0.1.1 // indirect
github.com/invopop/yaml v0.2.0 // indirect
@@ -83,22 +93,11 @@ require (
golang.org/x/text v0.14.0 // indirect
golang.org/x/tools v0.14.0 // indirect
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
google.golang.org/genproto v0.0.0-20240123012728-ef4313101c80 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20240123012728-ef4313101c80 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240123012728-ef4313101c80 // indirect
google.golang.org/grpc v1.62.1 // indirect
google.golang.org/genproto v0.0.0-20240227224415-6ceb2ff114de // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20240227224415-6ceb2ff114de // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240227224415-6ceb2ff114de // indirect
google.golang.org/grpc v1.63.2 // indirect
google.golang.org/protobuf v1.33.0 // indirect
gopkg.in/fsnotify/fsnotify.v1 v1.4.7 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
require (
github.com/bitly/go-simplejson v0.5.1
github.com/dlclark/regexp2 v1.10.0
github.com/hashicorp/go-hclog v1.6.2 // indirect
github.com/patrickmn/go-cache v2.1.0+incompatible
github.com/prometheus/client_golang v1.18.0
github.com/stretchr/testify v1.9.0
golang.org/x/net v0.22.0
gotest.tools v2.2.0+incompatible
)