Skip to content

Commit 105ad39

Browse files
Merged master
2 parents f606e92 + c0fd95c commit 105ad39

File tree

399 files changed

+1630
-1413
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

399 files changed

+1630
-1413
lines changed

.github/workflows/code-health.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ jobs:
342342
with:
343343
dockerfile: Dockerfile
344344
- name: Enable containerd image store
345-
uses: crazy-max/ghaction-setup-docker@v3.5.0
345+
uses: crazy-max/ghaction-setup-docker@v4.0.0
346346
with:
347347
version: v24.0.6
348348
daemon-config: |

.github/workflows/docker-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
release_tag=${{ steps.get-latest-tag.outputs.tag }}
8686
echo "LATEST_VERSION=${release_tag#*/}" >> "$GITHUB_ENV"
8787
- name: Enable containerd image store # See https://github.com/docker/setup-buildx-action/issues/257#issuecomment-1722284952
88-
uses: crazy-max/ghaction-setup-docker@635d07c09dc2b52072362e9bb37e7e789767106d
88+
uses: crazy-max/ghaction-setup-docker@7188e7a99827d70f850d0e0cb39c385f2a7b436d
8989
with:
9090
version: v24.0.6
9191
daemon-config: |

build/ci/library_owners.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,5 +58,6 @@
5858
"go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc": "apix-2",
5959
"go.opentelemetry.io/otel/sdk": "apix-2",
6060
"go.opentelemetry.io/otel/trace": "apix-2",
61-
"google.golang.org/grpc": "apix-2"
61+
"google.golang.org/grpc": "apix-2",
62+
"github.com/mholt/archives": "apix-2"
6263
}

docs/command/atlas-dbusers-create.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,10 @@ Options
6565
- string
6666
- false
6767
- Timestamp in ISO 8601 in UTC after which Atlas deletes the user.
68+
* - --desc
69+
- string
70+
- false
71+
- Description of this database user.
6872
* - -h, --help
6973
-
7074
- false

docs/command/atlas-dbusers-update.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,10 @@ Options
5757
- string
5858
- false
5959
- Authentication database name. If the user authenticates with AWS IAM, x.509, or LDAP, this value should be $external. If the user authenticates with SCRAM-SHA, this value should be admin.
60+
* - --desc
61+
- string
62+
- false
63+
- Description of this database user.
6064
* - -h, --help
6165
-
6266
- false

go.mod

Lines changed: 25 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/mongodb/mongodb-atlas-cli/atlascli
33
go 1.23.1
44

