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
- When retrieving changesets, XLTS versions are also supported.
- In the list command, `--xlts` is changed to a filter option and includes XLTS versions in the results when enabled.
Copy file name to clipboardExpand all lines: src/cli.ts
+9-11Lines changed: 9 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -52,13 +52,13 @@ new Command()
52
52
.example("unity-changeset list --lts --latest-patch","List changesets of the latest patch versions (LTS only).")
53
53
// Search options.
54
54
.group("Search options")
55
-
.option("--all","Search all changesets (alpha/beta included)")
56
-
.option("--pre-release, --beta","Search only pre-release (alpha/beta) changesets",{conflicts: ["all","lts","xlts"]})
57
-
.option("--lts","Only the LTS versions",{conflicts: ["all","pre-release","xlts","supported"]})
58
-
.option("--xlts","Only the LTS/XLTS versions (require 'Enterprise' or 'Industry' license to install XLTS version)",{conflicts: ["all","pre-release","lts","supported"]})
59
-
.option("--supported","Only the supported versions (including Unity 6000)",{conflicts: ["all","pre-release","lts","xlts"]})
55
+
.option("--all","Search in all streams (alpha/beta included)")
56
+
.option("--supported","Search in the 'SUPPORTED' stream (including Unity 6000)",{conflicts: ["all","pre-release","lts"]})
57
+
.option("--lts","Search in the 'LTS' stream",{conflicts: ["all","supported","pre-release"]})
58
+
.option("--pre-release, --beta","Search in the 'ALPHA' and 'BETA' streams",{conflicts: ["all","supported","lts"]})
60
59
// Filter options.
61
60
.group("Filter options")
61
+
.option("--xlts","Include XLTS entitlement versions (require 'Enterprise' or 'Industry' license to install XLTS version)")
62
62
.option("--min <version>","Minimum version (included)")
63
63
.option("--max <version>","Maximum version (included)")
0 commit comments