Update Release Notes, Changelogs, version.h, etc. for 1.41.13 release

Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
bitmap-optimize v1.41.13
Theodore Ts'o 2010-12-13 08:57:14 -05:00
parent 71873b1730
commit d085f61f25
6 changed files with 265 additions and 203 deletions

View File

@ -1,10 +1,39 @@
E2fsprogs 1.41.13 (November 22, 2010)
E2fsprogs 1.41.13 (December 13, 2010)
=====================================
E2fsck now supports the extended option "-E journal_only", which
causes it to only do a journal replay. This is useful for scripts
that want to first replay the journal and then check to see if it
contains errors.
E2fsck will now support UUID= and LABEL= specifiers for the -j option
(which specifies where to find the external journal). (Addresses
Debian Bug #559315)
E2fsck now has support for the problems/<problem code>/force_no
configuration option in e2fsck.conf, which forces a problem to not be
fixed.
Dumpe2fs will now avoid printing large negative offsets for the bitmap
blocks and instead print a message which is a bit more helpful for
flex_bg file systems.
Mke2fs will now check the file system type (specified with the -t
option) to make sure it is defined in the mke2fs.conf file; if it is
not, it will print an error and abort. If the usage type (specified
with the -T option) is not defined in mke2fs.conf, mke2fs will print a
warning but will continue. (Addresses Debian Bug #594609)
Clarified error message from resize2fs clarifying that on-line
shrinking is not supported at all. (Addresses Debian Bug #599786)
Fix an e2fsck bug that could cause a PROGRAMMING BUG error to be
displayed. (Addresses Debian Bug #555456)
E2fsck will open the external journal in exclusive mode, to prevent
the journal from getting truncated while it is in use due to a user
accidentally trying to run e2fsck on a snapshotted file system volume.
(Addresses Debian Bug: #587531)
(Addresses Debian Bug #587531)
Fix a bug in e2fsck so it has the correct test for the EOFBLOCKS_FL
flag.
@ -80,7 +109,8 @@ alternate superblocks.
Fixed various Debian Packaging Issues
Updated/clarified man pages (Addresses Debian Bugs: #580236, #594004, #589345)
Updated/clarified man pages (Addresses Debian Bugs: #580236, #594004,
#589345, #591083; Addresses Launchpad Bug: #505719)
Update the Chinese, Chzech, Dutch, French, Germany, Indonesian,
Polish, Swedish, and Vietnamese translations.
@ -89,10 +119,16 @@ Polish, Swedish, and Vietnamese translations.
Programmer's Notes
------------------
Fix a dependency definition for the static and profiled blkid
libraries which could cause compile failures in some configurations.
(Addresses Debian Bug: #604629)
Add support for Direct I/O in the Unix I/O access layer.
Fixed a memory leak in the Unix I/O layer when changing block sizes.
Fixed minor memory leaks in mke2fs.
Added a new function to the ext2fs library, ext2fs_get_memalign().
The tst_super_size test program will check to make sure the superblock

15
debian/changelog vendored
View File

@ -1,6 +1,19 @@
e2fsprogs (1.41.13-1) unstable; urgency=low
* New upstream release
* E2fsck can now do journal-only replays via "e2fsck -E journal_only"
* E2fsck now understands UUID= and LABEL= specifiers for the -j option
(Closes: #559315)
* E2fsck.conf now supports a new config option, which forces the
problem not to be fixed: problems/<problem code/force_no
* Dumpe2fs now prints friendlier offsets for flex_bg file systems
* Mke2fs will now fail if the user uses an file system type not
defined in mke2fs.conf (Closes: #594609)
* Resize now prints a clarified error message explaining that on-line
shrinking is not supported at all. (Closes: #599786)
* Fixed a build error caused by bad static and profiled dependencies
for the blkid library (Closes: #604629)
* Fixed an e2fsck PROGRAMMING BUG error (Closes: #555456)
* Fixed outdated mention of fsck in the e2fsprogs package (Closes: #588726)
* Removed obsolete initrd script (Closes: #585041)
* Fixed bad dependency on libblkid1 due to shlibs.local (Closes: #583551)
@ -31,7 +44,7 @@ e2fsprogs (1.41.13-1) unstable; urgency=low
architectures with unsigned chars
* Clarified mke2fs and e2fsck error messages when given incorrect
options/values by the user
* Updated/clarified man pages (Closes: #580236, #594004, #589345)
* Updated/clarified man pages (Closes: #580236, #594004, #589345, #591083)
-- Theodore Y. Ts'o <tytso@mit.edu> Mon, 22 Nov 2010 16:00:50 -0400

View File

@ -61,7 +61,7 @@ by the author.
@title The EXT2FS Library
@subtitle The EXT2FS Library
@subtitle Version 1.41.13
@subtitle November 2010
@subtitle December 2010
@author by Theodore Ts'o

View File

@ -1,7 +1,7 @@
Begin3
Title: EXT2 Filesystem utilities
Version: 1.41.13
Entered-date: 22Nov2010
Entered-date: 13Dec2010
Description: The filesystem utilities for the EXT2 filesystem, including
e2fsck, mke2fs, dumpe2fs, fsck, and others.
Keywords: utilities, fsck, filesystem, Ext2fs

File diff suppressed because it is too large Load Diff

View File

@ -8,4 +8,4 @@
*/
#define E2FSPROGS_VERSION "1.41.13"
#define E2FSPROGS_DATE "22-Nov-2010"
#define E2FSPROGS_DATE "13-Dec-2010"