Skip to content

Commit c09d35a

Browse files
2.5.1 release version update (#2024)
Co-authored-by: Srinivas Yeleti <syeleti@microsoft.com>
1 parent 389136c commit c09d35a

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

CHANGELOG.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
## 2.5.1 (Unreleased)
22
**Bug Fixes**
3-
- Fail file open operation if the file being downloaded by file-cache can not fit in available disk space (either configured by user or computed implicitly by blobfuse). User application will receive ENOSPC (no space left on device) in response to file open call.
4-
- Mount will fail if FNS account is mounted as HNS account.
5-
- Redirect Stack trace to log file (WORK_DIR/mount_path.pid.trace) instead of console in case of panic for better debuggability.
6-
- Truncating the file in file_cache resulting in OOM panic by go-runtime in some scenarios.
7-
- Open file error(No BlockList error) in block_cache when file is truncated before to less than 256MiB.
8-
- Prevent reusing the same block ID in truncate operation which could lead to issues.
3+
- Fail file open operation if the file being downloaded by file-cache can not fit in available disk space (either configured by user or computed implicitly by blobfuse). User application will receive ENOSPC (no space left on device) in response to file open call. ([PR #1870](https://github.com/Azure/azure-storage-fuse/pull/1870))
4+
- Mount will fail if FNS account is mounted as HNS account. ([PR #1925](https://github.com/Azure/azure-storage-fuse/pull/1925))
5+
- Redirect Stack trace to log file (WORK_DIR/mount_path.pid.trace) instead of console in case of panic for better debuggability. ([PR #1939](https://github.com/Azure/azure-storage-fuse/pull/1939))
6+
- Truncating the file in file_cache resulting in OOM panic by go-runtime in some scenarios. ([PR #2003](https://github.com/Azure/azure-storage-fuse/pull/2003))
7+
- Open file error(No BlockList error) in block_cache when file is truncated before to less than 256MiB. ([PR #2003](https://github.com/Azure/azure-storage-fuse/pull/2003)) ([GH Issue #1951](https://github.com/Azure/azure-storage-fuse/issues/1951))
8+
- Prevent reusing the same block ID in truncate operation which could lead to issues. ([PR #2003](https://github.com/Azure/azure-storage-fuse/pull/2003))
99

1010

1111
## 2.5.0 (2025-07-17)

blobfuse2-release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ stages:
9191
sudo apt-get update --fix-missing
9292
sudo apt-get install ruby-dev build-essential pkg-config cmake gcc g++ rpm $(fuselib) -y
9393
sudo gem install dotenv -v 2.8.1
94-
sudo gem install fpm -V
94+
sudo gem install fpm -v 1.16
9595
displayName: "Installing Dependencies"
9696
9797
# get glibc version with which build is done
@@ -203,7 +203,7 @@ stages:
203203
- script: |
204204
sudo apt-get update --fix-missing
205205
sudo apt-get install ruby-dev build-essential pkg-config cmake gcc g++ rpm $(fuselib) -y
206-
sudo gem install fpm -V
206+
sudo gem install fpm -v 1.16
207207
displayName: "Installing Dependencies"
208208
209209
# get glibc version with which build is done

blobfuse2-testartifacts.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ stages:
9191
sudo apt-get update --fix-missing
9292
sudo apt-get install ruby-dev build-essential pkg-config cmake gcc g++ rpm $(fuselib) -y
9393
sudo gem install dotenv -v 2.8.1
94-
sudo gem install fpm -V
94+
sudo gem install fpm -v 1.16
9595
displayName: "Installing Dependencies"
9696
9797
# get glibc version with which build is done
@@ -191,7 +191,7 @@ stages:
191191
- script: |
192192
sudo apt-get update --fix-missing
193193
sudo apt-get install ruby-dev build-essential pkg-config cmake gcc g++ rpm $(fuselib) -y
194-
sudo gem install fpm -V
194+
sudo gem install fpm -v 1.16
195195
displayName: "Installing Dependencies"
196196
197197
# get glibc version with which build is done

common/types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ import (
4747

4848
// Standard config default values
4949
const (
50-
blobfuse2Version_ = "2.6.0~preview.1"
50+
blobfuse2Version_ = "2.5.1"
5151

5252
DefaultMaxLogFileSize = 512
5353
DefaultLogFileCount = 10

0 commit comments

Comments
 (0)