You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* feat!: remove deprecated camelCase options
These commands option have been deprecated since 12.8.0 (25 months ago):
https://github.com/netlify/cli/releases/tag/v12.8.0.
Removes:
- `--httpProxyCertificateFilename`
- `--prodIfUnlocked`
- `--functionsPort`
- `--targetPort`
- `--edgeInspect`
- `--edgeInspectBrk`
- `--replaceExisting`
- `--gitRemoteName`
The change in 12.8.0 also intended to rename `--httpProxy` to `--http-proxy` but there was a typo resulting in that
never happening. To err on the safe side, this fixes that change without removing the camel case variant yet.
* fix: update references to renamed options
* feat!: rename `--httpProxy` to `--http-proxy`
This was not a documented option, so this is arguably not breaking, but marking as
breaking to err on the side of caution.
'Old, prefer --prod-if-unlocked. Deploy to production if unlocked, create a draft otherwise',
89
-
)
88
+
newOption('--prod-if-unlocked','Deploy to production if unlocked, create a draft otherwise')
90
89
.default(false)
91
-
.hideHelp(true)
92
90
.conflicts(['alias','branch','prod']),
93
91
)
94
-
.option('--prod-if-unlocked','Deploy to production if unlocked, create a draft otherwise',false)
95
92
.option(
96
93
'--alias <name>',
97
94
'Specifies the alias for deployment, the string at the beginning of the deploy subdomain. Useful for creating predictable deployment URLs. Avoid setting an alias string to the same value as a deployed branch. `alias` doesn’t create a branch deploy and can’t be used in conjunction with the branch subdomain feature. Maximum 37 characters.',
'Old, prefer --edge-inspect-brk. Enable the V8 Inspector Protocol for Edge Functions and pause execution on the first line of code, with an optional address in the host:port format',
0 commit comments