Skip to content

Commit 4e1169a

Browse files
committed
Update dependencies
1 parent b880774 commit 4e1169a

File tree

6 files changed

+4484
-7497
lines changed

6 files changed

+4484
-7497
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v3
1515

1616
- name: Setup Node.js environment
17-
uses: actions/setup-node@v3.1.1
17+
uses: actions/setup-node@v3.4.1
1818
with:
1919
node-version: "14.x"
2020
cache: 'yarn'
@@ -41,14 +41,14 @@ jobs:
4141

4242
- name: Test backend
4343
if: steps.check-for-backend.outputs.has-backend == 'true'
44-
uses: magefile/mage-action@v1
44+
uses: magefile/mage-action@v2
4545
with:
4646
version: latest
4747
args: coverage
4848

4949
- name: Build backend
5050
if: steps.check-for-backend.outputs.has-backend == 'true'
51-
uses: magefile/mage-action@v1
51+
uses: magefile/mage-action@v2
5252
with:
5353
version: latest
5454
args: buildAll

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@v3
1414

1515
- name: Setup Node.js environment
16-
uses: actions/setup-node@v3.1.1
16+
uses: actions/setup-node@v3.4.1
1717
with:
1818
node-version: "14.x"
1919
cache: 'yarn'
@@ -30,13 +30,13 @@ jobs:
3030
run: yarn build
3131

3232
- name: Test backend
33-
uses: magefile/mage-action@v1
33+
uses: magefile/mage-action@v2
3434
with:
3535
version: latest
3636
args: coverage
3737

3838
- name: Build backend
39-
uses: magefile/mage-action@v1
39+
uses: magefile/mage-action@v2
4040
with:
4141
version: latest
4242
args: buildAll

go.mod

Lines changed: 36 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -3,68 +3,68 @@ module github.com/starburstdata/grafana-trino
33
go 1.18
44

55
require (
6-
github.com/grafana/grafana-plugin-sdk-go v0.134.0
7-
github.com/grafana/sqlds/v2 v2.3.7
6+
github.com/grafana/grafana-plugin-sdk-go v0.139.0
7+
github.com/grafana/sqlds/v2 v2.3.8
88
github.com/pkg/errors v0.9.1
9-
github.com/trinodb/trino-go-client v0.300.0
9+
github.com/trinodb/trino-go-client v0.302.0
1010
)
1111

