|
1 | 1 | module github.com/databricks/databricks-sql-go |
2 | 2 |
|
3 | | -go 1.20 |
| 3 | +go 1.21 |
4 | 4 |
|
5 | 5 | require ( |
6 | | - github.com/apache/arrow/go/v12 v12.0.1 |
7 | | - github.com/apache/thrift v0.17.0 |
| 6 | + github.com/apache/arrow/go/v16 v16.0.0 |
| 7 | + github.com/apache/thrift v0.19.0 |
8 | 8 | github.com/coreos/go-oidc/v3 v3.5.0 |
| 9 | + github.com/hashicorp/go-retryablehttp v0.7.1 |
9 | 10 | github.com/joho/godotenv v1.4.0 |
10 | 11 | github.com/mattn/go-isatty v0.0.19 |
11 | | - github.com/pierrec/lz4/v4 v4.1.15 |
12 | | - github.com/stretchr/testify v1.8.1 |
| 12 | + github.com/pierrec/lz4/v4 v4.1.21 |
| 13 | + github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8 |
| 14 | + github.com/pkg/errors v0.9.1 |
| 15 | + github.com/rs/zerolog v1.28.0 |
| 16 | + github.com/stretchr/testify v1.9.0 |
13 | 17 | golang.org/x/oauth2 v0.7.0 |
14 | 18 | gotest.tools/gotestsum v1.8.2 |
15 | 19 | ) |
16 | 20 |
|
17 | 21 | require ( |
18 | | - github.com/andybalholm/brotli v1.0.4 // indirect |
19 | 22 | github.com/davecgh/go-spew v1.1.1 // indirect |
20 | 23 | github.com/dnephin/pflag v1.0.7 // indirect |
21 | | - github.com/fatih/color v1.13.0 // indirect |
| 24 | + github.com/fatih/color v1.15.0 // indirect |
22 | 25 | github.com/fsnotify/fsnotify v1.5.4 // indirect |
23 | 26 | github.com/go-jose/go-jose/v3 v3.0.0 // indirect |
24 | | - github.com/goccy/go-json v0.9.11 // indirect |
25 | | - github.com/golang/protobuf v1.5.2 // indirect |
26 | | - github.com/golang/snappy v0.0.4 // indirect |
27 | | - github.com/google/flatbuffers v2.0.8+incompatible // indirect |
| 27 | + github.com/goccy/go-json v0.10.2 // indirect |
| 28 | + github.com/golang/protobuf v1.5.3 // indirect |
| 29 | + github.com/google/flatbuffers v24.3.25+incompatible // indirect |
28 | 30 | github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect |
29 | 31 | github.com/hashicorp/go-cleanhttp v0.5.1 // indirect |
30 | | - github.com/klauspost/asmfmt v1.3.2 // indirect |
31 | | - github.com/klauspost/compress v1.15.9 // indirect |
32 | | - github.com/klauspost/cpuid/v2 v2.0.9 // indirect |
33 | | - github.com/kr/text v0.2.0 // indirect |
34 | | - github.com/mattn/go-colorable v0.1.12 // indirect |
35 | | - github.com/minio/asm2plan9s v0.0.0-20200509001527-cdd76441f9d8 // indirect |
36 | | - github.com/minio/c2goasm v0.0.0-20190812172519-36a3d3bbc4f3 // indirect |
| 32 | + github.com/klauspost/compress v1.17.7 // indirect |
| 33 | + github.com/klauspost/cpuid/v2 v2.2.7 // indirect |
| 34 | + github.com/kr/pretty v0.3.0 // indirect |
| 35 | + github.com/mattn/go-colorable v0.1.13 // indirect |
37 | 36 | github.com/pmezard/go-difflib v1.0.0 // indirect |
38 | 37 | github.com/zeebo/xxh3 v1.0.2 // indirect |
39 | | - golang.org/x/crypto v0.0.0-20220427172511-eb4f295cb31f // indirect |
40 | | - golang.org/x/mod v0.8.0 // indirect |
41 | | - golang.org/x/net v0.9.0 // indirect |
42 | | - golang.org/x/sync v0.1.0 // indirect |
43 | | - golang.org/x/term v0.7.0 // indirect |
44 | | - golang.org/x/tools v0.6.0 // indirect |
45 | | - golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f // indirect |
| 38 | + golang.org/x/crypto v0.21.0 // indirect |
| 39 | + golang.org/x/exp v0.0.0-20240222234643-814bf88cf225 // indirect |
| 40 | + golang.org/x/mod v0.16.0 // indirect |
| 41 | + golang.org/x/net v0.22.0 // indirect |
| 42 | + golang.org/x/sync v0.6.0 // indirect |
| 43 | + golang.org/x/sys v0.18.0 // indirect |
| 44 | + golang.org/x/term v0.18.0 // indirect |
| 45 | + golang.org/x/tools v0.19.0 // indirect |
| 46 | + golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect |
46 | 47 | google.golang.org/appengine v1.6.7 // indirect |
47 | | - google.golang.org/protobuf v1.28.1 // indirect |
| 48 | + google.golang.org/protobuf v1.33.0 // indirect |
| 49 | + gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect |
48 | 50 | gopkg.in/yaml.v3 v3.0.1 // indirect |
49 | 51 | ) |
50 | | - |
51 | | -require ( |
52 | | - github.com/hashicorp/go-retryablehttp v0.7.1 |
53 | | - github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8 |
54 | | - github.com/pkg/errors v0.9.1 |
55 | | - github.com/rs/zerolog v1.28.0 |
56 | | - golang.org/x/sys v0.7.0 // indirect |
57 | | -) |
0 commit comments