Skip to content

Commit 57c5b34

Browse files
committed
Merge branch 'main' into feat/dns-record-import
2 parents 118de82 + 1125e52 commit 57c5b34

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

cmd/scw/testdata/test-all-usage-dns-zone-create-usage.golden

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ USAGE:
66
scw dns zone create [arg=value ...]
77

88
ARGS:
9-
domain Domain in which to crreate the DNS zone
9+
domain Domain in which to create the DNS zone
1010
subdomain Subdomain of the DNS zone to create
1111
[project-id] Project ID to use. If none is passed the default project ID will be used
1212

cmd/scw/testdata/test-all-usage-dns-zone-update-usage.golden

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ USAGE:
66
scw dns zone update [arg=value ...]
77

88
ARGS:
9-
dns-zone DNS zone to update
9+
dns-zone The full name of the DNS zone to modify. For a root zone (e.g., example.com), enter `example.com`. For a specific sub-zone (e.g., prod.example.com), enter `prod.example.com`.
1010
new-dns-zone Name of the new DNS zone to create
1111
[project-id] Project ID to use. If none is passed the default project ID will be used
1212

docs/commands/dns.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -653,7 +653,7 @@ scw dns zone create [arg=value ...]
653653

654654
| Name | | Description |
655655
|------|---|-------------|
656-
| domain | Required | Domain in which to crreate the DNS zone |
656+
| domain | Required | Domain in which to create the DNS zone |
657657
| subdomain | Required | Subdomain of the DNS zone to create |
658658
| project-id | | Project ID to use. If none is passed the default project ID will be used |
659659

@@ -791,7 +791,7 @@ scw dns zone update [arg=value ...]
791791

792792
| Name | | Description |
793793
|------|---|-------------|
794-
| dns-zone | Required | DNS zone to update |
794+
| dns-zone | Required | The full name of the DNS zone to modify. For a root zone (e.g., example.com), enter `example.com`. For a specific sub-zone (e.g., prod.example.com), enter `prod.example.com`. |
795795
| new-dns-zone | Required | Name of the new DNS zone to create |
796796
| project-id | | Project ID to use. If none is passed the default project ID will be used |
797797

