You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor(cloud): rename --ios-config/--android-config to --ios-device-matrix/--android-device-matrix (#77)
Renames the device-matrix flags to match the API's `deviceMatrix` field and to
say what they actually are (#1105).
Clean break — no alias, no migration guard. The old names only ever existed in
5.2.0-beta.1, an unconsumed beta, so there is nobody to migrate.
Deliberately NOT marked breaking. A `!` bumps the MAJOR on this 5.x repo
(`bump-minor-pre-major` only applies below 1.0.0), which would ship a bogus
6.0.0 for renaming flags that nobody uses.
Copy file name to clipboardExpand all lines: src/config/flags/device.flags.ts
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -42,13 +42,13 @@ export const deviceFlags = {
42
42
type: 'string',
43
43
description: `[iOS only] iOS version to run your flow against (options: ${iosVersions})`,
44
44
},
45
-
'ios-config': {
45
+
'ios-device-matrix': {
46
46
type: 'string',
47
-
description: `[iOS only] Device-matrix cell as <device>:<version>, e.g. iphone-16:18. Repeatable — every flow runs once per cell (no cross-product). Cannot be combined with --android-config.`,
47
+
description: `[iOS only] Device-matrix cell as <device>:<version>, e.g. iphone-16:18. Repeatable — every flow runs once per cell (no cross-product). Cannot be combined with --android-device-matrix.`,
48
48
},
49
-
'android-config': {
49
+
'android-device-matrix': {
50
50
type: 'string',
51
-
description: `[Android only] Device-matrix cell as <device>:<apiLevel> (append :play for Google Play), e.g. pixel-7:34 or pixel-7:34:play. Repeatable — every flow runs once per cell (no cross-product). Cannot be combined with --ios-config.`,
51
+
description: `[Android only] Device-matrix cell as <device>:<apiLevel> (append :play for Google Play), e.g. pixel-7:34 or pixel-7:34:play. Repeatable — every flow runs once per cell (no cross-product). Cannot be combined with --ios-device-matrix.`,
0 commit comments