@krovacloud/cli 0.6.1 → 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 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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@krovacloud/cli",
3
- "version": "0.6.1",
3
+ "version": "0.6.2",
4
4
  "description": "Krova Cloud CLI (krova) — manage Cubes (Firecracker microVMs), browse the catalog, and log in, from your terminal.",
5
5
  "license": "MIT",
6
6
  "author": "Krova Inc.",
@@ -39,15 +39,15 @@
39
39
  "node": ">=20"
40
40
  },
41
41
  "dependencies": {
42
- "commander": "^15.0.0",
43
- "@krovacloud/webhook": "0.1.9",
44
- "@krovacloud/sdk": "0.4.1"
42
+ "@krovacloud/sdk": "0.4.2",
43
+ "@krovacloud/webhook": "0.1.10",
44
+ "commander": "^15.0.0"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@types/node": "^26.3.0",
48
48
  "tsdown": "0.22.14",
49
49
  "tsx": "^4.23.12",
50
- "typescript": "^6.0.3"
50
+ "typescript": "^7.0.2"
51
51
  },
52
52
  "scripts": {
53
53
  "build": "tsdown",