balena-cli 17.4.8 → 17.4.9

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,10 @@ All notable changes to this project will be documented in this file
4
4
  automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY!
5
5
  This project adheres to [Semantic Versioning](http://semver.org/).
6
6
 
7
+ ## 17.4.9 - 2023-12-19
8
+
9
+ * Fix publishing artifacts to gh release [Otávio Jacobi]
10
+
7
11
  ## 17.4.8 - 2023-12-19
8
12
 
9
13
  * Remove repo config from flowzone.yml [Kyle Harding]
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "balena-cli",
3
- "version": "17.4.8",
3
+ "version": "17.4.9",
4
4
  "lockfileVersion": 2,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "balena-cli",
9
- "version": "17.4.8",
9
+ "version": "17.4.9",
10
10
  "hasInstallScript": true,
11
11
  "license": "Apache-2.0",
12
12
  "dependencies": {
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "17.4.8",
2
+ "version": "17.4.9",
3
3
  "commands": {
4
4
  "api-key:generate": {
5
5
  "id": "api-key:generate",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "balena-cli",
3
- "version": "17.4.8",
3
+ "version": "17.4.9",
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",
@@ -284,6 +284,6 @@
284
284
  "windosu": "^0.3.0"
285
285
  },
286
286
  "versionist": {
287
- "publishedAt": "2023-12-19T20:21:31.885Z"
287
+ "publishedAt": "2023-12-19T22:11:11.992Z"
288
288
  }
289
289
  }
@@ -12,10 +12,10 @@ index 607d8dc..07ba1f2 100644
12
12
  return lines.join('\n');
13
13
  }
14
14
  diff --git a/node_modules/@oclif/core/lib/help/command.js b/node_modules/@oclif/core/lib/help/command.js
15
- index 82d9eed..0a8d45f 100644
15
+ index 0753040..c1b0f67 100644
16
16
  --- a/node_modules/@oclif/core/lib/help/command.js
17
17
  +++ b/node_modules/@oclif/core/lib/help/command.js
18
- @@ -48,7 +48,7 @@ class CommandHelp extends formatter_1.HelpFormatter {
18
+ @@ -58,7 +58,7 @@ class CommandHelp extends formatter_1.HelpFormatter {
19
19
  if (args.filter((a) => a.description).length === 0)
20
20
  return;
21
21
  return args.map((a) => {
@@ -24,7 +24,7 @@ index 82d9eed..0a8d45f 100644
24
24
  let description = a.description || '';
25
25
  if (a.default)
26
26
  description = `${(0, theme_1.colorize)(this.config?.theme?.flagDefaultValue, `[default: ${a.default}]`)} ${description}`;
27
- @@ -143,14 +143,12 @@ class CommandHelp extends formatter_1.HelpFormatter {
27
+ @@ -153,14 +153,12 @@ class CommandHelp extends formatter_1.HelpFormatter {
28
28
  label = labels.join((0, theme_1.colorize)(this.config?.theme?.flagSeparator, flag.char ? ', ' : ' '));
29
29
  }
30
30
  if (flag.type === 'option') {