Skip to content

Commit 233df4d

Browse files
committed
docs(CHANGELOG) bump version, add release notes
1 parent 4007716 commit 233df4d

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,31 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
9+
## [1.4.4] - 2020-10-19
10+
### Added
11+
- Support new business service destination configuration format in `html5-list -d` and
12+
`html5-delete -d` commands
13+
- Support `DEBUG=2` to print sensitive data (e.g. access tokens) in trace logs
14+
15+
### Changed
16+
- Command `html5-push -s` generates custom property `html5-apps-repo` with value
17+
`{"app_host_id":"<guid>"}` instead of property `html5-apps-repo.app_host_id` with
18+
value `<guid>`
19+
- Command `html5-push -s` generates custom property `endpoints` with value
20+
`{"<endpoint_name>":"<url>"}` instead of property `endpoint.<endpoint_name>` with
21+
value `<url>`
22+
- Trace logs available with `DEBUG=1` will not contain access tokens any longer
23+
24+
### Fixed
25+
- Command `html5-push -s` generates business service destination with properly set
26+
endpoints timeouts
27+
- The default `xsuaa` instance configuration now contain scopes defined in `xs-app.json`
28+
routes as array (not only as string with single value), when using `cf html5-push -d`
29+
30+
### Performance
31+
- Invalidate cache after 1 hour
32+
833
## [1.4.3] - 2020-06-03
934
### Changed
1035
- Command `html5-delete -d` will not fail, if service instance with provided `app-host-id`

html5_plugin.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import (
1717
)
1818

1919
// Version is the version of the CLI plugin.
20-
var Version = "1.4.3"
20+
var Version = "1.4.4"
2121

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

0 commit comments

Comments
 (0)