From eef6e0e2c35566b21fe93da64832306d48e47f42 Mon Sep 17 00:00:00 2001 From: Andy Goldstein Date: Wed, 13 Sep 2017 15:22:53 -0400 Subject: [PATCH] Bump to v0.4.0 Signed-off-by: Andy Goldstein --- CHANGELOG.md | 24 ++++++++++++++++++++++++ Makefile | 2 +- 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index da3915c05..92920aae4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,29 @@ # Changelog +#### [v0.4.0](https://github.com/heptio/ark/tree/v0.4.0) - 2017-09-14 +Breaking changes: + * Snapshotting and restoring volumes is now enabled by default + * The --namespaces flag for 'ark restore create' has been replaced by --include-namespaces and + --exclude-namespaces + +New features: + * Support for S3 SSE with KMS + * Cloud provider configurations are validated at startup + * The persistentVolumeProvider is now optional + * Restore objects are garbage collected + * Each backup now has an associated log file, viewable via 'ark backup logs' + * Each restore now has an associated log file, viewable via 'ark restore logs' + * Add --include-resources/--exclude-resources for restores + +Bug fixes: + * Only save/use iops for io1 volumes on AWS + * When restoring, try to retrieve the Backup directly from object storage if it's not found + * When syncing Backups from object storage to Kubernetes, don't return at the first error + encountered + * More closely match how kubectl performs kubeconfig resolution + * Increase default Azure API request timeout to 2 minutes + * Update Azure diskURI to match diskName + #### [v0.3.3](https://github.com/heptio/ark/tree/v0.3.3) - 2017-08-10 * Treat the first field in a schedule's cron expression as minutes, not seconds diff --git a/Makefile b/Makefile index e0c995316..ed5e7cc92 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ # project related vars ROOT_DIR := $(shell dirname $(abspath $(lastword $(MAKEFILE_LIST)))) PROJECT = ark -VERSION ?= v0.3.3 +VERSION ?= v0.4.0 GOTARGET = github.com/heptio/$(PROJECT) OUTPUT_DIR = $(ROOT_DIR)/_output BIN_DIR = $(OUTPUT_DIR)/bin