balena-cli 23.1.2 → 23.1.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": "23.1.2",
3
+ "version": "23.1.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",
@@ -262,6 +262,6 @@
262
262
  "balena-request": "14.0.6"
263
263
  },
264
264
  "versionist": {
265
- "publishedAt": "2025-11-19T14:33:21.095Z"
265
+ "publishedAt": "2025-11-19T17:57:21.606Z"
266
266
  }
267
267
  }
@@ -98,6 +98,9 @@ const hook: Hook<'prerun'> = async function (options) {
98
98
  }
99
99
 
100
100
  if (
101
+ // version and autocomplete come from oclif plugins, for which we cannot add offlineCompatible true
102
+ options.Command.id !== 'version' &&
103
+ !/^autocomplete\b/.test(options.Command.id) &&
101
104
  !(
102
105
  (options.Command as Command.Class & { offlineCompatible: boolean })
103
106
  .offlineCompatible ?? DEFAULT_OFFLINE_COMPATIBLE