Skip to content

Commit 0bf5582

Browse files
authored
Update the dependencies (#783)
* Update the dependencies * Update the release notes
1 parent 25d543b commit 0bf5582

File tree

3 files changed

+73
-52
lines changed

3 files changed

+73
-52
lines changed

docs/release-notes/release-notes.md

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,20 @@
1-
# MongoDB Atlas Operator v1.4.0
1+
# MongoDB Atlas Operator v1.5.0
2+
3+
## Operator Changes
4+
5+
* Fix connection secret creation (#774)
6+
* Fix mininum version of Openshift (#761)
27

38
## AtlasProject Resource
49

5-
* Add auditing (#708)
6-
* Add Project Settings (#716)
7-
* Add alert configuration feature (#717)
8-
* Fix issue with /32 CIDR #694 (#704)
9-
* Check user namespace for integrations #725 (#726)
10+
* Add Atlas Teams (#767)
11+
* Make sure PEs are always added to status (#773)
12+
* Fix the InstanceSize must match issue #777 (#782)
1013

11-
*The images can be found in:*
14+
## AtlasDeployment Resource
1215

16+
* Add serverless PE support (#779)
17+
* Convert OplogMinRetentionHours field properly (#778)
18+
19+
*The images can be found in:*
1320
https://quay.io/mongodb/mongodb-atlas-kubernetes-operator

go.mod

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3,26 +3,27 @@ module github.com/mongodb/mongodb-atlas-kubernetes
33
go 1.18
44

55
require (
6-
github.com/Azure/azure-sdk-for-go v66.0.0+incompatible
6+
github.com/Azure/azure-sdk-for-go v67.1.0+incompatible
77
github.com/Azure/go-autorest/autorest v0.11.28
88
github.com/Azure/go-autorest/autorest/azure/auth v0.5.11
99
github.com/Azure/go-autorest/autorest/to v0.4.0
10-
github.com/aws/aws-sdk-go v1.44.121
10+
github.com/aws/aws-sdk-go v1.44.151
1111
github.com/fatih/structtag v1.2.0
1212
github.com/go-logr/zapr v1.2.3
1313
github.com/google/go-cmp v0.5.9
1414
github.com/google/uuid v1.3.0
1515
github.com/hashicorp/go-multierror v1.1.1
1616
github.com/mongodb-forks/digest v1.0.4
17-
github.com/onsi/ginkgo/v2 v2.4.0
18-
github.com/onsi/gomega v1.22.1
17+
github.com/onsi/ginkgo/v2 v2.5.0
18+
github.com/onsi/gomega v1.24.1
1919
github.com/pborman/uuid v1.2.1
2020
github.com/sethvargo/go-password v0.2.0
21-
github.com/stretchr/testify v1.8.0
21+
github.com/stretchr/testify v1.8.1
2222
go.mongodb.org/atlas v0.18.0
23-
go.mongodb.org/mongo-driver v1.10.2
23+
go.mongodb.org/mongo-driver v1.11.0
2424
go.uber.org/zap v1.23.0
25-
google.golang.org/api v0.100.0
25+
golang.org/x/sync v0.1.0
26+
google.golang.org/api v0.103.0
2627
gopkg.in/yaml.v2 v2.4.0
2728
gopkg.in/yaml.v3 v3.0.1
2829
k8s.io/api v0.25.3
@@ -32,7 +33,8 @@ require (
3233
)
3334

3435
require (
35-
cloud.google.com/go/compute v1.10.0 // indirect
36+
cloud.google.com/go/compute v1.12.1 // indirect
37+
cloud.google.com/go/compute/metadata v0.2.1 // indirect
3638
github.com/Azure/go-autorest v14.2.0+incompatible // indirect
3739
github.com/Azure/go-autorest/autorest/adal v0.9.20 // indirect
3840
github.com/Azure/go-autorest/autorest/azure/cli v0.4.5 // indirect
@@ -63,7 +65,7 @@ require (
6365
github.com/google/go-querystring v1.1.0 // indirect
6466
github.com/google/gofuzz v1.2.0 // indirect
6567
github.com/googleapis/enterprise-certificate-proxy v0.2.0 // indirect
66-
github.com/googleapis/gax-go/v2 v2.6.0 // indirect
68+
github.com/googleapis/gax-go/v2 v2.7.0 // indirect
6769
github.com/hashicorp/errwrap v1.0.0 // indirect
6870
github.com/imdario/mergo v0.3.12 // indirect
6971
github.com/jmespath/go-jmespath v0.4.0 // indirect
@@ -89,20 +91,19 @@ require (
8991
github.com/xdg-go/scram v1.1.1 // indirect
9092
github.com/xdg-go/stringprep v1.0.3 // indirect
9193
github.com/youmark/pkcs8 v0.0.0-20201027041543-1326539a0a0a // indirect
92-
go.opencensus.io v0.23.0 // indirect
94+
go.opencensus.io v0.24.0 // indirect
9395
go.uber.org/atomic v1.9.0 // indirect
9496
go.uber.org/multierr v1.7.0 // indirect
9597
golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa // indirect
96-
golang.org/x/net v0.1.0 // indirect
98+
golang.org/x/net v0.2.0 // indirect
9799
golang.org/x/oauth2 v0.0.0-20221014153046-6fdb5e3db783 // indirect
98-
golang.org/x/sync v0.0.0-20220929204114-8fcdb60fdcc0 // indirect
99-
golang.org/x/sys v0.1.0 // indirect
100-
golang.org/x/term v0.1.0 // indirect
100+
golang.org/x/sys v0.2.0 // indirect
101+
golang.org/x/term v0.2.0 // indirect
101102
golang.org/x/text v0.4.0 // indirect
102103
golang.org/x/time v0.0.0-20220609170525-579cf78fd858 // indirect
103104
gomodules.xyz/jsonpatch/v2 v2.2.0 // indirect
104105
google.golang.org/appengine v1.6.7 // indirect
105-
google.golang.org/genproto v0.0.0-20221014213838-99cd37c6964a // indirect
106+
google.golang.org/genproto v0.0.0-20221027153422-115e99e71e1c // indirect
106107
google.golang.org/grpc v1.50.1 // indirect
107108
google.golang.org/protobuf v1.28.1 // indirect
108109
gopkg.in/inf.v0 v0.9.1 // indirect

0 commit comments

Comments
 (0)