@devicecloud.dev/dcd 4.3.0 → 4.3.1
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 +9 -0
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
package/dist/commands/cloud.js
CHANGED
|
@@ -164,6 +164,15 @@ class Cloud extends core_1.Command {
|
|
|
164
164
|
debug,
|
|
165
165
|
logger: this.log.bind(this),
|
|
166
166
|
});
|
|
167
|
+
const DEPRECATED_MAESTRO_VERSIONS = ['1.39.2', '1.39.7'];
|
|
168
|
+
if (DEPRECATED_MAESTRO_VERSIONS.includes(resolvedMaestroVersion)) {
|
|
169
|
+
this.log(`\n${styling_1.dividers.light}\n` +
|
|
170
|
+
`${styling_1.colors.warning('⚠')} ${styling_1.colors.bold('Deprecation Warning')}\n` +
|
|
171
|
+
styling_1.colors.dim(`Maestro version ${resolvedMaestroVersion} is deprecated and will be removed soon. `) +
|
|
172
|
+
styling_1.colors.dim(`Please upgrade to a newer version. See: `) +
|
|
173
|
+
styling_1.colors.info('https://docs.devicecloud.dev/reference/maestro-versions') + `\n` +
|
|
174
|
+
`${styling_1.dividers.light}\n`);
|
|
175
|
+
}
|
|
167
176
|
if (retry && retry > 2) {
|
|
168
177
|
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."));
|
|
169
178
|
flags.retry = 2;
|
package/oclif.manifest.json
CHANGED