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 7, 2022
1 parent 14d45d4 commit 6c51cb6
Show file tree
Hide file tree
Showing 2 changed files with 72 additions and 57 deletions.
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 6c51cb6

Please sign in to comment.