diff --git a/CHANGELOG-1.x.md b/CHANGELOG-1.x.md index 510b1a2fd..5139547d7 100644 --- a/CHANGELOG-1.x.md +++ b/CHANGELOG-1.x.md @@ -1,3 +1,8 @@ +# V1.7.3 +* Edit file paths in provisioning.go to fix failing e2e test. ([#1223](https://github.com/kubernetes-sigs/aws-efs-csi-driver/pull/1223) [@seanzatzdev-amazon](https://github.com/seanzatzdev-amazon)) +* CVE-2023-48795: bump golang.org/x/crypto to v0.17.0. ([#1222](https://github.com/kubernetes-sigs/aws-efs-csi-driver/pull/1222), [@dobsonj](https://github.com/dobsonj)) +* set results count for listing access points. ([#1217](https://github.com/kubernetes-sigs/aws-efs-csi-driver/pull/1217), [@RomanBednar](https://github.com/RomanBednar)) +* Reduce calls to EFS API. ([#1226](https://github.com/kubernetes-sigs/aws-efs-csi-driver/pull/1226), [@otorreno](https://github.com/otorreno)) # V1.7.2 * Fixed the GID allocator work with the cross account feature. ([#1199](https://github.com/kubernetes-sigs/aws-efs-csi-driver/pull/1199), [@RomanBednar](https://github.com/RomanBednar)) * Added Startup Taint Removal Feature to alleviate potential race conditions. ([#1197](https://github.com/kubernetes-sigs/aws-efs-csi-driver/pull/1197), [@mskanth972](https://github.com/mskanth972)) diff --git a/Makefile b/Makefile index 3b36dc74e..6b6079102 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ # limitations under the License. # -VERSION=v1.7.2 +VERSION=v1.7.3 PKG=github.com/kubernetes-sigs/aws-efs-csi-driver GIT_COMMIT?=$(shell git rev-parse HEAD) diff --git a/docs/README.md b/docs/README.md index 5d867ffb4..1308f3834 100644 --- a/docs/README.md +++ b/docs/README.md @@ -90,6 +90,7 @@ The following sections are Kubernetes specific. If you are a Kubernetes user, us | EFS CSI Driver Version | Image | |------------------------|----------------------------------| | master branch | amazon/aws-efs-csi-driver:master | +| v1.7.3 | amazon/aws-efs-csi-driver:v1.7.3 | | v1.7.2 | amazon/aws-efs-csi-driver:v1.7.2 | | v1.7.1 | amazon/aws-efs-csi-driver:v1.7.1 | | v1.7.0 | amazon/aws-efs-csi-driver:v1.7.0 | @@ -135,7 +136,7 @@ The following sections are Kubernetes specific. If you are a Kubernetes user, us ### ECR Image | Driver Version | [ECR](https://gallery.ecr.aws/efs-csi-driver/amazon/aws-efs-csi-driver) Image | |----------------|-------------------------------------------------------------------------------| -| v1.7.2 | public.ecr.aws/efs-csi-driver/amazon/aws-efs-csi-driver:v1.7.2 | +| v1.7.3 | public.ecr.aws/efs-csi-driver/amazon/aws-efs-csi-driver:v1.7.3 | #### Note : You can find previous efs-csi-driver versions' images from [here](https://gallery.ecr.aws/efs-csi-driver/amazon/aws-efs-csi-driver) @@ -356,7 +357,7 @@ If you want to update to a specific version, first customize the driver yaml fil kubectl kustomize "github.com/kubernetes-sigs/aws-efs-csi-driver/deploy/kubernetes/overlays/stable/?ref=release-1.7" > driver.yaml ``` -Then, update all lines referencing `image: amazon/aws-efs-csi-driver` to the desired version (e.g., to `image: amazon/aws-efs-csi-driver:v1.7.2`) in the yaml file, and deploy driver yaml again: +Then, update all lines referencing `image: amazon/aws-efs-csi-driver` to the desired version (e.g., to `image: amazon/aws-efs-csi-driver:v1.7.3`) in the yaml file, and deploy driver yaml again: ```sh kubectl apply -f driver.yaml ```