File: guestfs-release-notes-1.48.pod

package info (click to toggle)
libguestfs 1%3A1.48.6-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 98,368 kB
  • sloc: ansic: 376,405; ml: 38,310; sh: 10,217; java: 9,578; cs: 6,328; haskell: 5,674; makefile: 5,165; python: 3,800; perl: 2,454; erlang: 2,446; ruby: 350; xml: 303; pascal: 257; javascript: 157; cpp: 10
file content (141 lines) | stat: -rw-r--r-- 5,443 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141

=head1 名前

guestfs-release-notes - libguestfs リリースノート

=head1 RELEASE NOTES FOR LIBGUESTFS 1.48

These are the release notes for libguestfs stable release 1.48.  This describes the major changes since 1.46.

Libguestfs 1.48.0 was released on B<14 March 2022>.

=head2 Some features removed

The following little used, experimental or unsafe features have been removed:

"Libguestfs live" was an experimental feature that allowed you (in theory) to connect to an existing instance of the libguestfs daemon in a running guest.  If you want to do this we recommend installing qemu-guest-agent in the guest instead and using the APIs provided by it.  The related C<unix:> backend has been removed.  The L<guestfish(1)> and L<guestmount(1)> I<--live> option now prints an error.

The User-mode Linux (C<uml>) backend has been removed.  It was an alternate hypervisor that could be used instead of qemu.  It had many limitations including lack of network support, and lack of qemu native features like qcow2 or network-backed disks.  In addition it was slower than KVM and particular features like bulk upload/download were painfully slow.  Also the UML feature of Linux that it was based on often does not work.

The 9pfs APIs C<guestfs_list_9p> and C<guestfs_mount_9p> have been deprecated and now return errors.  This was related to an experimental feature for passing through host filesystems to the appliance.  You had to hand-hack the qemu command line for this to work and it did not fit the libguestfs model very well.

C<guestfs_add_drive> no longer supports hotplugging (adding a drive after launch), and C<guestfs_remove_drive> has been deprecated and now returns an error.  Hotplugging was an unsuccessful feature which was complicated to implement and maintain, and was slow and insecure.  It also only worked with the non-default libvirt backend, and was never implemented in the default "direct" backend.

=head2 Language bindings

Fix allocation and deallocation of string lists in golang bindings (Laszlo Ersek).

Multiple fixes to the OCaml bindings: Fix warnings, move minimum version to OCaml 4.04, replace various deprecated OCaml features with modern OCaml features.

Running C<make distclean> in the F<rust> directory now completely cleans the cargo temporary files.

=head2 Inspection

Fix inspection of modern Pardus GNU/Linux (Laszlo Ersek).

Add support for Kylin (Laszlo Ersek).

Add support for Rocky Linux (Neil Hanlon).

Inspection of guests which use LUKS encryption on top of LVM logical volumes should now work (Laszlo Ersek).

=head2 API

=head3 New APIs

No new APIs were added in libguestfs 1.48.

=head3 Other API changes

C<guestfs_list_9p> and C<guestfs_mount_9p> are deprecated and now return errors.

C<guestfs_remove_drive> has been deprecated and now returns an error.

In C<guestfs_xfs_admin> the C<lazycounter> parameter is deprecated because it is no longer supported in recent versions of XFS.

Partition APIs now cope with the broken MBR partition tables created by dosfstools E<ge> 4.2 (Laszlo Ersek).

In C<guestfs_md_create> the C<chunk> parameter should not be used with RAID 1.  Previously it was allowed but ignored, but now it will give an error (Laszlo Ersek).

=head2 Build changes

Multiple compiler warnings fixed and/or analyzed and suppressed (Laszlo Ersek).

Fix detection of optional Yara library using pkg-config instead of checking for library/header file (Laszlo Ersek).

Update valgrind suppressions for glibc 2.35, OCaml 4.13 and libvirt 7.7. C<make check-valgrind> works again.

If using libvirt E<ge> 3.8.0, we now use E<lt>interfaceE<gt> to create the appliance network interface instead of adding qemu command line parameters (Laszlo Ersek).

The L<guestfs-release-notes(1)> page was a broken link, but it has now been restored as a new page that links to the release notes from each stable release.

=head2 内部

The libc API L<strerror_r(3)> is difficult to use correctly because of differing signatures in glibc and other libc.  A wrapper C<guestfs_int_strerror> has been created to hide the differences.

=head2 バグ修正

=begin コメント

https_proxy= ./bugs-in-changelog.sh v1.46.0..

=end コメント

=over 4

=item L<https://bugzilla.redhat.com/2030709>

[RFE] libguestfs: Add Rocky Linux support

=item L<https://bugzilla.redhat.com/2030396>

Fix usage of strerror_r which caused corrupted error messages

=item L<https://bugzilla.redhat.com/2024022>

xfs-admin: Cannot disable lazy-counters on V5 fs

=item L<https://bugzilla.redhat.com/1995391>

RFE: virt-inspector fails to detect the distro and applications on Kylin-Desktop-V10 image

=item L<https://bugzilla.redhat.com/1993842>

RFE: virt-inspector fails to detect the distro on Pardus-19.5 image

=item L<https://bugzilla.redhat.com/1931821>

work around mkfs.vfat writes corrupted filesystem/partition table when used on whole block device

=item L<https://bugzilla.redhat.com/1451665>

RFE: Virt-v2v can't convert the guest which has encrypted partition

=back

=head1 関連項目

L<guestfs-examples(1)>, L<guestfs-faq(1)>, L<guestfs-performance(1)>, L<guestfs-recipes(1)>, L<guestfs-testing(1)>, L<guestfs(3)>, L<guestfish(1)>, L<http://libguestfs.org/>

=head1 著者

=begin コメント

git shortlog -s v1.46.0..

=end コメント

=over 4

=item Laszlo Ersek

=item Neil Hanlon

=item Richard W.M. Jones

=back

=head1 COPYRIGHT

Copyright (C) 2009-2022 Red Hat Inc.