Skip to content

Commit

Permalink
docs(CHANGELOG) bump version, add release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
micellius committed Oct 19, 2020
1 parent 4007716 commit 233df4d
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,31 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [1.4.4] - 2020-10-19
### Added
- Support new business service destination configuration format in `html5-list -d` and
`html5-delete -d` commands
- Support `DEBUG=2` to print sensitive data (e.g. access tokens) in trace logs

### Changed
- Command `html5-push -s` generates custom property `html5-apps-repo` with value
`{"app_host_id":"<guid>"}` instead of property `html5-apps-repo.app_host_id` with
value `<guid>`
- Command `html5-push -s` generates custom property `endpoints` with value
`{"<endpoint_name>":"<url>"}` instead of property `endpoint.<endpoint_name>` with
value `<url>`
- Trace logs available with `DEBUG=1` will not contain access tokens any longer

### Fixed
- Command `html5-push -s` generates business service destination with properly set
endpoints timeouts
- The default `xsuaa` instance configuration now contain scopes defined in `xs-app.json`
routes as array (not only as string with single value), when using `cf html5-push -d`

### Performance
- Invalidate cache after 1 hour

## [1.4.3] - 2020-06-03
### Changed
- Command `html5-delete -d` will not fail, if service instance with provided `app-host-id`
Expand Down
3 changes: 2 additions & 1 deletion html5_plugin.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
)

// Version is the version of the CLI plugin.
var Version = "1.4.3"
var Version = "1.4.4"

// HTML5Plugin represents a cf CLI plugin for working with HTML5 Application Repository service
type HTML5Plugin struct{}
Expand All @@ -41,6 +41,7 @@ func (p *HTML5Plugin) Run(cliConnection plugin.CliConnection, args []string) {
if err != nil {
log.Fatalln(err)
}
log.Tracef("Running CloudFoundry html5-plugin %s\n", Version)
command.Initialize(command.GetPluginCommand().Name, cliConnection)
status := command.Execute(args[1:])
if status == commands.Failure {
Expand Down

0 comments on commit 233df4d

Please sign in to comment.