@devicecloud.dev/dcd 4.4.8 → 4.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/dist/commands/cloud.js +6 -0
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
package/dist/commands/cloud.js
CHANGED
|
@@ -172,6 +172,12 @@ class Cloud extends core_1.Command {
|
|
|
172
172
|
this.error(`Maestro version ${resolvedMaestroVersion} is no longer supported. ` +
|
|
173
173
|
`Please upgrade to a newer version. See: https://docs.devicecloud.dev/configuration/maestro-versions`);
|
|
174
174
|
}
|
|
175
|
+
const DEPRECATED_MAESTRO_VERSIONS = ['1.39.5', '1.41.0'];
|
|
176
|
+
if (DEPRECATED_MAESTRO_VERSIONS.includes(resolvedMaestroVersion)) {
|
|
177
|
+
this.log(styling_1.colors.warning('⚠') + ' ' + styling_1.colors.dim(`Maestro version ${resolvedMaestroVersion} will be deprecated on 26th June 2026 and will ` +
|
|
178
|
+
`no longer be available. We recommend upgrading to 2.6.0. ` +
|
|
179
|
+
`See: https://docs.devicecloud.dev/configuration/maestro-versions`));
|
|
180
|
+
}
|
|
175
181
|
if (retry && retry > 2) {
|
|
176
182
|
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."));
|
|
177
183
|
flags.retry = 2;
|
package/oclif.manifest.json
CHANGED