]> git.ipfire.org Git - thirdparty/e2fsprogs.git/commitdiff
Update release notes, etc., for the 1.47.3-rc3 release master next v1.47.3-rc3
authorTheodore Ts'o <tytso@mit.edu>
Wed, 2 Jul 2025 18:18:15 +0000 (14:18 -0400)
committerTheodore Ts'o <tytso@mit.edu>
Wed, 2 Jul 2025 19:28:00 +0000 (15:28 -0400)
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
debian/changelog
doc/RelNotes/v1.47.3.txt
doc/libext2fs.texinfo
e2fsprogs.lsm
version.h

index 27380b030372d34e71d28bff4d2cd97e0288ca34..3bf7abace19f121cfa596779280f906d9cb5d34c 100644 (file)
@@ -1,3 +1,18 @@
+e2fsprogs (1.47.3~rc3-1) experimental; urgency=medium
+
+  * fix missing dependency in libext2fs2t64 for libcom-err2
+    (Closes: #1108010)
+  * e2scrub no longer runs fstrim by default, since util-linux ships
+    with a fstrim.timer systemd file which will run fstrim on all
+    mounted file systems.
+  * Fix a bounding error in ext2fs_fallocate() which could cause it to
+    allocate far more blocks than was requested.  This caused a
+    failure in fuse2fs while formatting a loopback file system stored
+    in a large sparse file.
+  * update to debian policy 4.7.2
+
+ -- Theodore Y. Ts'o <tytso@mit.edu>  Wed, 02 Jul 2025 13:57:20 -0400
+
 e2fsprogs (1.47.3~rc2-1) experimental; urgency=medium
 
   * 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
   * Update Czech, Chinese, Dutch, French, Portuguese, Polish, Romainian,
     Serbian, Spanish, Swedish, and Ukrainian translations.
 
- -- Theodore Y. Ts'o <tytso@mit.edu>  Fri, 13 Jun 2025 14:24:46 -0400
+ -- Theodore Y. Ts'o <tytso@mit.edu>  Wed, 02 Jul 2025 13:55:59 -0400
 
 e2fsprogs (1.47.3~rc1-1) experimental; urgency=medium
 
index 7f1debabe067a90b25c8b2a2da03772eb20d5d55..d07067e752abb07622e8b8500ca16118e2c44701 100644 (file)
@@ -28,6 +28,12 @@ from the storage device information depending on whether the storage
 device is a rotational or non-rotational device.  By default don't set
 the RAID stripe size for non-rotational devices.
 
+E2scrub no longer runs fstrim by default, since util-linux ships with a
+fstrim.timer systemd file which will run fstrim on all mounted file
+systems.  This can be re-enabled in /etc/e2scrub.conf if for some reason
+it is desireable to run the fstrim out of e2scrub.
+
+
 Fixes
 -----
 
@@ -93,6 +99,11 @@ This fixes a problem where resize2fs is trying to relocate all of the
 blocks in a file leading to the extent tree doubling in size, and
 potentially leading to a corrupted extent tree.
 
+Fix a bounding error in ext2fs_fallocate() which could cause it to
+allocate far more blocks than was requested.  This caused a failure in
+fuse2fs while formatting a loopback file system stored in a large sparse
+file.
+
 Fix potential livelock bug in the unix_io manager.
 
 Fix invaidation support in the unix_io manager.
@@ -140,6 +151,17 @@ using O_DIRECT to read and write the block device.
 
 Fixed Windows portability problems intrduced in 1.47.2.
 
+Fix various FreeBSD compile warnings and test issues.
+
+Fix MacOS build issues when compiling with libarchive and FUSE support.
+
+To avoid warning messages on newer versions of GNU grep, use "grep -E"
+instead of "egrep" when possible.
+
+Fix test failure for m_rootdir_acl when the build tree is hosted on
+btrfs.  (This was caused by btrfs returning extended attributes relating
+to Posix ACL's in a different order than ext4 or xfs.)
+
 Fixed potention races in the Makefiles which could show up when using
 "make -j install".
 
index 5240926adf7be75a1ed47c3f40efa57920576577..87aacabb9ecf6ae97dcefb24b0ca0b4a2e59f534 100644 (file)
@@ -61,7 +61,7 @@ by the author.
 @title The EXT2FS Library
 @subtitle The EXT2FS Library
 @subtitle Version 1.47.3
-@subtitle June 2025
+@subtitle July 2025
 
 @author by Theodore Ts'o
 
index 86db57fa825ff78b33a61b85e896eb2c705960d3..e6cead9b32703bfb390d4c9b58920736a0846a2e 100644 (file)
@@ -1,7 +1,7 @@
 Begin3
 Title:          EXT2 Filesystem utilities
 Version:        1.47.3
-Entered-date:   2025-05-28
+Entered-date:   2025-07-02
 Description:    The filesystem utilities for the EXT2, EXT3, and EXT4
                filesystems, including e2fsck, mke2fs, dumpe2fs, and others.
 Keywords:       utilities, filesystem, Ext2fs, ext3, ext4
index 766d196c9f8a6d8adf67b7a46d8d9eaee2fb4035..f91c4e609c8e94624d302647d4291055c591ebfe 100644 (file)
--- a/version.h
+++ b/version.h
@@ -9,5 +9,5 @@
  * General Public License v2.
  */
 
-#define E2FSPROGS_VERSION "1.47.3-rc2"
-#define E2FSPROGS_DATE "12-Jun-2025"
+#define E2FSPROGS_VERSION "1.47.3-rc3"
+#define E2FSPROGS_DATE "2-Jul-2025"