go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,18 @@ require (
1515
github.com/docker/docker v28.5.2+incompatible
1616
github.com/dustin/go-humanize v1.0.1
1717
github.com/fatih/color v1.19.0
18-
github.com/getsentry/sentry-go v0.45.0
18+
github.com/getsentry/sentry-go v0.45.1
1919
github.com/ghodss/yaml v1.0.0
2020
github.com/gorilla/websocket v1.5.4-0.20250319132907-e064f32e3674
2121
github.com/hashicorp/go-version v1.9.0
2222
github.com/karrick/tparse/v2 v2.8.2
2323
github.com/mattn/go-colorable v0.1.14
2424
github.com/mattn/go-isatty v0.0.21
25-
github.com/miekg/dns v1.1.63
25+
github.com/miekg/dns v1.1.72
2626
github.com/moby/buildkit v0.29.0
2727
github.com/moby/go-archive v0.2.0
2828
github.com/opencontainers/go-digest v1.0.0
29-
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.36.0.20260407155337-c7324437042d
29+
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.36.0.20260410075832-1d11daa52f3a
3030
github.com/skratchdot/open-golang v0.0.0-20200116055534-eef842397966
3131
github.com/spf13/cobra v1.10.2
3232
github.com/spf13/pflag v1.0.10

go.sum

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -235,8 +235,8 @@ github.com/gdamore/encoding v1.0.1 h1:YzKZckdBL6jVt2Gc+5p82qhrGiqMdG/eNs6Wy0u3Uh
235235
github.com/gdamore/encoding v1.0.1/go.mod h1:0Z0cMFinngz9kS1QfMjCP8TY7em3bZYeeklsSDPivEo=
236236
github.com/gdamore/tcell/v2 v2.12.2 h1:7hBtHPlPGNH6/ZLl22eLl7q0kfNsL+FGEggcWZuk6jk=
237237
github.com/gdamore/tcell/v2 v2.12.2/go.mod h1:+Wfe208WDdB7INEtCsNrAN6O2m+wsTPk1RAovjaILlo=
238-
github.com/getsentry/sentry-go v0.45.0 h1:/ZlbfGcaOzG4QkCACCfxrbuABemjem7UnY5o+V5HmeM=
239-
github.com/getsentry/sentry-go v0.45.0/go.mod h1:XDotiNZbgf5U8bPDUAfvcFmOnMQQceESxyKaObSssW0=
238+
github.com/getsentry/sentry-go v0.45.1 h1:9rfzJtGiJG+MGIaWZXidDGHcH5GU1Z5y0WVJGf9nysw=
239+
github.com/getsentry/sentry-go v0.45.1/go.mod h1:XDotiNZbgf5U8bPDUAfvcFmOnMQQceESxyKaObSssW0=
240240
github.com/ghodss/yaml v1.0.0 h1:wQHKEahhL6wmXdzwWG11gIVCkOv05bNOh+Rxn0yngAk=
241241
github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04=
242242
github.com/gliderlabs/ssh v0.3.8 h1:a4YXD1V7xMF9g5nTkdfnja3Sxy1PVDCj1Zg4Wb8vY6c=
@@ -364,8 +364,8 @@ github.com/mattn/go-tty v0.0.4 h1:NVikla9X8MN0SQAqCYzpGyXv0jY7MNl3HOWD2dkle7E=
364364
github.com/mattn/go-tty v0.0.4/go.mod h1:u5GGXBtZU6RQoKV8gY5W6UhMudbR5vXnUe7j3pxse28=
365365
github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0=
366366
github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b/go.mod h1:01TrycV0kFyexm33Z7vhZRXopbI8J3TDReVlkTgMUxE=
367-
github.com/miekg/dns v1.1.63 h1:8M5aAw6OMZfFXTT7K5V0Eu5YiiL8l7nUAkyN6C9YwaY=
368-
github.com/miekg/dns v1.1.63/go.mod h1:6NGHfjhpmr5lt3XPLuyfDJi5AXbNIPM9PY6H6sF1Nfs=
367+
github.com/miekg/dns v1.1.72 h1:vhmr+TF2A3tuoGNkLDFK9zi36F2LS+hKTRW0Uf8kbzI=
368+
github.com/miekg/dns v1.1.72/go.mod h1:+EuEPhdHOsfk6Wk5TT2CzssZdqkmFhf8r+aVyDEToIs=
369369
github.com/mitchellh/go-homedir v1.1.0 h1:lukF9ziXFxDFPkA1vsr5zpc1XuPDn/wFntq5mG+4E0Y=
370370
github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0=
371371
github.com/mitchellh/ioprogress v0.0.0-20180201004757-6a23b12fa88e h1:Qa6dnn8DlasdXRnacluu8HzPts0S1I9zvvUPDbBnXFI=
@@ -478,8 +478,8 @@ github.com/rogpeppe/go-internal v1.14.1/go.mod h1:MaRKkUm5W0goXpeCfT7UZI6fk/L7L7
478478
github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
479479
github.com/sabhiram/go-gitignore v0.0.0-20210923224102-525f6e181f06 h1:OkMGxebDjyw0ULyrTYWeN0UNCCkmCWfjPnIA2W6oviI=
480480
github.com/sabhiram/go-gitignore v0.0.0-20210923224102-525f6e181f06/go.mod h1:+ePHsJ1keEjQtpvf9HHw0f4ZeJ0TLRsxhunSI2hYJSs=
481-
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.36.0.20260407155337-c7324437042d h1:9sT/BfLItlKOO2JpfrIjjV4I9+f1byWEBPob9CFYNDQ=
482-
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.36.0.20260407155337-c7324437042d/go.mod h1:SKcIU6lqwljcpjOlTnSfMFfURd/XT+08spQyqN9OTWA=
481+
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.36.0.20260410075832-1d11daa52f3a h1:QgieCW5f7sJFVpjSo3yvEUIh+kF7wHyDrtkoONBttKA=
482+
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.36.0.20260410075832-1d11daa52f3a/go.mod h1:jG9ApeokegM68b/6vebk8fAhBJbqZKUoor/+f19+bH0=
483483
github.com/sclevine/spec v1.4.0 h1:z/Q9idDcay5m5irkZ28M7PtQM4aOISzOpj4bUPkDee8=
484484
github.com/sclevine/spec v1.4.0/go.mod h1:LvpgJaFyvQzRvc1kaDs0bulYwzC70PbiYjC4QnFHkOM=
485485
github.com/secure-systems-lab/go-securesystemslib v0.10.0 h1:l+H5ErcW0PAehBNrBxoGv1jjNpGYdZ9RcheFkB2WI14=

internal/namespaces/domain/v2beta1/domain_cli.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ func dnsZoneCreate() *core.Command {
364364
ArgSpecs: core.ArgSpecs{
365365
{
366366
Name: "domain",
367-
Short: `Domain in which to crreate the DNS zone`,
367+
Short: `Domain in which to create the DNS zone`,
368368
Required: true,
369369
Deprecated: false,
370370
Positional: false,
@@ -401,7 +401,7 @@ func dnsZoneUpdate() *core.Command {
401401
ArgSpecs: core.ArgSpecs{
402402
{
403403
Name: "dns-zone",
404-
Short: `DNS zone to update`,
404+
Short: `The full name of the DNS zone to modify. For a root zone (e.g., example.com), enter ` + "`" + `example.com` + "`" + `. For a specific sub-zone (e.g., prod.example.com), enter ` + "`" + `prod.example.com` + "`" + `.`,
405405
Required: true,
406406
Deprecated: false,
407407
Positional: false,

0 commit comments

Comments
 (0)