Skip to content

Commit

Permalink
Update change log for 3.1.0 release (#369)
Browse files Browse the repository at this point in the history
* Update change log for 3.1.0 release

* Add missing feature
  • Loading branch information
nwmac authored Apr 16, 2020
1 parent 77ac795 commit 0d65724
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@

## 3.1.0

[Full Changelog](https://github.com/cloudfoundry/stratos/compare/3.0.0...3.1.0)
[Full Changelog](https://github.com/SUSE/stratos/compare/3.0.0...3.1.0)

This release contains a number of fixes and improvements:

**Improvements:**

- Add containers table in pods list pod row drop down [\#351](https://github.com/SUSE/stratos/pull/351)
- Update Feature Flags with new entries [\#4188](https://github.com/cloudfoundry/stratos/issues/4188)
- Improve Application Deployment UI [\#4183](https://github.com/cloudfoundry/stratos/pull/4183)
- Scalability: Improve handling of 'maxed' lists [\#4180](https://github.com/cloudfoundry/stratos/issues/4180)
Expand All @@ -23,6 +24,9 @@ This release contains a number of fixes and improvements:

**Fixes:**

- Metrics do not show for a Kubernetes 1.16+ cluster [\#362](https://github.com/SUSE/stratos/issues/362)
- Logos squashed in Workloads view [\#361](https://github.com/SUSE/stratos/issues/361)
- Can't deploy version 3.0.0 on EKS [\#357](https://github.com/SUSE/stratos/issues/357)
- CF Quota's `Maximum Application Instance Memory Usage` not formatted correctly [\#4206](https://github.com/cloudfoundry/stratos/issues/4206)
- Notification and error pages loop when using 'X' [\#4202](https://github.com/cloudfoundry/stratos/issues/4202)
- Cf app redeploy stepper starts with empty step, cannot continue [\#4185](https://github.com/cloudfoundry/stratos/issues/4185)
Expand Down
5 changes: 4 additions & 1 deletion build/tools/changelog.sh
Original file line number Diff line number Diff line change
Expand Up @@ -67,16 +67,19 @@ function log() {
echo $1 | tee -a ${CHANGELOG}
}

COMPARE_REPO=${REPO}
QUERY="repo:${REPO}+milestone:3.1.0+state:closed"
if [ -n "${FORK}" ]; then
FORK_QUERY="repo:${FORK}+milestone:3.1.0+state:closed"
COMPARE_REPO=${FORK}
fi

BUGS="+label:bug"
NON_BUGS="+-label:bug"

mv ${CHANGELOG} CHANGELOG.old


echo ""
echo -e "${CYAN}${BOLD}Generating Change log - content for version ${MILESTONE} will be shown below"
echo -e "---------------------------------------------------------------------${RESET}"
Expand All @@ -85,7 +88,7 @@ echo "# Change Log" > ${CHANGELOG}
log ""
log "## ${MILESTONE}"
log ""
log "[Full Changelog](https://github.com/${REPO}/compare/${CURRENT}...${MILESTONE})"
log "[Full Changelog](https://github.com/${COMPARE_REPO}/compare/${CURRENT}...${MILESTONE})"
log ""
log "This release contains a number of fixes and improvements:"
log ""
Expand Down

0 comments on commit 0d65724

Please sign in to comment.