-
- Downloads
Update mongo driver and fix deprecations
See merge request !495
parent
8df76ce0
Branches
Tags
Pipeline #159124 failed
Stage: tools
Stage: build
Stage: test
Stage: analyze
Stage: integration-test
Stage: deploy
Showing
- Makefile 12 additions, 5 deletionsMakefile
- controller/nucleus/database/mongo-connection.go 2 additions, 7 deletionscontroller/nucleus/database/mongo-connection.go
- controller/nucleus/databaseNetworkElementStore.go 2 additions, 1 deletioncontroller/nucleus/databaseNetworkElementStore.go
- controller/rbac/databaseUserStore.go 1 addition, 1 deletioncontroller/rbac/databaseUserStore.go
- controller/topology/nodes/nodeStore.go 1 addition, 1 deletioncontroller/topology/nodes/nodeStore.go
- go.mod 3 additions, 3 deletionsgo.mod
- go.sum 7 additions, 0 deletionsgo.sum
... | @@ -22,7 +22,7 @@ require ( | ... | @@ -22,7 +22,7 @@ require ( |
github.com/spf13/viper v1.15.0 | github.com/spf13/viper v1.15.0 | ||
github.com/stretchr/objx v0.5.0 // indirect | github.com/stretchr/objx v0.5.0 // indirect | ||
github.com/stretchr/testify v1.8.1 | github.com/stretchr/testify v1.8.1 | ||
go.mongodb.org/mongo-driver v1.10.0 | go.mongodb.org/mongo-driver v1.12.0 | ||
golang.org/x/sync v0.1.0 | golang.org/x/sync v0.1.0 | ||
google.golang.org/genproto v0.0.0-20230223222841-637eb2293923 | google.golang.org/genproto v0.0.0-20230223222841-637eb2293923 | ||
google.golang.org/grpc v1.53.0 | google.golang.org/grpc v1.53.0 | ||
... | @@ -81,8 +81,8 @@ require ( | ... | @@ -81,8 +81,8 @@ require ( |
github.com/spf13/jwalterweatherman v1.1.0 // indirect | github.com/spf13/jwalterweatherman v1.1.0 // indirect | ||
github.com/subosito/gotenv v1.4.2 // indirect | github.com/subosito/gotenv v1.4.2 // indirect | ||
github.com/xdg-go/pbkdf2 v1.0.0 // indirect | github.com/xdg-go/pbkdf2 v1.0.0 // indirect | ||
github.com/xdg-go/scram v1.1.1 // indirect | github.com/xdg-go/scram v1.1.2 // indirect | ||
github.com/xdg-go/stringprep v1.0.3 // indirect | github.com/xdg-go/stringprep v1.0.4 // indirect | ||
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect | github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect | ||
github.com/youmark/pkcs8 v0.0.0-20201027041543-1326539a0a0a // indirect | github.com/youmark/pkcs8 v0.0.0-20201027041543-1326539a0a0a // indirect | ||
go.opencensus.io v0.24.0 // indirect | go.opencensus.io v0.24.0 // indirect | ||
... | ... |
Please register or sign in to comment