Skip to content

Commit

Permalink
GODRIVER-2860 Update Go driver module version in all submodules. (#1299)
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewdale authored Jun 16, 2023
1 parent e4a8f68 commit d7091e0
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 6 deletions.
4 changes: 3 additions & 1 deletion examples/_logger/logrus/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ replace go.mongodb.org/mongo-driver => ../../../
require (
github.com/bombsimon/logrusr/v4 v4.0.0
github.com/sirupsen/logrus v1.9.0
go.mongodb.org/mongo-driver v1.11.1
// Note that the Go driver version is replaced with the local Go driver code
// by the replace directive above.
go.mongodb.org/mongo-driver v1.11.7
)

require (
Expand Down
4 changes: 3 additions & 1 deletion examples/_logger/zap/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ replace go.mongodb.org/mongo-driver => ../../../

require (
github.com/go-logr/zapr v1.2.3
go.mongodb.org/mongo-driver v1.11.1
// Note that the Go driver version is replaced with the local Go driver code
// by the replace directive above.
go.mongodb.org/mongo-driver v1.11.7
go.uber.org/zap v1.24.0
)

Expand Down
4 changes: 3 additions & 1 deletion examples/_logger/zerolog/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ replace go.mongodb.org/mongo-driver => ../../../
require (
github.com/go-logr/zerologr v1.2.2
github.com/rs/zerolog v1.28.0
go.mongodb.org/mongo-driver v1.11.1
// Note that the Go driver version is replaced with the local Go driver code
// by the replace directive above.
go.mongodb.org/mongo-driver v1.11.7
)

require (
Expand Down
4 changes: 3 additions & 1 deletion internal/test/compilecheck/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,6 @@ go 1.13

replace go.mongodb.org/mongo-driver => ../../../

require go.mongodb.org/mongo-driver v0.0.0-00010101000000-000000000000
// Note that the Go driver version is replaced with the local Go driver code by
// the replace directive above.
require go.mongodb.org/mongo-driver v1.11.7
5 changes: 3 additions & 2 deletions internal/test/faas/awslambda/mongodb/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,15 @@ replace go.mongodb.org/mongo-driver => ../../../../../

require (
github.com/aws/aws-lambda-go v1.41.0
go.mongodb.org/mongo-driver v1.11.4
// Note that the Go driver version is replaced with the local Go driver code
// by the replace directive above.
go.mongodb.org/mongo-driver v1.11.7
)

require (
github.com/golang/snappy v0.0.1 // indirect
github.com/klauspost/compress v1.13.6 // indirect
github.com/montanaflynn/stats v0.0.0-20171201202039-1bf9dbcd8cbe // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/xdg-go/pbkdf2 v1.0.0 // indirect
github.com/xdg-go/scram v1.1.2 // indirect
github.com/xdg-go/stringprep v1.0.4 // indirect
Expand Down

0 comments on commit d7091e0

Please sign in to comment.