Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
Apache CloudStack CloudMonkey Changelog
---------------------------------------

Version 6.6.0
=============
This release includes:
- Adds support for API request signing with HmacSHA512
- Adds a switch command to change the active server profile from the shell
- Adds support for configuring cmk through environment variables in addition to arguments
- Adds autocompletion for virtual machines that belong to projects
- Uses the Related metadata exposed by API discovery to pick the right list API for autocompletion
- Fixes autocompletion for APIs whose noun ends in 'y', such as snapshot policies
- Fixes a slice bounds panic in autocompletion
- Fixes a nil pointer panic on sync when the management server returns an empty API list
- Fixes filter=count output to avoid emitting empty objects
- Switches to the maintained ergochat/readline library for the interactive shell
- Improves repository automation, licence auditing and security documentation

Version 6.5.0
=============
This release includes:
Expand Down
2 changes: 1 addition & 1 deletion config/about.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ func (c *Config) Name() string {

// Version CLI
func (c *Config) Version() string {
return "6.6.0-SNAPSHOT"
return "6.6.0"
}

// PrintHeader prints startup message in CLI mode
Expand Down
2 changes: 1 addition & 1 deletion snap/snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: cloudmonkey
# define the tag anchor on the allowed 'version' field
version: &release_tag 6.5.0
version: &release_tag 6.6.0
summary: Apache CloudStack CLI
description: |
A CLI and interactive shell that simplifies configuration and management of
Expand Down
Loading