Skip to content
This repository has been archived by the owner on Oct 5, 2021. It is now read-only.

Releases: wso2-attic/choreo-cli

Choreo CLI 1.0.0 - Milestone 5

19 Dec 07:12
4729ead
Compare
Choose a tag to compare
Pre-release

This is the fifth milestone build of Choreo CLI. This release note also describes how to get started, submit feature requests, bugs and feedback.

Disclaimer: The deployment related to this release is in its early development stage and is not bound by a production-grade SLA. While future milestones will be moved to a production-grade deployment and a guaranteed SLA, currently users are warned about the expected instability.

What’s new

  • New command to delete an application

    $ chor app delete a12345678901
    a12345678901 is successfully deleted
    

    app-delete

  • New command to access status of an application

    $chor app status a12345678902
     CREATED
    

    app -status

  • Capability to deploy to an existing application.

    $ chor app create hello-world
    
    $ chor app list
      ID             APPLICATION NAME   DESCRIPTION                  
     -------------- ------------------ ----------------------------- 
      ahdyflq7zvfx   hello-world        My first Choreo application  
    
    $ chor app deploy ahdyflq7zvfx http://github.com/abc/test.git
    The application with id ahdyflq7zvfx has been updated
    Once deployed, the app can be accessed from https://apps.preprod.choreo.dev/choreoapps/ahdyflq7zvfx
    
  • New shorthand command to do both application creation and deployment

    $ chor app deploy -n new-app-name https://www.github.com/john/app
    A new application is created for deployment with Id: apphby232y3421341
    Once deployed, the app can be accessed from https://choreo.dev/apps/apphby232y3421341
    
  • Support for Homebrew package manager. Mac users can now install/update Choreo CLI using brew.

    To install

    $ brew tap wso2/choreo && brew install chor
    

    To update

    $ brew update chor
    

Bug fixes and other improvements

Documentation & getting started

Future milestones

Known bugs & limitations

Feedback

We would love to hear your feedback!

You can request a feature, improvement or report a bug - https://github.com/wso2/choreo-cli/issues

Thank You,

WSO2 Choreo Team

Choreo CLI 1.0.0 - Milestone 4

21 Nov 14:31
e1f4693
Compare
Choose a tag to compare
Pre-release

This is the fourth milestone build of Choreo CLI. This release note also describes how to get started, submit feature requests, bugs and feedback.

Disclaimer: The deployment related to this release is in its early development stage and is not bound by a production-grade SLA. While future milestones will be moved to a production-grade deployment and a guaranteed SLA, currently users are warned about the expected instability.

What’s new

  • New command to get application logs of a deployed Ballerina application.

    $ chor app logs show APP_ID
    

    Peek 2019-11-21 19-54

  • Now the application ID is also shown when user applications are listed using chor app list.

    $ chor app list
      ID                                    APPLICATION NAME   DESCRIPTION                  
     ------------------------------------- ------------------ ----------------------------- 
      app4dd6212eaed9545c5f43bf6a5cd79266   hello-world        My first Choreo application
    
  • The chor app list will now display only the applications created by the relevant user. Earlier the application view was global.

Bug fixes and other improvements

Documentation & getting started

Future milestones

Known bugs & limitations

Feedback

We would love to hear your feedback!

You can request a feature, improvement or report a bug - https://github.com/wso2/choreo-cli/issues

Thank You,

WSO2 Choreo Team

Choreo CLI 1.0.0 - Milestone 3

31 Oct 13:31
b3a8c12
Compare
Choose a tag to compare
Pre-release

This is the third milestone build of Choreo CLI. This release note also describes how to get started, submit feature requests, bugs and feedback.

Disclaimer: The deployment related to this release is in its early development stage and is not bound by a production-grade SLA. While future milestones will be moved to a production-grade deployment and a guaranteed SLA, currently users are warned about the expected instability.

What’s new

  • New command to deploy a simple ballerina application to the Choreo cloud.
    This command is a draft, this is not the final design of the cli command to do the app deployment. We are implementing this to bootstrap the app deployment process. This command will likely be deprecated in future

    $ chor app deploy GITHUB_URL
    

    app_deploy_v4

  • Global verbose flag. CLI users can now use --verbose (shorthand: -v) to view the debug output of a command.
    --verbose is a global flag and is currently added to the list action of the app group to see the errors of the app and the deployment process, but this will be changed in future to provide debug logs during app deployment process and likely will be attached to a different command for that purpose

    $ chor app list --verbose
    

    verbose

Bug fixes and other improvements

Documentation & getting started

Future milestones

Known bugs & limitations

Feedback

We would love to hear your feedback!

You can request a feature, improvement or report a bug - https://github.com/wso2/choreo-cli/issues

Thank You,

WSO2 Choreo Team

Choreo CLI 1.0.0 - Milestone 2

31 Oct 13:27
fd6aef8
Compare
Choose a tag to compare
Pre-release

This is the second milestone build of Choreo CLI. This release note also describes how to get started, submit feature requests, bugs and feedback.

Disclaimer: The deployment related to this release is in its early development stage and is not bound by a production-grade SLA. While future milestones will be moved to a production-grade deployment and a guaranteed SLA, currently users are warned about the expected instability.

What’s new

  • Introduce a new alias "app" for "application" commands. Now you can issue commands like below.
    $ chor app list
    
  • Choreo login command has changed to auth login from login
    $ chor auth login
    
  • New command to connect the user's GitHub account with Choreo.
    $ chor auth connect github
    

Bug fixes and other improvements

Documentation & getting started

Future milestones

Known bugs & limitations

Feedback

We would love to hear your feedback!

You can request a feature, improvement or report a bug - https://github.com/wso2/choreo-cli/issues

Thank You,

WSO2 Choreo Team

Choreo CLI 1.0.0 - Milestone 1

23 Sep 06:36
Compare
Choose a tag to compare
Pre-release

This is the first milestone build and t of Choreo CLI. This release note also describes how to get started, submit feature requests, bugs and feedback.

Disclaimer: The deployment related to this release is in its early development stage and is not bound by a production-grade SLA. While future milestones will be moved to a production-grade deployment and a guaranteed SLA, currently users are warned about the expected instability.

What’s new

  • CLI login command
  • Application creation command
  • Application list command

Documentation & getting started

Future milestones

Known bugs & limitations

Feedback

We would love to hear your feedback!

You can request a feature, improvement or report a bug - https://github.com/wso2/choreo-cli/issues

Thank You,

WSO2 Choreo Team