Skip to content

Commit 2812430

Browse files
jet-tongJensen Tong
andauthored
Release 2.4.1 (#740)
### Changes *Description of changes:* New patch version release. By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice. Co-authored-by: Jensen Tong <jetong@amazon.com>
1 parent addc5e8 commit 2812430

6 files changed

Lines changed: 16 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Unreleased
22

3+
# v2.4.1
4+
5+
[Documentation](https://github.com/awslabs/mountpoint-s3-csi-driver/blob/v2.4.1/README.md)
6+
7+
* Support Mountpoint [version 1.22.1](https://github.com/awslabs/mountpoint-s3/releases/tag/mountpoint-s3-1.22.1) ([#733](https://github.com/awslabs/mountpoint-s3-csi-driver/pull/733))
8+
* Fix a race condition where concurrent operations after closing a truncated file could result in I/O errors on subsequent reads. The issue was introduced in v1.22.0. ([#1781](https://github.com/awslabs/mountpoint-s3/pull/1781))
9+
* Fix incorrect validation of default data cache limit which would cause Mountpoint to preserve less than 5% of available space ([#1779](https://github.com/awslabs/mountpoint-s3/pull/1779))
10+
* Update go to 1.26.0 and run go fix ([#731](https://github.com/awslabs/mountpoint-s3-csi-driver/pull/731))
11+
* Update csi-node-driver-registrar and livenessprobe sidecar versions for release 2.4 branch ([#739](https://github.com/awslabs/mountpoint-s3-csi-driver/pull/739))
12+
313
# v2.4.0
414

515
[Documentation](https://github.com/awslabs/mountpoint-s3-csi-driver/blob/v2.4.0/README.md)

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
SHELL = /bin/bash
1515

1616
# MP CSI Driver version
17-
VERSION=2.4.0
17+
VERSION=2.4.1
1818

1919
PKG=github.com/awslabs/mountpoint-s3-csi-driver
2020
GIT_COMMIT?=$(shell git rev-parse HEAD)

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,14 @@ Mountpoint for Amazon S3 does not implement all the features of a POSIX file sys
2424
## Container Images
2525
| Driver Version | [ECR Public](https://gallery.ecr.aws/mountpoint-s3-csi-driver/aws-mountpoint-s3-csi-driver) Image |
2626
|----------------|---------------------------------------------------------------------------------------------------|
27-
| v2.4.0 | public.ecr.aws/mountpoint-s3-csi-driver/aws-mountpoint-s3-csi-driver:v2.4.0 |
27+
| v2.4.1 | public.ecr.aws/mountpoint-s3-csi-driver/aws-mountpoint-s3-csi-driver:v2.4.1 |
2828

2929
<details>
3030
<summary>Previous Images</summary>
3131

3232
| Driver Version | [ECR Public](https://gallery.ecr.aws/mountpoint-s3-csi-driver/aws-mountpoint-s3-csi-driver) Image |
3333
|----------------|---------------------------------------------------------------------------------------------------|
34+
| v2.4.0 | public.ecr.aws/mountpoint-s3-csi-driver/aws-mountpoint-s3-csi-driver:v2.4.0 |
3435
| v2.3.0 | public.ecr.aws/mountpoint-s3-csi-driver/aws-mountpoint-s3-csi-driver:v2.3.0 |
3536
| v2.2.2 | public.ecr.aws/mountpoint-s3-csi-driver/aws-mountpoint-s3-csi-driver:v2.2.2 |
3637
| v2.2.1 | public.ecr.aws/mountpoint-s3-csi-driver/aws-mountpoint-s3-csi-driver:v2.2.1 |

charts/aws-mountpoint-s3-csi-driver/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v2
22
name: aws-mountpoint-s3-csi-driver
33
description: A Helm chart for installing the Mountpoint for Amazon S3 CSI Driver. This CSI driver allows your Kubernetes applications to access S3 objects through a file system interface.
4-
version: 2.4.0
4+
version: 2.4.1
55
kubeVersion: ">=1.29.0-0"
66
home: https://github.com/awslabs/mountpoint-s3-csi-driver
77
sources:

charts/aws-mountpoint-s3-csi-driver/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ image:
1212
repository: public.ecr.aws/mountpoint-s3-csi-driver/aws-mountpoint-s3-csi-driver
1313
pullPolicy: IfNotPresent
1414
# Overrides the image tag whose default is the chart appVersion.
15-
tag: "v2.4.0"
15+
tag: "v2.4.1"
1616

1717
node:
1818
kubeletPath: /var/lib/kubelet

deploy/kubernetes/overlays/stable/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ resources:
55
images:
66
- name: csi-driver
77
newName: public.ecr.aws/mountpoint-s3-csi-driver/aws-mountpoint-s3-csi-driver
8-
newTag: v2.4.0
8+
newTag: v2.4.1
99
replacements:
1010
# Replace value of `MOUNTPOINT_IMAGE` env variable of the CSI Controller with the image path of the CSI Node.
1111
- source:

0 commit comments

Comments
 (0)