balena-cli 22.3.2 → 22.3.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "balena-cli",
3
- "version": "22.3.2",
3
+ "version": "22.3.3",
4
4
  "description": "The official balena Command Line Interface",
5
5
  "main": "./build/app.js",
6
6
  "homepage": "https://github.com/balena-io/balena-cli",
@@ -257,6 +257,6 @@
257
257
  "balena-request": "14.0.6"
258
258
  },
259
259
  "versionist": {
260
- "publishedAt": "2025-09-02T13:38:22.085Z"
260
+ "publishedAt": "2025-09-02T15:02:36.096Z"
261
261
  }
262
262
  }
@@ -43,7 +43,7 @@ export default class DeviceInitCmd extends Command {
43
43
 
44
44
  'balena device register'
45
45
  'balena os download'
46
- 'balena os build-config' or 'balena config generate'
46
+ 'balena config generate'
47
47
  'balena os configure'
48
48
  'balena os local flash'
49
49
 
@@ -62,7 +62,7 @@ export default class DeviceInitCmd extends Command {
62
62
 
63
63
  Image configuration questions will be asked interactively unless a pre-configured
64
64
  'config.json' file is provided with the '--config' option. The file can be
65
- generated with the 'balena config generate' or 'balena os build-config' commands.
65
+ generated with the 'balena config generate' command.
66
66
  `;
67
67
 
68
68
  public static examples = [
@@ -90,7 +90,7 @@ export default class DeviceInitCmd extends Command {
90
90
  }),
91
91
  drive: cf.drive,
92
92
  config: Flags.string({
93
- description: 'path to the config JSON file, see `balena os build-config`',
93
+ description: 'path to the config JSON file, see `balena config generate`',
94
94
  }),
95
95
  'provisioning-key-name': Flags.string({
96
96
  description: 'custom key name assigned to generated provisioning api key',
@@ -26,6 +26,8 @@ export default class OsBuildConfigCmd extends Command {
26
26
 
27
27
  Interactively generate a configuration file that can then be used as
28
28
  non-interactive input by the 'balena os configure' command.
29
+
30
+ DEPRECATED: Use 'balena config generate' instead.
29
31
  `;
30
32
 
31
33
  public static examples = [