OSDN Git Service

build: tweak how bootstrap manages ChangeLog
[android-x86/external-parted.git] / NEWS
1 GNU parted NEWS                                    -*- outline -*-
2
3 * Noteworthy changes in release ?.? (????-??-??) [?]
4
5 ** New features
6
7   parted has improved support for partitionable loopback devices
8
9 ** Bug fixes
10
11   parted now exits nonzero for certain failures already diagnosed as "Error".
12   For example, before this change, parted would exit successfully in spite
13   of "Error: ...unrecognised disk label" and "Error:... both GPT primary
14   and backup partition tables are corrupted".
15
16   libparted: gpt_disk_duplicate now copies the flags over to the new
17   disk object. Previously the flags would be undefined.
18
19   libparted can now read partition tables with a number of partition
20   array entries that is different from the default of 128.  Before,
21   it would fail to recognize them and could even read beyond the end
22   of a heap-allocated buffer.
23
24   libparted: no longer aborts (failed assertion) due to a nilfs2_probe bug
25   [bug introduced in parted-2.4 with the addition of nilfs2 support]
26
27   libparted: no longer aborts when reading a truncated GPT-formatted device
28   [bug present at least as far back as RHEL4's parted-1.6.19]
29
30   libparted: works with a two-component linux kernel version number like 3.0
31   [bug present since the beginning]
32
33   libparted: strengthen the pc98 test so that it is much less likely to
34   cause an MSDOS partition table to be mistakenly identified as pc98.
35   [bug present since the beginning]
36
37   libparted no longer gets a failed assertion when probing a partition
38   with an HFS or HFS+ signature, but with invalid ->total_blocks and/or
39   ->block_size values.
40
41   parted now uses ext_range device sysfs attribute to determine maximum number
42   of partitions the device can hold.  With this change, parted now correctly
43   informs kernel about new partitions on partitionable MD RAID devices.
44
45 ** Changes in behavior
46
47   parted: mkpart command has changed semantics with regard to specifying end
48   of the partition. If the end is specified using MiB, GiB, etc. unit, parted
49   subtracts one sector from the specified value. With this change, it is now
50   possible to create partitions like 1MiB-2MiB, 2MiB-3MiB and so on.
51
52 ** Build-related
53
54   "make dist" no longer builds .tar.gz files.
55   xz is portable enough and in wide-enough use that distributing
56   only .tar.xz files is enough.
57
58
59 * Noteworthy changes in release 3.0 (2011-05-30) [stable]
60
61 ** Bug fixes
62
63   Fix numerous small leaks in both the library and the UI.
64
65 ** Changes in behavior
66
67   Remove all FS-related (file system-related) sub-commands; these commands
68   are no longer recognized because they were all dependent on parted "knowing"
69   too much about file system: mkpartfs, mkfs, cp, move, check, resize.
70   This change removes not just the user interface bits, but also the
71   library functions and nearly all of the underlying FS-munging code.
72   The code embedded in Parted by which it knew about those file systems
73   was so old, unmaintainable and buggy that while seemingly drastic,
74   this change is like removing a gangrenous toe.
75
76   Here is the list of removed functions:
77
78     ped_file_system_clobber
79     ped_file_system_open
80     ped_file_system_create
81     ped_file_system_close
82     ped_file_system_check
83     ped_file_system_copy
84     ped_file_system_resize
85     ped_file_system_get_create_constraint
86     ped_file_system_get_resize_constraint
87     ped_file_system_get_copy_constraint
88
89   This change also removes the corresponding function members
90   from "struct _PedFileSystemOps":
91
92     clobber open create close check copy resize get_create_constraint
93     get_resize_constraint get_copy_constraint
94
95
96 * Noteworthy changes in release 2.4 (2011-05-18) [stable]
97
98 ** Bug fixes
99
100   parted no longer allows the modification of certain in-use partitions.
101   In particular, before this fix, parted would permit removal or modification
102   of any in-use partition on a dmraid and any in-use partition beyond the 15th
103   on a regular scsi disk.
104
105   Improve support of DASD devices on the s390 architecture.
106   Parted now supports all DASD types (CKD and FBA), DASD formats (CDL,
107   LDL, CMS non-reserved, and CMS reserved), and DASD drivers (ECKD, FBA,
108   and DIAG) in all combinations supported by the Linux kernel.  As before,
109   only CDL format on CKD DASD using the ECKD driver is supported for
110   read-write operations (create, delete, move, re-size, etc.).  However,
111   the implicit partition present on LDL- and CMS-formatted disks is now
112   correctly recognized for read-only operations.  In detail:
113
114   - parted now correctly handles LDL-format disks with a block
115     size other than 4096 (bug fix)
116
117   - parted now recognizes the CMS disk format, both reserved
118     and non-reserved (enhancement)
119
120   - parted now supports FBA DASD devices (enhancement)
121
122   - parted now supports the DIAG driver when running in a
123     virtual machine under z/VM (enhancement)
124
125   libparted: raise the limit on the maximum start sector and the
126   maximum number of sectors in a "loop" partition table from 2^32 to 2^64.
127   [bug introduced in parted-2.1]
128
129   libparted once again recognizes a whole-disk FAT partition
130   [bug introduced in parted-1.9.0]
131
132   libparted now recognizes scsi disks with a high major (128-135) as scsi
133   disks
134
135   an msdos partition table on a very small device (smaller than one cylinder)
136   is now recognized.  [bug introduced in parted-2.2]
137
138   libparted: zero-length devices (other than files) are ignored rather than
139   throwing an exception.
140
141   libparted: gpt label creation can no longer divide by zero with a
142   defective device or when a concurrent writer modifies the PE-size
143   bytes in the small interval between the write and subsequent read
144   of the primary GPT header.
145
146 ** Changes in behavior
147
148   "parted $dev print" now prints information about the device (model, size,
149   transport, sector size) even when it fails to recognize the disk label.
150
151   specifying partition start or end values using MiB, GiB, etc. suffixes
152   now makes parted do what I want, i.e., use that precise value, and not
153   some other that is up to 500KiB or 500MiB away from what I specified.
154   Before, to get that behavior, you would have had to use carefully chosen
155   values with units of bytes ("B") or sectors ("s") to obtain the same
156   result, and with sectors, your usage would not be portable between devices
157   with varying sector sizes.  This change does not affect how parted handles
158   suffixes like KB, MB, GB, etc.
159
160
161 * Noteworthy changes in release 2.3 (2010-05-28) [stable]
162
163 ** New features
164
165   parted now recognizes ATA over Ethernet (AoE) devices
166
167   parted now recognizes Linux Software RAID Arrays
168
169   libparted has a new partition flag to check for diagnostic (aka recovery
170   or reserved) partitions: PED_PARTITION_DIAG
171
172 ** Bug fixes
173
174   When libparted deferenced a /dev/mapper/foo symlink, it would keep the
175   resulting /dev/dm-N name and sometimes use it later, even though it
176   had since become stale and invalid.  It no longer stores the result
177   of dereferencing a /dev/mapper symlink.
178
179   libparted's msdos_partition_is_flag_available function now always reports
180   that the "hidden" flag is not available for an extended partition.
181   Similarly, msdos_partition_get_flag(p,PED_PARTITION_HIDDEN) always returns 0
182   for an extended partition.
183
184   libparted uses a more accurate heuristic to distinguish between
185   ext4 and ext3 partitions.
186
187   libparted now properly checks the return value of dm_task_run when
188   operating on devicemapper devices.
189
190   allow using ped_device_cache_remove(dev) followed by a (later)
191   ped_device_destroy() without corrupting the device cache.
192
193   when creating an ext2 file system[*], Parted no longer creates an
194   invalid one when its size is 2TiB or larger.
195   [*] Remember, now all FS-creation operations are deprecated in Parted.
196   This is not an indicator that we'll be supporting this code.
197   On the contrary, it is slated to be removed.
198
199 ** Changes in behavior
200
201   libparted no longer issues an exception/warning about >512-byte
202   sector support being "HIGHLY EXPERIMENTAL".  It seems to have matured
203   enough to be usable at least with GPT and MSDOS partition tables.
204
205
206 * Noteworthy changes in release 2.2 (2010-02-26) [stable]
207
208 ** Changes in behavior
209
210   The default alignment (--align option) for newly created partitions has
211   been changed to optimal.
212
213 ** New features
214
215   The ped_device_get_*_alignment() functions now return a sane default
216   value instead of NULL when the so called topology information is incomplete.
217   The default minimum alignment aligns to physical sector size, the default
218   optimal alignment is 1MiB, which is what vista and windows 7 do.
219
220 ** Bug fixes
221
222   Parted no longer uses a physical sector size of 0 or of any other
223   value smaller than the logical sector size.
224
225   dos: creating an HFS or HFS+ partition in an msdos partition table
226   used to set the partition type to 0x83.  That is wrong.  The required
227   number is 0xaf, and that is what is used now.
228
229   gpt: read-only operation could clobber MBR part of hybrid GPT+MBR table
230   [bug introduced in parted-2.1]
231
232   gpt: a read-only operation like "parted $dev print" would overwrite $dev's
233   protective MBR when exactly one of the primary and backup GPT tables was
234   found to be corrupt.
235   [bug introduced prior to parted-1.8.0]
236
237   sun: the version, sanity and nparts VTOC fields were ignored by libparted.
238   Those fields are properly initialized now. The nparts (number of partitions)
239   field is initialized to 8 (max. number of sun partitions) rather that to a
240   real number of partitions. This solution is compatible with Linux kernel
241   and Linux fdisk.
242
243   "make install" no longer installs tests programs named disk and label
244
245   libparted: try harder to inform kernel of partition changes.
246   Previously when editing partitions, occasionally the kernel would
247   fail to be informed of partition changes.  When this happened future
248   problems would occur because the kernel had incorrect information.
249   For example, if this problem arose when resizing or creating a
250   new partition, then an incorrect partition size might be displayed
251   or a user might encounter a failure to format or delete a newly
252   created partition, respectively.
253
254   libparted: committing a disk that was returned by ped_disk_duplicate
255   would always result in ped_disk_clobber being called (and thus the first
256   and last 9KiB of the disk being zeroed), even if the duplicated disk,
257   was not returned by ped_disk_fresh().
258
259
260 * Noteworthy changes in release 2.1 (2009-12-20) [stable]
261
262 ** New features
263
264   new --align=<align> commandline option which can have the following values:
265   none:     Use the minimum alignment allowed by the disk type
266   cylinder: Align partitions to cylinders (the default)
267   minimal:  Use minimum alignment as given by the disk topology information
268   optimal:  Use optimum alignment as given by the disk topology information
269   The minimal and optimal  values will use layout information provided by the
270   disk to align the logical partition table addresses to actual physical
271   blocks on the disks. The mininal value uses the minimum aligment needed to
272   align the partition properly to physical blocks, which avoids performance
273   degradation. Where as the optimal value uses a multiple of the physical
274   block size in a way that guarantees optimal performance.
275   The min and opt values will only work when compiled with
276   libblkid >= 2.17 and running on a kernel >= 2.6.31, otherwise they will
277   behave as the none --align value.
278
279   libparted: new functions to set per disk (instead of per partition) flags:
280   ped_disk_set_flag()
281   ped_disk_get_flag()
282   ped_disk_is_flag_available()
283   ped_disk_flag_get_name()
284   ped_disk_flag_get_by_name()
285   ped_disk_flag_next()
286
287   libparted: new per disk flag: PED_DISK_CYLINDER_ALIGNMENT. This flag
288   (which defaults to true) controls if disk types for which cylinder alignment
289   is optional do cylinder alignment when a new partition gets added.
290
291   libparted: new functions to return per-partition-table-type limits:
292     - ped_disk_max_partition_start_sector: Return the largest representable
293     start sector number for a given "disk".
294     - ped_disk_max_partition_length: Return the maximum partition length
295     for a given "disk".
296
297   new command "align-check TYPE N" to determine whether the starting sector
298   of partition N is TYPE(minimal|optimal)-aligned for the disk.  E.g.,
299       parted -s /dev/sda align-check min 1 && echo partition 1 is min-aligned
300       parted -s /dev/sda align-check opt 2 && echo partition 2 is opt-aligned
301   The same libblkid and kernel version requirements apply as for --align
302
303   Add functions to libparted to get minimal and optimal alignment
304   information from devices:
305   ped_device_get_minimal_aligned_constraint()
306   ped_device_get_optimal_aligned_constraint()
307   ped_device_get_minimum_alignment()
308   ped_device_get_optimum_alignment()
309   The same libblkid and kernel version requirements apply as for --align
310
311   Add ped_disk_get_partition_alignment() function to libparted to get
312   information about alignment enforced by the disk type.
313
314 ** Bug fixes
315
316   parted can once again create partition tables on loop devices.
317   Before, "parted -s /dev/loop0 mklabel gpt" would fail.
318   [bug introduced in parted-1.9.0]
319
320   improved >512-byte sector support: for example, printing a table on a
321   4k-sector disk would show "Sector size (logical/physical): 4096B/512B",
322   when the sizes should have been "4096B/4096B".
323
324   gpt tables are more rigorously checked; before, partition entry array CRCs
325   were not checked, and we would mistakenly use the AlternateLBA member of a
326   known-corrupt primary table.
327
328   improved dasd disk support, in previous versions calling
329   ped_disk_new_fresh() or ped_disk_duplicate() on a dasd type PedDisk
330   would fail.  This is fixed now.
331
332   handle device nodes created by lvm build with udev synchronisation enabled
333   properly.
334
335   when printing tables, parted no longer truncates flag names
336
337
338 * Noteworthy changes in release 2.0 (2009-10-06) [beta]
339
340 ** Improvements
341
342   Parted now supports disks with sector size larger than 512 bytes.
343   Before this release, Parted could operate only on disks with a sector
344   size of 512 bytes.  However, disk manufacturers are already making disks
345   with an exposed hardware sector size of 4096 bytes.  Prior versions of
346   Parted cannot even read a partition table on such a device, not to
347   mention create or manipulate existing partition tables.
348   Due to internal design and time constraints, the following
349   less-common partition table types are currently disabled:
350     amiga, bsd, aix, pc98
351   "bsd" and "amiga" are mostly done, but had a few minor problems,
352   so may remain disabled until someone requests that they be revived.
353
354 ** Bug fixes
355
356   big-endian systems can once again read GPT partition tables
357   [bug introduced in parted-1.9.0]
358
359   ped_partition_is_busy no longer calls libparted's exception handler,
360   since doing so caused trouble with anaconda/pyparted when operating on
361   dmraid devices.
362
363   Partitions in a GPT table are no longer assigned the "microsoft
364   reserved partition" type.  Before this change, each partition would
365   be listed with a type of "msftres" by default.
366
367
368 * Noteworthy changes in release 1.9.0 (2009-07-23) [stable]
369
370 ** Bug fixes
371
372   parted now preserves the protective MBR (PMBR) in GPT type labels.
373   http://lists.alioth.debian.org/pipermail/parted-devel/2008-December/\
374     002473.html
375   http://lists.gnu.org/archive/html/bug-parted/2008-12/msg00015.html
376
377   gpt_read now uses SizeOfPartitionEntry instead of the size of
378   GuidPartitionEntry_t.  This ensures that *all* of the partition
379   entries are correctly read.
380   http://lists.alioth.debian.org/pipermail/parted-devel/2008-December/\
381     002465.html
382   http://lists.alioth.debian.org/pipermail/parted-devel/attachments/\
383     20081202/b7c0528d/attachment.txt
384
385   mklabel (interactive mode) now correctly asks for confirmation, when
386   replacing an existent label, without outputting an error message.
387   http://lists.alioth.debian.org/pipermail/parted-devel/2009-January/\
388     002739.html
389
390   resize now handles FAT16 file systems with a 64k cluster.  This
391   configuration is not common, but it is possible.
392   http://parted.alioth.debian.org/cgi-bin/trac.cgi/ticket/207
393
394   parted now ignores devices of the type /dev/md* when probing.  These
395   types of devices should be handled by the device-mapper capabilities
396   of parted.
397   http://lists.alioth.debian.org/pipermail/parted-devel/2009-April/\
398     002781.html
399
400   The parted documentation now describes the differences in the options
401   passed to mkpart for the label types.
402   http://lists.alioth.debian.org/pipermail/parted-devel/2009-April/\
403     002782.html
404
405 ** Changes in behavior
406
407   include/parted/beos.h, include/parted/gnu.h and include/parted/linux.h
408   have been removed.  The symbols contained in these files (GNUSpecific,
409   ped_device_new_from_store, BEOSSpecific, LinuxSpecific,  LINUX_SPECIFIC)
410   were moved to the individual files that need them.
411
412   In libparted, the linux-swap "filesystem" types are now called
413   "linux-swap(v0)" and "linux-swap(v1)" rather than "linux-swap(old)"
414   and "linux-swap(new)" as in parted 1.8, or "linux-swap" as in older
415   versions; "old" and "new" generally make poor names, and v1 is the
416   only format supported by current Linux kernels. Aliases for all
417   previous names are available.
418
419 * Noteworthy changes in release 1.8.8.1 (2007-12-17) [stable]
420
421 ** FIXME: fill in details
422
423 * Noteworthy changes in release 1.8.8 (2007-08-09) [stable]
424
425 ** GNU parted is now licensed under the GNU General Public License version 3
426    or higher.  See the COPYING file for more details.
427
428 ** libparted:
429   - Add compute_block_counts() to improve ext2fs support.
430   - Properly detect 'ext2 fs too small' cases.
431   - Move formatting commands out of translatable strings.
432   - Read an msdos partition table from a device with 2K sectors.
433   - Remove always-false "Unable to open" diagnostic in ped_disk_new(),
434     leave the "unrecognized disk label" diagnostic.
435   - Don't leak partition table buffer in amiga_read().
436   - Don't read/write initialized memory with DEBUG turned on off for
437     'mklabel bsd' and 'mklabel amiga' command calls.
438   - Turn off DEBUG in libparted.c to avoid initializing all allocated
439     memory to '1' bits.
440   - Correct handling of HeaderSize field in GPT labels.
441   - Fix block number used when checking for ext2 fs state.
442   - Add detection support for Xen virtual block devices (/dev/xvd*).
443   - When reading DASD labels, check the filesystem type as well as
444     partition flags to determine what's on the partition.
445   - Add _dm_probe_all() from Debian to probe for all device-mapper
446     devices.
447
448 ** parted:
449   - Fixed exception handling in mkpart and mkpartfs commands.
450   - Add the --dry-run option to the partprobe command.
451   - Update docs: cannot specify 'primary' for a partition on a loop
452     device.
453   - Remove unused functions (get_spaces).
454   - Fix off-by-one error in str_list_print_wrap().
455   - Use xmalloc() and xrealloc() to check return values.
456   - Fix invalid command line argument handling.
457   - Close memory leaks in parted.c and table.c.
458   - Fix warnings when compiling with translation support enabled.
459   - Use a consistent prompt when asking for a file system type.
460   - Update docs: don't reference old versions of gzip.
461
462 ** misc:
463   - Improve the testing framework in the tests/ subdirectory.  Build out
464     more of the testing scripts so we can start using that to ensure we
465     don't introduce regressions in releases.
466   - Support testing with tmpfs filesystems on Linux.
467   - Work around inadequate libreadline in the configure script.
468   - Don't include config.h from internal headers.
469
470 * Noteworthy changes in release 1.8.7 (2007-05-09) [stable]
471
472 ** libparted:
473   - Prevent compilation of DASD code on GNU Hurd systems.
474   - Integrate new unit testing framework for parted and libparted.
475   - Fix primary partition cylinder alignment error for DOS disk labels.
476   - Use PED_PARTITION_NORMAL in place of PED_PARTITION_PRIMARY.
477   - Avoid segfault due to a double free on reiserfs support.
478
479 ** parted:
480   - Fix script mode (-s) for mkfs command in parted.
481   - Suppress "you are not superuser..." warning in script mode.
482   - Fix off-by-one bug in parted when displaying information about the
483     disk.
484   - Do not translate partition names in the 'parted print' command.
485     This causes problems for non-Latin-based character sets.
486   - Send errors to stderr rather than stdout.
487   - Handle command line options independent of the order.
488   - Abort on any invalid option and handle -v and -h first.
489   - Only display the update /etc/fstab message when there has been a
490     change to the disk (a shorter and more direct message too).
491
492 * Noteworthy changes in release 1.8.6 (2007-03-20) [stable]
493
494 ** Revert the implementation of the linux-swap(new) and linux-swap(old) types.
495    The type is 'linux-swap' for v1, v2, and s1suspend swap partitions on Linux.
496
497 * Noteworthy changes in release 1.8.5 (2007-03-20) [stable]
498
499 ** Another minor update.  Both versions 1.8.3 and 1.8.4 lacked po translation
500    files.  These are included with version 1.8.5.
501
502 * Noteworthy changes in release 1.8.4 (2007-03-19) [stable]
503
504 ** Minor bug fix release for 1.8.3 to fix build issues on various
505    platforms:
506   - Use 'uname -m' to determine if we build on System Z or not.
507   - Include <parted/vtoc.h> in <parted/fdasd.h> for format1_label_t
508     definition.
509   - Remove unused variables in libparted/arch/linux.c (-Werror).
510   - Check return values on fgets() and asprint() in libparted/arch/linux.c
511     (-Werror).
512   - Check for tgetent() in libtinfo in the configure script.
513   - Move some macro definitions in <parted/disk.h> to fix a compile
514     problem with gcc-4.1.2 as indicated here:
515     http://lists.gnu.org/archive/html/bug-parted/2007-03/msg00008.html
516
517 * Noteworthy changes in release 1.8.3 (2007-03-16) [stable]
518
519 ** libparted:
520   - Header file clean ups.
521   - Sync the linux-swap header according to the Linux kernel sources.
522   - Enable support for swsusp partitions and the ability to differentiate
523     between old and new versions of linux-swap partitions.
524   - Renaming PARTITION_EXT to PARTITION_DOS_EXT in the DOS disklabel
525     code (consitency with Linux kernel source).
526   - Added libparted.pc pkg-config file.
527   - Remove unused functions, ifdefs, and other code.
528   - Deprecate ped_[register|unregister]_disk_type in favor of
529     ped_disk_type_[register|unregister].
530   - Small test program fixes (in label.c and common.c).
531   - Make functions const-correct.
532   - Handle systems where libreadline is not available.
533   - Preserve starting sector for primary NTFS 3.1 partitions on DOS
534     disklabel.
535   - Handle 2048-byte logical sectors in linux_read().
536   - Use PED_SECTOR_SIZE_DEFAULT macro in place of 512.
537   - Don't assume logical sector size is <= 512B on AIX.
538   - Detect HFS write failure.
539   - Use mkstemp() in place of mktemp().
540   - Added HFS+ resize support.
541   - Don't build DASD support on non-zSeries hardware.
542
543 ** parted/partprobe:
544   - Use fputs() and putchar() in place for printf(), when possible.
545   - Detect/report stdout write errors.
546   - Accept the --version and --help options.
547   - Fix memory leaks in parted(8).
548
549 ** general:
550   - Synchronize the manual page and --help documentation.
551   - GNU autoconf and automake updates.
552   - 'gcc -Wall -Wshadow' warning cleanups.
553   - Don't define _GNU_SOURCE manually.
554   - Documentation updates and cleanups (AUTHORS, copyright notices,
555     etc).
556   - Use gnulib (http://www.gnu.org/software/gnulib/).
557
558 * Noteworthy changes in release 1.8.2 (2007-01-12) [stable]
559
560 ** libparted:
561   - Add the ped_device_cache_remove() function to remove a device from
562     the cache.  This is necessary for some things that use libparted,
563     including pyparted.
564   - Fix a segfault in ped_assert() where the wrong pointer is freed in
565     the backtrace handler.
566   - Only call _disk_warn_loss(disk) in do_mklabel() if disk is not NULL.
567     Fixes a segfault when initializing new volumes.
568   - Dynamically allocate space for exception messages.
569   - Output a backtrace when catching SEGV_MAPPER or a general SIGSEGV.
570
571 ** parted:
572   - Destroy all objects before return when called with --list or --all
573     option.
574   - Zero sized device is shown as 0.00B and not -0.00kB.
575   - Implement 'print devices' command.
576   - Alias 'print list' to 'print all'.
577   - Alias 'mktable' to 'mklabel'.
578
579 ** misc:
580   - Other bug fixes, documentation updates, and translation improvements.
581   - Code and API clean-ups.
582
583 * Noteworthy changes in release 1.8.1 (2006-12-04) [stable]
584
585 ** libparted:
586   - Rework backtrace support.
587   - Code cleanups.
588   - Added --enable-selinux configure option to enable linking libparted with
589     libselinux and libsepol.
590   - Disable ext2fs resize for now, tell user to use resize2fs.
591
592 ** parted:
593   - Fix loop in print_all().
594   - Introduce the -list command-line switch.
595   - Make mktable aliased to mklabel.
596   - Warn before mklabel and mkfs.
597   - Code cleanups in _partition_warn_busy(), _disk_warn_busy(),
598     _partition_warn_loss(), and _disk_warn_loss().
599   - Avoid warning about user permissions when using --version.
600   - Fix 'print' command help.
601   - Proper print when there are no extended partitions, but partition names.
602
603 ** misc:
604   - Generate SHA-1 digest of the archive files and upload those along with the
605     actual archive files.
606   - Update translation files.
607   - Remove automatically generated files from version control.
608
609 * Noteworthy changes in release 1.8.0 (2006-11-17) [stable]
610
611 ** libparted:
612   - GPT fixes:
613        - Correctly handle disks with non-512 byte sector sizes
614        - Support LUN resizing (see new space, allow parted to use it)
615        - Prevent overlap of LastUsableLBA and PartitionEntryLBA in backup GPT
616   - Prevent SIGFPE when FAT sector size is 0
617   - Add ped_exception_get_handler()
618   - DASD support for IBM zSeries systems
619   - AIX disk label support
620   - Detect Promise SX8 storage devices
621   - Macintosh (ppc and x86) disk label improvements:
622        - Prevent LVM and RAID partition types from corrupting the table
623        - Fix removal of driver partition
624   - Add support binary units (MiB, KiB, GiB)
625   - In ped_register_disk_type(), handle disk_types==NULL case
626   - In ped_unregister_disk_type(), handle case where type is not registered
627   - Fix geometry read problems on 64-bit Macs (and probably other 64-bit systems)
628   - Add support for /dev/mapper devices via libdevmapper library
629   - Detect Apple_Boot partition types correctly on MacOS X 10.4 systems
630
631 ** parted:
632   - Various bug fixes, signal handling fixes, and spelling error fixes
633   - UI improvements to display more information about the disk and transport
634     layer
635
636 ========================================================================
637
638 Copyright (C) 2001-2011 Free Software Foundation, Inc.
639
640 Permission is granted to copy, distribute and/or modify this document
641 under the terms of the GNU Free Documentation License, Version 1.3 or
642 any later version published by the Free Software Foundation; with no
643 Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
644 Texts.  A copy of the license is included in the ``GNU Free
645 Documentation License'' file as part of this distribution.