The --populate-on-preview flag now defaults to false, which is safer (POSSIBLE BREAKING CHANGE) (#3693)

This commit is contained in:
Tom Limoncelli 2025-07-28 10:54:05 -04:00 committed by GitHub
parent 30fedaa38c
commit 74f2005ee7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -105,7 +105,7 @@ func (args *PPreviewArgs) flags() []cli.Flag {
flags = append(flags, &cli.BoolFlag{
Name: "populate-on-preview",
Destination: &args.PopulateOnPreview,
Value: true,
Value: false,
Usage: `Auto-create zones on preview`,
})
flags = append(flags, &cli.BoolFlag{