@krovacloud/cli 0.6.0 → 0.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +15 -0
- package/README.md +2 -0
- package/dist/index.js +1170 -1253
- package/dist/index.js.map +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,21 @@ All notable changes to `@krovacloud/cli` are documented here.
|
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
|
+
## 0.6.2
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
- Docs-only republish: `krova domains records <cube> <domain-id>` (the 0.6.0
|
|
12
|
+
feature) is now documented in the README. No code change.
|
|
13
|
+
|
|
14
|
+
## 0.6.1
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
|
|
18
|
+
- Automated patch republish (2026-08-27, PR #46): the package is now built with
|
|
19
|
+
**tsdown** (replacing the unmaintained tsup) and formatted with **oxfmt**
|
|
20
|
+
(replacing Prettier). No behavior change.
|
|
21
|
+
|
|
7
22
|
## 0.6.0
|
|
8
23
|
|
|
9
24
|
### Added
|
package/README.md
CHANGED
|
@@ -81,6 +81,8 @@ Manage a Cube's attached resources. All take a `<cube>` name or ID and support
|
|
|
81
81
|
# Custom domains
|
|
82
82
|
krova domains list <cube>
|
|
83
83
|
krova domains add <cube> --domain app.example.com --port 8080
|
|
84
|
+
krova domains records <cube> <domain-id> # the DNS records the domain needs,
|
|
85
|
+
# and whether each one resolves yet
|
|
84
86
|
krova domains rm <cube> <domain-id>
|
|
85
87
|
|
|
86
88
|
# Reach the Cube over HTTPS instead of cleartext — only for a Cube that
|