Skip to content

Commit 84cd88b

Browse files
authored
updating package version to v5 (#193)
1 parent 39a8d3c commit 84cd88b

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

dataframe_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import (
88

99
"github.com/grafana/grafana-plugin-sdk-go/backend"
1010
"github.com/grafana/grafana-plugin-sdk-go/data/sqlutil"
11-
"github.com/grafana/sqlds/v4"
12-
"github.com/grafana/sqlds/v4/test"
11+
"github.com/grafana/sqlds/v5"
12+
"github.com/grafana/sqlds/v5/test"
1313
"github.com/stretchr/testify/require"
1414
)
1515

datasource_rowlimit_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66
"testing"
77

88
"github.com/grafana/grafana-plugin-sdk-go/backend"
9-
"github.com/grafana/sqlds/v4"
10-
"github.com/grafana/sqlds/v4/test"
9+
"github.com/grafana/sqlds/v5"
10+
"github.com/grafana/sqlds/v5/test"
1111
"github.com/stretchr/testify/assert"
1212
"github.com/stretchr/testify/require"
1313
)

datasource_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ import (
1111

1212
"github.com/grafana/grafana-plugin-sdk-go/backend"
1313
"github.com/grafana/grafana-plugin-sdk-go/data/sqlutil"
14-
"github.com/grafana/sqlds/v4"
15-
"github.com/grafana/sqlds/v4/mock"
16-
"github.com/grafana/sqlds/v4/test"
14+
"github.com/grafana/sqlds/v5"
15+
"github.com/grafana/sqlds/v5/mock"
16+
"github.com/grafana/sqlds/v5/test"
1717
"github.com/stretchr/testify/assert"
1818
)
1919

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/grafana/sqlds/v4
1+
module github.com/grafana/sqlds/v5
22

33
go 1.24.6
44

health_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"testing"
66

77
"github.com/grafana/grafana-plugin-sdk-go/backend"
8-
sqlds "github.com/grafana/sqlds/v4"
8+
sqlds "github.com/grafana/sqlds/v5"
99
"github.com/stretchr/testify/assert"
1010
"github.com/stretchr/testify/require"
1111
)

mock/csv/csv_mock.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
"github.com/grafana/grafana-plugin-sdk-go/backend"
1414
"github.com/grafana/grafana-plugin-sdk-go/data"
1515
"github.com/grafana/grafana-plugin-sdk-go/data/sqlutil"
16-
"github.com/grafana/sqlds/v4"
16+
"github.com/grafana/sqlds/v5"
1717
_ "github.com/mithrandie/csvq-driver"
1818
)
1919

test/driver.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ import (
1212

1313
"github.com/grafana/grafana-plugin-sdk-go/backend"
1414
"github.com/grafana/grafana-plugin-sdk-go/data/sqlutil"
15-
"github.com/grafana/sqlds/v4"
16-
"github.com/grafana/sqlds/v4/mock"
15+
"github.com/grafana/sqlds/v5"
16+
"github.com/grafana/sqlds/v5/mock"
1717
)
1818

1919
var registered = map[string]*SqlHandler{}

0 commit comments

Comments
 (0)