From 081a03ab136822a90586b584c7b3037cdc5e5609 Mon Sep 17 00:00:00 2001 From: Max Neunhoeffer Date: Tue, 19 Feb 2019 17:42:21 +0100 Subject: [PATCH] Get rid of automatic CHANGELOG generation. Add changelog for 0.3.8. --- CHANGELOG.md | 21 ++++++++++++++++++++- MAINTAINERS.md | 2 ++ tools/release/release.go | 4 ++-- 3 files changed, 24 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 21e856c0d..f6b6533ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Change Log +## [0.3.8](https://github.com/arangodb/kube-arangodb/tree/0.3.8) (2019-02-19) +[Full Changelog](https://github.com/arangodb/kube-arangodb/compare/0.3.6...0.3.7) + +- Added scaling limits to spec and enforce in operator. +- npm update for dashboard to alleviate security problems. +- Added bare metal walk through to documentation. +- Wait for coordinator to be ready in kubernetes. +- Schedule only one CleanOutServer job in drain scenario, introduce + Drain phase. +- Take care of case that server is terminated by drain before cleanout + has completed. +- Added undocumented force-status-reload status field. +- Take care of case that all coordinators have failed: delete all + coordinator pods and create new ones. +- Updated lodash for dashboard. +- Try harder to remove server from cluster if it does not work right away. +- Update member status, if once decided to drain, continue draining. + This takes care of more corner cases. + ## [0.3.7](https://github.com/arangodb/kube-arangodb/tree/0.3.7) (2019-01-03) [Full Changelog](https://github.com/arangodb/kube-arangodb/compare/0.3.6...0.3.7) @@ -379,4 +398,4 @@ -\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)* \ No newline at end of file +\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)* diff --git a/MAINTAINERS.md b/MAINTAINERS.md index 68bf2625c..cdcc91edc 100644 --- a/MAINTAINERS.md +++ b/MAINTAINERS.md @@ -16,6 +16,8 @@ make run-tests To prepare for a release, do the following: - Make sure all tests are OK. +- Update the CHANGELOG manually, since the automatic CHANGELOG + generation is switched off (did not work in many cases). ## Building a release diff --git a/tools/release/release.go b/tools/release/release.go index c4f47e689..9ece3e682 100644 --- a/tools/release/release.go +++ b/tools/release/release.go @@ -78,8 +78,8 @@ func main() { createSHA256Sums() gitCommitAll(fmt.Sprintf("Updated manifest to %s", version)) // Commit manifest gitTag(version) - make("changelog", nil) - gitCommitAll(fmt.Sprintf("Updated changelog for %s", version)) // Commit CHANGELOG.md + //make("changelog", nil) + //gitCommitAll(fmt.Sprintf("Updated changelog for %s", version)) // Commit CHANGELOG.md githubCreateRelease(version) bumpVersion("devel") }