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
[Breaking][CDTOOL-1256] Move domainv1 commands to domain and move prior domain command to service/domain (#1615)
### Change summary
<!--
Briefly describe the changes introduced in this pull request. Include
context or
reasoning behind the changes, even if they seem minor. If relevant, link
to any
related discussions (e.g. Slack threads, tickets, documents).
-->
All Submissions:
* [x] Have you followed the guidelines in our Contributing document?
* [x] Have you checked to ensure there aren't other open [Pull
Requests](https://github.com/fastly/cli/pulls) for the same
update/change?
<!-- You can erase any parts of this template not applicable to your
Pull Request. -->
### New Feature Submissions:
* [x] Does your submission pass tests?
```
make test TEST_ARGS="-run TestDomainCreate ./pkg/commands/domain"
ok github.com/fastly/cli/pkg/commands/domain 1.063s
make test TEST_ARGS="-run TestDomainList ./pkg/commands/doma
in"
ok github.com/fastly/cli/pkg/commands/domain 1.044s
make test TEST_ARGS="-run TestDomainDescribe ./pkg/commands/
domain"
ok github.com/fastly/cli/pkg/commands/domain 1.045s
make test TEST_ARGS="-run TestDomainUpdate ./pkg/commands/do
main"
ok github.com/fastly/cli/pkg/commands/domain 1.052s
make test TEST_ARGS="-run TestDomainDelete ./pkg/commands/do
main"
ok github.com/fastly/cli/pkg/commands/domain 1.044s
---
make test TEST_ARGS="-run TestDomainDelete ./pkg/commands/service/domain"
ok github.com/fastly/cli/pkg/commands/service/domain 1.047s
make test TEST_ARGS="-run TestDomainValidate ./pkg/commands/
service/domain"
ok github.com/fastly/cli/pkg/commands/service/domain 1.072s
make test TEST_ARGS="-run TestDomainUpdate ./pkg/commands/se
rvice/domain"
ok github.com/fastly/cli/pkg/commands/service/domain 1.051s
make test TEST_ARGS="-run TestDomainDescribe ./pkg/commands/
service/domain"
ok github.com/fastly/cli/pkg/commands/service/domain 1.059s
make test TEST_ARGS="-run TestDomainList ./pkg/commands/serv
ice/domain"
ok github.com/fastly/cli/pkg/commands/service/domain 1.062s
make test TEST_ARGS="-run TestDomainCreate ./pkg/commands/se
rvice/domain"
ok github.com/fastly/cli/pkg/commands/service/domain 1.049s
```
### Changes to Core Features:
* [ ] Have you written new tests for your core changes, as applicable?
* [x] Have you successfully run tests with your changes locally?
### User Impact
Service version oriented `domain` commands have been moved under the
`service domain` command. Versionless `domainv1` commands have been
moved to the `domain` command.
### Are there any considerations that need to be addressed for release?
End users that are using the CLI in any workflows for domains will need
to update accordingly for these command changes.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,7 @@
3
3
## [Unreleased]
4
4
5
5
### Breaking:
6
+
- breaking(domain) - service version oriented `domain` commands have been moved under the `service domain` command. Versionless `domainv1` commands have been moved to the `domain` command ([#1615](https://github.com/fastly/cli/pull/1615))
6
7
7
8
### Enhancements:
8
9
- feat(rust): Allow testing with prerelease Rust versions ([#1604](https://github.com/fastly/cli/pull/1604))
0 commit comments