@devicecloud.dev/dcd 4.4.1 → 4.4.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/dist/commands/cloud.js +4 -8
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
package/dist/commands/cloud.js
CHANGED
|
@@ -167,14 +167,10 @@ class Cloud extends core_1.Command {
|
|
|
167
167
|
debug,
|
|
168
168
|
logger: this.log.bind(this),
|
|
169
169
|
});
|
|
170
|
-
const
|
|
171
|
-
if (
|
|
172
|
-
this.
|
|
173
|
-
|
|
174
|
-
styling_1.colors.dim(`Maestro version ${resolvedMaestroVersion} is deprecated and will be removed on 27/03/2026. `) +
|
|
175
|
-
styling_1.colors.dim(`Please upgrade to a newer version. See: `) +
|
|
176
|
-
styling_1.colors.info('https://docs.devicecloud.dev/configuration/maestro-versions') + `\n` +
|
|
177
|
-
`${styling_1.dividers.light}\n`);
|
|
170
|
+
const REMOVED_MAESTRO_VERSIONS = ['1.39.2', '1.39.7', '2.0.3'];
|
|
171
|
+
if (REMOVED_MAESTRO_VERSIONS.includes(resolvedMaestroVersion)) {
|
|
172
|
+
this.error(`Maestro version ${resolvedMaestroVersion} is no longer supported. ` +
|
|
173
|
+
`Please upgrade to a newer version. See: https://docs.devicecloud.dev/configuration/maestro-versions`);
|
|
178
174
|
}
|
|
179
175
|
if (retry && retry > 2) {
|
|
180
176
|
this.log(styling_1.colors.warning('⚠') + ' ' + styling_1.colors.dim("Retries are now free of charge but limited to 2. If your test is still failing after 2 retries, please ask for help on Discord."));
|
package/oclif.manifest.json
CHANGED