From c194765258bcf02a47a7f1f507f38f4ead8a0f52 Mon Sep 17 00:00:00 2001 From: xing-yang Date: Fri, 3 Jan 2020 21:31:00 +0000 Subject: [PATCH] Add changelog for release 2.0 --- CHANGELOG-1.3.md | 9 --------- CHANGELOG-2.0.md | 27 +++++++++++++++++++++++++++ 2 files changed, 27 insertions(+), 9 deletions(-) delete mode 100644 CHANGELOG-1.3.md create mode 100644 CHANGELOG-2.0.md diff --git a/CHANGELOG-1.3.md b/CHANGELOG-1.3.md deleted file mode 100644 index ccc2c2023..000000000 --- a/CHANGELOG-1.3.md +++ /dev/null @@ -1,9 +0,0 @@ -# Changelog since v1.2.0 - -## Breaking Changes - -- Add a prefix "external-snapshotter-leader" and the driver name to the snapshotter leader election lock name. Rolling update will not work if leader election is enabled because the lock name is changed in v1.3.0. ([#129](https://github.com/kubernetes-csi/external-snapshotter/pull/129), [@zhucan](https://github.com/zhucan)) - -## Other Notable Changes - -- Snapshotter will no longer call ListSnapshots if the CSI Driver does not support this operation. ([#138](https://github.com/kubernetes-csi/external-snapshotter/pull/138), [@ggriffiths](https://github.com/ggriffiths)) diff --git a/CHANGELOG-2.0.md b/CHANGELOG-2.0.md new file mode 100644 index 000000000..4c8cf64d4 --- /dev/null +++ b/CHANGELOG-2.0.md @@ -0,0 +1,27 @@ +# Changelog since v1.2.0 + +## New Features + +- Add prometheus metrics to CSI external-snapshotter under the /metrics endpoint. This can be enabled via the "--metrics-address" and "--metrics-path" options. ([#227](https://github.com/kubernetes-csi/external-snapshotter/pull/227), [@saad-ali](https://github.com/saad-ali)) +- Split the external-snapshotter sidecar controller into two controllers, a snapshot-controller and an external-snapshotter sidecar. Only the external-snapshotter sidecar should be deployed with the CSI driver. ([#182](https://github.com/kubernetes-csi/external-snapshotter/pull/182), [@xing-yang](https://github.com/xing-yang)) +- Add a finalizer on VolumeSnapshot object to protect it from being deleted when it is bound to + a VolumeSnapshotContent. ([#182](https://github.com/kubernetes-csi/external-snapshotter/pull/182), [@xing-yang](https://github.com/xing-yang)) +- Adds deletion secret as annotation to volume snapshot content. ([#165](https://github.com/kubernetes-csi/external-snapshotter/pull/165), [@xing-yang](https://github.com/xing-yang)) + +### Breaking Changes + +- Changes VolumeSnapshot CRD version from v1alpha1 to v1beta1. v1alpha1 is no longer supported. ([#139](https://github.com/kubernetes-csi/external-snapshotter/pull/139), [@xing-yang](https://github.com/xing-yang)) +- Add a prefix "external-snapshotter-leader" and the driver name to the snapshotter leader election lock name. Rolling update will not work if leader election is enabled because the lock name is changed in v2.0.0. ([#129](https://github.com/kubernetes-csi/external-snapshotter/pull/129), [@zhucan](https://github.com/zhucan)) +- Removes createSnapshotContentRetryCount and createSnapshotContentInterval + from command line options. ([#211](https://github.com/kubernetes-csi/external-snapshotter/pull/211), [@xing-yang](https://github.com/xing-yang)) + +### Bug Fixes + +- Added extra verification of source PersistentVolumeClaim before creating snapshot. ([#172](https://github.com/kubernetes-csi/external-snapshotter/pull/172), [@xing-yang](https://github.com/xing-yang)) +- Fixes issue when SelfLink removal is turned on in Kubernetes. ([#160](https://github.com/kubernetes-csi/external-snapshotter/pull/160), [@msau42](https://github.com/msau42)) +- Snapshotter will no longer call ListSnapshots if the CSI Driver does not support this operation. ([#138](https://github.com/kubernetes-csi/external-snapshotter/pull/138), [@ggriffiths](https://github.com/ggriffiths)) + +### Other Notable Changes + +- Migrated to Go modules, so the source builds also outside of GOPATH. ([#179](https://github.com/kubernetes-csi/external-snapshotter/pull/179), [@pohly](https://github.com/pohly)) +- We will now exit the external-snapshotter when the connection to a CSI driver is lost, allowing for another leader to takeover. ([#171](https://github.com/kubernetes-csi/external-snapshotter/pull/171), [@ggriffiths](https://github.com/ggriffiths))