diff --git a/CHANGELOG.md b/CHANGELOG.md index 961d790..e8b33c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,9 +2,14 @@ All notable changes to this project will be documented in this file. +## 2.9.1 + +- Update grafana/aws-sdk to 0.20.0 to add a new supported region in [#274](https://github.com/grafana/timestream-datasource/pull/274) +- Query Editor: Fix table and database mapping in [#272](https://github.com/grafana/timestream-datasource/pull/272) + ## 2.9.0 -- Bump jest-dom in [#270](https://github.com/grafana/timestream-datasource/pull/245) +- Bump jest-dom in [#270](https://github.com/grafana/timestream-datasource/pull/270) - Query Editor: Stop running query automatically when all macros are selected in [#269](https://github.com/grafana/timestream-datasource/pull/269) - Bump go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc from 0.45.0 to 0.46.0 in [#267](https://github.com/grafana/timestream-datasource/pull/267) diff --git a/go.mod b/go.mod index 38e6a15..f3a562e 100644 --- a/go.mod +++ b/go.mod @@ -7,7 +7,7 @@ toolchain go1.21.4 require ( github.com/aws/aws-sdk-go v1.44.323 github.com/google/go-cmp v0.6.0 - github.com/grafana/grafana-aws-sdk v0.19.1 + github.com/grafana/grafana-aws-sdk v0.20.0 github.com/grafana/grafana-plugin-sdk-go v0.193.0 github.com/stretchr/testify v1.8.4 ) diff --git a/go.sum b/go.sum index 8e2b4ce..92e748e 100644 --- a/go.sum +++ b/go.sum @@ -190,6 +190,8 @@ github.com/gorilla/mux v1.8.0/go.mod h1:DVbg23sWSpFRCP0SfiEN6jmj59UnW/n46BH5rLB7 github.com/gorilla/websocket v0.0.0-20170926233335-4201258b820c/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ= github.com/grafana/grafana-aws-sdk v0.19.1 h1:5GBiOv2AgdyjwlgAX+dtgPtXU4FgMTD9rfQUPQseEpQ= github.com/grafana/grafana-aws-sdk v0.19.1/go.mod h1:ntq2NDH12Y2Fkbc6fozpF8kYsJM9k6KNr+Xfo5w3/iM= +github.com/grafana/grafana-aws-sdk v0.20.0 h1:oIYkuLsxFYRlSGcyevU463upeZ2QN5giO+uDkU7RqvM= +github.com/grafana/grafana-aws-sdk v0.20.0/go.mod h1:ID7Yr4AtErNiTI1rIdsH7Jr5Q10+e2Zr2s2je+iH5p8= github.com/grafana/grafana-plugin-sdk-go v0.94.0/go.mod h1:3VXz4nCv6wH5SfgB3mlW39s+c+LetqSCjFj7xxPC5+M= github.com/grafana/grafana-plugin-sdk-go v0.193.0 h1:vRL96urrUfb+XWd4G6/317wpJBWTvoR9+Lrb+yGXZho= github.com/grafana/grafana-plugin-sdk-go v0.193.0/go.mod h1:6Igwuc+iWyYNWXhJhsWUQpPn2ugNIo6r36vtn7GyIiE= diff --git a/package.json b/package.json index 45a5c62..1950c72 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "grafana-timestream-datasource", - "version": "2.9.0", + "version": "2.9.1", "description": "Load data timestream in grafana", "scripts": { "spellcheck": "cspell -c cspell.config.json \"**/*.{ts,tsx,js,go,md,mdx,yml,yaml,json,scss,css}\"",