Skip to content

Latest commit

 

History

History
482 lines (327 loc) · 9.91 KB

1.x-to-2.0.md

File metadata and controls

482 lines (327 loc) · 9.91 KB

Appcircle CLI Migration Guide from Version 1.x to 2.0

Introduction

This guide provides instructions for migrating Appcircle CLI commands from version 1.x to version 2.0 It outlines the changes in the command structure and provides examples for updating your commands accordingly.

Update Command Syntax

  • Modify the syntax of commands according to the changes in version 2.0. Use the following format:
    • Old command syntax:
      appcircle oldCommand <subcommand> [options] [arguments]
    • New command syntax:
      appcircle <command> <subcommand> ... <subcommand> [options] [arguments]

Command Migration Guide

This guide outlines the changes required to migrate your existing Appcircle CLI commands from version 1.x to version 2.0. Below, you'll find a list of all commands along with the corresponding changes needed for each.


appcircle publish profile version markAsRC

Old Command:

$ appcircle publish profile version markAsRC [options] [arguments]

New Command:

$ appcircle publish profile version mark-as-rc [options] [arguments]

appcircle publish profile version unmarkAsRC

Old Command:

$ appcircle publish profile version unmarkAsRC [options] [arguments]

New Command:

$ appcircle publish profile version unmark-as-rc [options] [arguments]

appcircle listBuildProfiles

Old Command:

$ appcircle listBuildProfiles [options] [arguments]

New Command:

$ appcircle build profile list [options] [arguments]

appcircle listBuildProfileBranches

Old Command:

$ appcircle listBuildProfileBranches [options] [arguments]

New Command:

$ appcircle build profile branch list [options] [arguments]

appcircle listBuildProfileWorkflows

Old Command:

$ appcircle listBuildProfileWorkflows [options] [arguments]

New Command:

$ appcircle build profile workflows [options] [arguments]

appcircle listBuildProfileConfigurations

Old Command:

$ appcircle listBuildProfileConfigurations [options] [arguments]

New Command:

$ appcircle build profile configurations [options] [arguments]

appcircle listBuildProfileCommits

Old Command:

$ appcircle listBuildProfileCommits [options] [arguments]

New Command:

$ appcircle build profile branch commits [options] [arguments]

appcircle listBuildProfileBuildsOfCommit

Old Command:

$ appcircle listBuildProfileBuildsOfCommit [options] [arguments]

New Command:

$ appcircle build list [options] [arguments]

appcircle listDistributionProfiles

Old Command:

$ appcircle listDistributionProfiles [options] [arguments]

New Command:

$ appcircle distribution profile list [options] [arguments]

appcircle build

Old Command:

$ appcircle build [options] [arguments]

New Command:

$ appcircle build start [options] [arguments]

appcircle download

Old Command:

$ appcircle download [options] [arguments]

New Command:

$ appcircle build download [options] [arguments]

appcircle upload

Old Command:

$ appcircle upload [options] [arguments]

New Command:

$ appcircle distribution upload [options] [arguments]

appcircle createDistributionProfile

Old Command:

$ appcircle createDistributionProfile [options] [arguments]

New Command:

$ appcircle distribution profile create [options] [arguments]

appcircle listEnvironmentVariableGroups

Old Command:

$ appcircle listEnvironmentVariableGroups [options] [arguments]

New Command:

$ appcircle build variable group list [options] [arguments]

appcircle createEnvironmentVariableGroup

Old Command:

$ appcircle createEnvironmentVariableGroup [options] [arguments]

New Command:

$ appcircle build variable group create [options] [arguments]

appcircle listEnvironmentVariables

Old Command:

$ appcircle listEnvironmentVariables [options] [arguments]

New Command:

$ appcircle build variable view [options] [arguments]

appcircle createEnvironmentVariable

Old Command:

$ appcircle createEnvironmentVariable [options] [arguments]

New Command:

$ appcircle build variable create [options] [arguments]

appcircle listEnterpriseProfiles

Old Command:

$ appcircle listEnterpriseProfiles [options] [arguments]

New Command:

$ appcircle enterprise-app-store profile list [options] [arguments]

appcircle listEnterpriseAppVersions

Old Command:

$ appcircle listEnterpriseAppVersions [options] [arguments]

New Command:

$ appcircle enterprise-app-store version list [options] [arguments]

appcircle publishEnterpriseAppVersion

Old Command:

$ appcircle publishEnterpriseAppVersion [options] [arguments]

New Command:

$ appcircle enterprise-app-store version publish [options] [arguments]

appcircle unpublishEnterpriseAppVersion

Old Command:

$ appcircle unpublishEnterpriseAppVersion [options] [arguments]

New Command:

$ appcircle enterprise-app-store version unpublish [options] [arguments]

appcircle removeEnterpriseAppVersion

Old Command:

$ appcircle removeEnterpriseAppVersion [options] [arguments]

New Command:

$ appcircle enterprise-app-store version remove [options] [arguments]

appcircle notifyEnterpriseAppVersion

Old Command:

$ appcircle notifyEnterpriseAppVersion [options] [arguments]

New Command:

$ appcircle enterprise-app-store version notify [options] [arguments]

appcircle uploadEnterpriseAppVersion

Old Command:

$ appcircle uploadEnterpriseAppVersion [options] [arguments]

New Command:

$ appcircle enterprise-app-store version upload-for-profile [options] [arguments]

appcircle uploadEnterpriseApp

Old Command:

$ appcircle uploadEnterpriseApp [options] [arguments]

New Command:

$ appcircle enterprise-app-store version upload-without-profile [options] [arguments]

appcircle getEnterpriseDownloadLink

Old Command:

$ appcircle getEnterpriseDownloadLink [options] [arguments]

New Command:

$ appcircle enterprise-app-store version download-link [options] [arguments]