Skip to content

Commit

Permalink
Update cockroach-go module version
Browse files Browse the repository at this point in the history
The new cockroach-go module adds a tenant scope argument
while generating client certificates for tenant servers
within the cockroach go repo. We need this new change in
order for the tests with example-orms to work correctly
with the upcoming changes for tenant scoped client certificates.
Without this change, the tenant tests will fail as the client
certificates generated through the cockroach-go modules will be
unable to authenticate correctly with the tenant server.
  • Loading branch information
rimadeodhar committed Jun 8, 2022
1 parent 14d45d4 commit 4d216c1
Show file tree
Hide file tree
Showing 3 changed files with 73 additions and 58 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/golangci-lint.yml
Expand Up @@ -21,4 +21,4 @@ jobs:
uses: golangci/golangci-lint-action@v2
with:
# Optional: version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version
version: v1.29
version: v1.46.2
11 changes: 6 additions & 5 deletions go.mod
@@ -1,13 +1,14 @@
module github.com/cockroachdb/examples-orms

go 1.13
go 1.17

require (
github.com/cockroachdb/cockroach-go/v2 v2.2.4
github.com/cockroachdb/cockroach-go/v2 v2.2.12
github.com/go-pg/pg/v10 v10.9.0
github.com/julienschmidt/httprouter v1.1.0
github.com/lib/pq v1.10.0
github.com/lib/pq v1.10.6
github.com/pkg/errors v0.9.1
gorm.io/driver/postgres v1.0.8
gorm.io/gorm v1.21.6
gopkg.in/yaml.v2 v2.4.0 // indirect
gorm.io/driver/postgres v1.3.5
gorm.io/gorm v1.23.5
)

0 comments on commit 4d216c1

Please sign in to comment.