1212
require (
1313
github.com/apache/arrow/go/arrow v0.0.0-20211112161151-bc219186db40 // indirect
1414
github.com/beorn7/perks v1.0.1 // indirect
1515
github.com/cespare/xxhash/v2 v2.1.2 // indirect
1616
github.com/cheekybits/genny v1.0.0 // indirect
17-
github.com/chromedp/cdproto v0.0.0-20220408044303-8559a4e76b35 // indirect
18-
github.com/elazarl/goproxy v0.0.0-20220417044921-416226498f94 // indirect
19-
github.com/fatih/color v1.7.0 // indirect
20-
github.com/getkin/kin-openapi v0.94.0 // indirect
21-
github.com/ghodss/yaml v1.0.0 // indirect
17+
github.com/chromedp/cdproto v0.0.0-20220807232216-bd515c3c04a9 // indirect
18+
github.com/elazarl/goproxy v0.0.0-20220529153421-8ea89ba92021 // indirect
19+
github.com/fatih/color v1.13.0 // indirect
20+
github.com/getkin/kin-openapi v0.98.0 // indirect
2221
github.com/go-openapi/jsonpointer v0.19.5 // indirect
23-
github.com/go-openapi/swag v0.21.1 // indirect
22+
github.com/go-openapi/swag v0.22.0 // indirect
2423
github.com/golang/protobuf v1.5.2 // indirect
25-
github.com/golang/snappy v0.0.3 // indirect
26-
github.com/google/flatbuffers v2.0.0+incompatible // indirect
27-
github.com/google/go-cmp v0.5.7 // indirect
24+
github.com/google/flatbuffers v2.0.6+incompatible // indirect
25+
github.com/google/go-cmp v0.5.8 // indirect
2826
github.com/google/uuid v1.3.0 // indirect
2927
github.com/gorilla/mux v1.8.0 // indirect
3028
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 // indirect
3129
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect
32-
github.com/hashicorp/go-hclog v0.14.1 // indirect
33-
github.com/hashicorp/go-plugin v1.4.3 // indirect
34-
github.com/hashicorp/go-uuid v1.0.2 // indirect
35-
github.com/hashicorp/yamux v0.0.0-20181012175058-2f1d1f20f75d // indirect
36-
github.com/jcmturner/gofork v1.0.0 // indirect
30+
github.com/hashicorp/go-hclog v1.2.2 // indirect
31+
github.com/hashicorp/go-plugin v1.4.4 // indirect
32+
github.com/hashicorp/go-uuid v1.0.3 // indirect
33+
github.com/hashicorp/yamux v0.1.1 // indirect
34+
github.com/invopop/yaml v0.2.0 // indirect
35+
github.com/jcmturner/gofork v1.7.6 // indirect
3736
github.com/josharian/intern v1.0.0 // indirect
3837
github.com/json-iterator/go v1.1.12 // indirect
39-
github.com/klauspost/compress v1.13.1 // indirect
38+
github.com/klauspost/compress v1.15.9 // indirect
4039
github.com/magefile/mage v1.13.0 // indirect
4140
github.com/mailru/easyjson v0.7.7 // indirect
4241
github.com/mattetti/filebuffer v1.0.1 // indirect
43-
github.com/mattn/go-colorable v0.1.4 // indirect
44-
github.com/mattn/go-isatty v0.0.10 // indirect
45-
github.com/mattn/go-runewidth v0.0.9 // indirect
42+
github.com/mattn/go-colorable v0.1.12 // indirect
43+
github.com/mattn/go-isatty v0.0.14 // indirect
44+
github.com/mattn/go-runewidth v0.0.13 // indirect
4645
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
47-
github.com/mitchellh/go-testing-interface v1.0.0 // indirect
46+
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
4847
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
4948
github.com/modern-go/reflect2 v1.0.2 // indirect
50-
github.com/oklog/run v1.0.0 // indirect
49+
github.com/oklog/run v1.1.0 // indirect
5150
github.com/olekukonko/tablewriter v0.0.5 // indirect
52-
github.com/pierrec/lz4/v4 v4.1.8 // indirect
53-
github.com/prometheus/client_golang v1.12.1 // indirect
51+
github.com/pierrec/lz4/v4 v4.1.15 // indirect
52+
github.com/prometheus/client_golang v1.13.0 // indirect
5453
github.com/prometheus/client_model v0.2.0 // indirect
55-
github.com/prometheus/common v0.32.1 // indirect
56-
github.com/prometheus/procfs v0.7.3 // indirect
57-
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 // indirect
58-
golang.org/x/net v0.0.0-20210614182718-04defd469f4e // indirect
59-
golang.org/x/sys v0.0.0-20220412211240-33da011f77ad // indirect
60-
golang.org/x/text v0.3.6 // indirect
61-
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
62-
google.golang.org/genproto v0.0.0-20210630183607-d20f26d13c79 // indirect
63-
google.golang.org/grpc v1.41.0 // indirect
64-
google.golang.org/protobuf v1.27.1 // indirect
54+
github.com/prometheus/common v0.37.0 // indirect
55+
github.com/prometheus/procfs v0.8.0 // indirect
56+
github.com/rivo/uniseg v0.3.4 // indirect
57+
golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa // indirect
58+
golang.org/x/net v0.0.0-20220809184613-07c6da5e1ced // indirect
59+
golang.org/x/sys v0.0.0-20220808155132-1c4a2a72c664 // indirect
60+
golang.org/x/text v0.3.7 // indirect
61+
golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f // indirect
62+
google.golang.org/genproto v0.0.0-20220810155839-1856144b1d9c // indirect
63+
google.golang.org/grpc v1.48.0 // indirect
64+
google.golang.org/protobuf v1.28.1 // indirect
6565
gopkg.in/jcmturner/aescts.v1 v1.0.1 // indirect
6666
gopkg.in/jcmturner/dnsutils.v1 v1.0.1 // indirect
6767
gopkg.in/jcmturner/gokrb5.v6 v6.1.1 // indirect
6868
gopkg.in/jcmturner/rpc.v1 v1.1.0 // indirect
69-
gopkg.in/yaml.v2 v2.4.0 // indirect
69+
gopkg.in/yaml.v3 v3.0.1 // indirect
7070
)

0 commit comments

Comments
 (0)