-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
88c4d67
commit 8e8ae35
Showing
9 changed files
with
111 additions
and
90 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,4 +15,4 @@ | |
# vendor/ | ||
.DS_Store | ||
|
||
.idea | ||
.idea/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
run: | ||
go: '1.19' | ||
go: '1.21' | ||
|
||
linters: | ||
enable: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,39 @@ | ||
module github.com/rudderlabs/sql-tunnels | ||
|
||
go 1.19 | ||
go 1.21 | ||
|
||
toolchain go1.21.3 | ||
|
||
require ( | ||
github.com/ClickHouse/clickhouse-go/v2 v2.16.0 | ||
github.com/ClickHouse/clickhouse-go/v2 v2.18.0 | ||
github.com/gliderlabs/ssh v0.3.6 | ||
github.com/go-sql-driver/mysql v1.7.1 | ||
github.com/lib/pq v1.10.9 | ||
github.com/phayes/freeport v0.0.0-20220201140144-74d24b5ae9f5 | ||
github.com/rudderlabs/compose-test v0.1.3 | ||
github.com/stretchr/testify v1.8.4 | ||
golang.org/x/crypto v0.18.0 | ||
go.uber.org/goleak v1.3.0 | ||
golang.org/x/crypto v0.19.0 | ||
golang.org/x/sync v0.6.0 | ||
) | ||
|
||
require github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be // indirect | ||
|
||
require ( | ||
github.com/ClickHouse/ch-go v0.58.2 // indirect | ||
github.com/andybalholm/brotli v1.0.6 // indirect | ||
github.com/ClickHouse/ch-go v0.61.3 // indirect | ||
github.com/andybalholm/brotli v1.1.0 // indirect | ||
github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/go-faster/city v1.0.1 // indirect | ||
github.com/go-faster/errors v0.6.1 // indirect | ||
github.com/google/uuid v1.4.0 // indirect | ||
github.com/klauspost/compress v1.16.7 // indirect | ||
github.com/paulmach/orb v0.10.0 // indirect | ||
github.com/phayes/freeport v0.0.0-20220201140144-74d24b5ae9f5 | ||
github.com/pierrec/lz4/v4 v4.1.18 // indirect | ||
github.com/go-faster/errors v0.7.1 // indirect | ||
github.com/google/uuid v1.6.0 // indirect | ||
github.com/klauspost/compress v1.17.7 // indirect | ||
github.com/paulmach/orb v0.11.1 // indirect | ||
github.com/pierrec/lz4/v4 v4.1.21 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/segmentio/asm v1.2.0 // indirect | ||
github.com/shopspring/decimal v1.3.1 // indirect | ||
go.opentelemetry.io/otel v1.19.0 // indirect | ||
go.opentelemetry.io/otel/trace v1.19.0 // indirect | ||
go.uber.org/goleak v1.2.1 | ||
golang.org/x/sync v0.6.0 | ||
golang.org/x/sys v0.16.0 // indirect | ||
go.opentelemetry.io/otel v1.24.0 // indirect | ||
go.opentelemetry.io/otel/trace v1.24.0 // indirect | ||
golang.org/x/sys v0.17.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/bash | ||
VERSION=$1 | ||
[ -z "${VERSION}" ] && VERSION="v1.55.2" | ||
GOPATH=$(go env GOPATH) | ||
[ -f "${GOPATH}/bin/golangci-lint-${VERSION}" ] && echo "golangci-lint ${VERSION} is already installed" || \ | ||
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/${VERSION}/install.sh | sh -s -- -b "${GOPATH}"/bin ${VERSION} && \ | ||
cp "${GOPATH}"/bin/golangci-lint "${GOPATH}"/bin/golangci-lint-${VERSION} |