55
require (
6-
cloud.google.com/go/kms v1.20.1
6+
cloud.google.com/go/kms v1.20.2
77
github.com/AlecAivazis/survey/v2 v2.3.7
88
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.16.0
99
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.8.0
@@ -27,6 +27,7 @@ require (
2727
github.com/hinshun/vt10x v0.0.0-20220301184237-5011da428d02
2828
github.com/klauspost/compress v1.17.11
2929
github.com/mattn/go-isatty v0.0.20
30+
github.com/mholt/archives v0.0.0-20241207175349-5e373c52f8aa
3031
github.com/mongodb-forks/digest v1.1.0
3132
github.com/mongodb-labs/cobra2snooty v0.18.2
3233
github.com/mongodb/mongodb-atlas-kubernetes/v2 v2.5.0
@@ -49,8 +50,8 @@ require (
4950
go.opentelemetry.io/otel/trace v1.32.0
5051
golang.org/x/exp v0.0.0-20241004190924-225e2abe05e6
5152
golang.org/x/mod v0.22.0
52-
golang.org/x/sys v0.27.0
53-
golang.org/x/tools v0.27.0
53+
golang.org/x/sys v0.28.0
54+
golang.org/x/tools v0.28.0
5455
google.golang.org/api v0.210.0
5556
google.golang.org/grpc v1.68.1
5657
google.golang.org/protobuf v1.35.2
@@ -78,7 +79,9 @@ require (
7879
github.com/BurntSushi/toml v1.4.0 // indirect
7980
github.com/PaesslerAG/gval v1.0.0 // indirect
8081
github.com/ProtonMail/go-crypto v0.0.0-20230217124315-7d5c6f04bbb8 // indirect
82+
github.com/STARRY-S/zip v0.2.1 // indirect
8183
github.com/alessio/shellescape v1.4.2 // indirect
84+
github.com/andybalholm/brotli v1.1.1 // indirect
8285
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.21 // indirect
8386
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.25 // indirect
8487
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.25 // indirect
@@ -89,9 +92,13 @@ require (
8992
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.28.6 // indirect
9093
github.com/aws/aws-sdk-go-v2/service/sts v1.33.2 // indirect
9194
github.com/aws/smithy-go v1.22.1 // indirect
95+
github.com/bodgit/plumbing v1.3.0 // indirect
96+
github.com/bodgit/sevenzip v1.6.0 // indirect
97+
github.com/bodgit/windows v1.0.1 // indirect
9298
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
9399
github.com/cloudflare/circl v1.3.7 // indirect
94100
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
101+
github.com/dsnet/compress v0.0.2-0.20230904184137-39efe44ab707 // indirect
95102
github.com/ebitengine/purego v0.8.1 // indirect
96103
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
97104
github.com/evanphx/json-patch/v5 v5.9.0 // indirect
@@ -120,12 +127,16 @@ require (
120127
github.com/googleapis/enterprise-certificate-proxy v0.3.4 // indirect
121128
github.com/googleapis/gax-go/v2 v2.14.0 // indirect
122129
github.com/grpc-ecosystem/grpc-gateway/v2 v2.23.0 // indirect
130+
github.com/hashicorp/errwrap v1.1.0 // indirect
131+
github.com/hashicorp/go-multierror v1.1.1 // indirect
132+
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
123133
github.com/hashicorp/hcl v1.0.0 // indirect
124134
github.com/imdario/mergo v0.3.12 // indirect
125135
github.com/inconshreveable/mousetrap v1.1.0 // indirect
126136
github.com/josharian/intern v1.0.0 // indirect
127137
github.com/json-iterator/go v1.1.12 // indirect
128138
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
139+
github.com/klauspost/pgzip v1.2.6 // indirect
129140
github.com/kylelemons/godebug v1.1.0 // indirect
130141
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
131142
github.com/magiconair/properties v1.8.7 // indirect
@@ -137,17 +148,22 @@ require (
137148
github.com/modern-go/reflect2 v1.0.2 // indirect
138149
github.com/montanaflynn/stats v0.7.1 // indirect
139150
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
151+
github.com/nwaples/rardecode/v2 v2.0.0-beta.4.0.20241112120701-034e449c6e78 // indirect
140152
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
153+
github.com/pierrec/lz4/v4 v4.1.21 // indirect
141154
github.com/pkg/errors v0.9.1 // indirect
142155
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
143156
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect
144157
github.com/sagikazarmark/locafero v0.4.0 // indirect
145158
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
159+
github.com/sorairolake/lzip-go v0.3.5 // indirect
146160
github.com/sourcegraph/conc v0.3.0 // indirect
147161
github.com/spf13/cast v1.6.0 // indirect
148162
github.com/subosito/gotenv v1.6.0 // indirect
163+
github.com/therootcompany/xz v1.0.1 // indirect
149164
github.com/tklauser/go-sysconf v0.3.12 // indirect
150165
github.com/tklauser/numcpus v0.6.1 // indirect
166+
github.com/ulikunitz/xz v0.5.12 // indirect
151167
github.com/x448/float16 v0.8.4 // indirect
152168
github.com/xdg-go/pbkdf2 v1.0.0 // indirect
153169
github.com/xdg-go/scram v1.1.2 // indirect
@@ -163,12 +179,13 @@ require (
163179
go.opentelemetry.io/proto/otlp v1.3.1 // indirect
164180
go.uber.org/multierr v1.11.0 // indirect
165181
go.uber.org/zap v1.27.0 // indirect
166-
golang.org/x/crypto v0.29.0 // indirect
167-
golang.org/x/net v0.31.0 // indirect
182+
go4.org v0.0.0-20230225012048-214862532bf5 // indirect
183+
golang.org/x/crypto v0.31.0 // indirect
184+
golang.org/x/net v0.32.0 // indirect
168185
golang.org/x/oauth2 v0.24.0 // indirect
169-
golang.org/x/sync v0.9.0 // indirect
170-
golang.org/x/term v0.26.0 // indirect
171-
golang.org/x/text v0.20.0 // indirect
186+
golang.org/x/sync v0.10.0 // indirect
187+
golang.org/x/term v0.27.0 // indirect
188+
golang.org/x/text v0.21.0 // indirect
172189
golang.org/x/time v0.8.0 // indirect
173190
google.golang.org/genproto v0.0.0-20241118233622-e639e219e697 // indirect
174191
google.golang.org/genproto/googleapis/api v0.0.0-20241113202542-65e8d215514f // indirect

0 commit comments

Comments
 (0)