Skip to content

Commit e4b0a53

Browse files
committed
Update release notes, etc., for the 1.47.3-rc3 release
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
1 parent 00f71b5 commit e4b0a53

File tree

5 files changed

+42
-5
lines changed

5 files changed

+42
-5
lines changed

debian/changelog

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
e2fsprogs (1.47.3~rc3-1) experimental; urgency=medium
2+
3+
* fix missing dependency in libext2fs2t64 for libcom-err2
4+
(Closes: #1108010)
5+
* e2scrub no longer runs fstrim by default, since util-linux ships
6+
with a fstrim.timer systemd file which will run fstrim on all
7+
mounted file systems.
8+
* Fix a bounding error in ext2fs_fallocate() which could cause it to
9+
allocate far more blocks than was requested. This caused a
10+
failure in fuse2fs while formatting a loopback file system stored
11+
in a large sparse file.
12+
* update to debian policy 4.7.2
13+
14+
-- Theodore Y. Ts'o <tytso@mit.edu> Wed, 02 Jul 2025 13:57:20 -0400
15+
116
e2fsprogs (1.47.3~rc2-1) experimental; urgency=medium
217

318
* Add a lockfile command-line option to fuse2fs which is useful for
@@ -14,7 +29,7 @@ e2fsprogs (1.47.3~rc2-1) experimental; urgency=medium
1429
* Update Czech, Chinese, Dutch, French, Portuguese, Polish, Romainian,
1530
Serbian, Spanish, Swedish, and Ukrainian translations.
1631

17-
-- Theodore Y. Ts'o <tytso@mit.edu> Fri, 13 Jun 2025 14:24:46 -0400
32+
-- Theodore Y. Ts'o <tytso@mit.edu> Wed, 02 Jul 2025 13:55:59 -0400
1833

1934
e2fsprogs (1.47.3~rc1-1) experimental; urgency=medium
2035

doc/RelNotes/v1.47.3.txt

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,12 @@ from the storage device information depending on whether the storage
2828
device is a rotational or non-rotational device. By default don't set
2929
the RAID stripe size for non-rotational devices.
3030

31+
E2scrub no longer runs fstrim by default, since util-linux ships with a
32+
fstrim.timer systemd file which will run fstrim on all mounted file
33+
systems. This can be re-enabled in /etc/e2scrub.conf if for some reason
34+
it is desireable to run the fstrim out of e2scrub.
35+
36+
3137
Fixes
3238
-----
3339

@@ -93,6 +99,11 @@ This fixes a problem where resize2fs is trying to relocate all of the
9399
blocks in a file leading to the extent tree doubling in size, and
94100
potentially leading to a corrupted extent tree.
95101

102+
Fix a bounding error in ext2fs_fallocate() which could cause it to
103+
allocate far more blocks than was requested. This caused a failure in
104+
fuse2fs while formatting a loopback file system stored in a large sparse
105+
file.
106+
96107
Fix potential livelock bug in the unix_io manager.
97108

98109
Fix invaidation support in the unix_io manager.
@@ -140,6 +151,17 @@ using O_DIRECT to read and write the block device.
140151

141152
Fixed Windows portability problems intrduced in 1.47.2.
142153

154+
Fix various FreeBSD compile warnings and test issues.
155+
156+
Fix MacOS build issues when compiling with libarchive and FUSE support.
157+
158+
To avoid warning messages on newer versions of GNU grep, use "grep -E"
159+
instead of "egrep" when possible.
160+
161+
Fix test failure for m_rootdir_acl when the build tree is hosted on
162+
btrfs. (This was caused by btrfs returning extended attributes relating
163+
to Posix ACL's in a different order than ext4 or xfs.)
164+
143165
Fixed potention races in the Makefiles which could show up when using
144166
"make -j install".
145167

doc/libext2fs.texinfo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ by the author.
6161
@title The EXT2FS Library
6262
@subtitle The EXT2FS Library
6363
@subtitle Version 1.47.3
64-
@subtitle June 2025
64+
@subtitle July 2025
6565

6666
@author by Theodore Ts'o
6767

e2fsprogs.lsm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Begin3
22
Title: EXT2 Filesystem utilities
33
Version: 1.47.3
4-
Entered-date: 2025-05-28
4+
Entered-date: 2025-07-02
55
Description: The filesystem utilities for the EXT2, EXT3, and EXT4
66
filesystems, including e2fsck, mke2fs, dumpe2fs, and others.
77
Keywords: utilities, filesystem, Ext2fs, ext3, ext4

version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
* General Public License v2.
1010
*/
1111

12-
#define E2FSPROGS_VERSION "1.47.3-rc2"
13-
#define E2FSPROGS_DATE "12-Jun-2025"
12+
#define E2FSPROGS_VERSION "1.47.3-rc3"
13+
#define E2FSPROGS_DATE "2-Jul-2025"

0 commit comments

Comments
 (0)