[libvirt] [PATCH 00/15] NEWS: Plenty of fixes and improvements

Oh boy, where to start :) Patch 01 fixes the XSLT stylesheet used to generate the plain text NEWS file from docs/news.html.in. This has been broken for at least two years, based on the oldest release archive available on the website. Patches 02-05 clean up some very simple mistakes. Patches 06-09 are the juicy bits: very old entries were not as tidy as recent ones, so I went through them and polished them up to bring them up to standard. It would be great if someone who was around from the early days, ideally DV, could go over patch 09 in particular, since categorizing old changes I know barely nothing about is by definition prone to error. Patches 10-15 go over everything one last time for that extra shiny finish. Cheers. PS: Patch 07 contains an awfully long line that git-send-email warns me about. I'll try to sent it anyway, but if it doesn't make it to the list that's probably the reason. Andrea Bolognani (15): NEWS: Fix XSLT stylesheet NEWS: Include description for release 0.7.3 NEWS: Remove empty sections NEWS: Split off merged sections NEWS: Properly escape > in HTML NEWS: Split old entries (2009) NEWS: Split old entries (2008) NEWS: Split old entries (2006-2007) NEWS: Organize old entries NEWS: Fix whitespace NEWS: Fix newlines NEWS: Fix indentation NEWS: Add empty lines NEWS: Unify section titles NEWS: Unify date format docs/news.html.in | 6071 ++++++++++++++++++++++++++++++----------------------- docs/news.xsl | 27 +- 2 files changed, 3483 insertions(+), 2615 deletions(-) -- 2.4.3

This has been broken for a looong time - in fact, we've been shipping a mostly-empty NEWS file for at least the past two years. Including the html namespace and using it for matching elements, like hacking1.xsl and hacking2.xsl were already doing, makes the NEWS file useful again. --- docs/news.xsl | 27 ++++++++++++++++----------- 1 file changed, 16 insertions(+), 11 deletions(-) diff --git a/docs/news.xsl b/docs/news.xsl index e35030e..f05d7a1 100644 --- a/docs/news.xsl +++ b/docs/news.xsl @@ -1,6 +1,7 @@ <?xml version="1.0"?> -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - version="1.0"> +<xsl:stylesheet version="1.0" + xmlns:html="http://www.w3.org/1999/xhtml" + xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:output method="text" encoding="UTF-8"/> <xsl:template match="/"> @@ -11,29 +12,34 @@ http://libvirt.org/news.html </xsl:text> - <xsl:apply-templates select="html/body/*"/> + <xsl:apply-templates select="html:html/html:body/*"/> </xsl:template> - <xsl:template match="h1"/> - <xsl:template match="h3"> + <xsl:template match="html:h1"/> + <xsl:template match="html:p"/> + + <xsl:template match="html:h3"> <xsl:text> </xsl:text> <xsl:apply-templates/> <xsl:text>: </xsl:text> </xsl:template> - <xsl:template match="ul"> - <xsl:apply-templates select=".//li"/> + + <xsl:template match="html:ul"> + <xsl:apply-templates select="html:li"/> <xsl:text> </xsl:text> </xsl:template> - <xsl:template match="li"> + + <xsl:template match="html:li"> <xsl:text> - </xsl:text> <xsl:value-of select="."/> <xsl:text> </xsl:text> </xsl:template> - <xsl:template match="a"> + + <xsl:template match="html:a"> <xsl:value-of select="."/> <xsl:text> at </xsl:text> @@ -41,6 +47,5 @@ <xsl:text> </xsl:text> </xsl:template> - <xsl:template match="p"> - </xsl:template> + </xsl:stylesheet> -- 2.4.3

On Wed, Oct 14, 2015 at 10:35:57AM +0200, Andrea Bolognani wrote:
This has been broken for a looong time - in fact, we've been shipping a mostly-empty NEWS file for at least the past two years.
Including the html namespace and using it for matching elements, like hacking1.xsl and hacking2.xsl were already doing, makes the NEWS file useful again. --- docs/news.xsl | 27 ++++++++++++++++----------- 1 file changed, 16 insertions(+), 11 deletions(-)
diff --git a/docs/news.xsl b/docs/news.xsl index e35030e..f05d7a1 100644 --- a/docs/news.xsl +++ b/docs/news.xsl @@ -1,6 +1,7 @@ <?xml version="1.0"?> -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - version="1.0"> +<xsl:stylesheet version="1.0" + xmlns:html="http://www.w3.org/1999/xhtml" + xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:output method="text" encoding="UTF-8"/>
<xsl:template match="/"> @@ -11,29 +12,34 @@ http://libvirt.org/news.html
</xsl:text> - <xsl:apply-templates select="html/body/*"/> + <xsl:apply-templates select="html:html/html:body/*"/> </xsl:template> - <xsl:template match="h1"/>
- <xsl:template match="h3"> + <xsl:template match="html:h1"/> + <xsl:template match="html:p"/> + + <xsl:template match="html:h3"> <xsl:text> </xsl:text> <xsl:apply-templates/> <xsl:text>: </xsl:text> </xsl:template> - <xsl:template match="ul"> - <xsl:apply-templates select=".//li"/> + + <xsl:template match="html:ul"> + <xsl:apply-templates select="html:li"/> <xsl:text> </xsl:text> </xsl:template> - <xsl:template match="li"> + + <xsl:template match="html:li"> <xsl:text> - </xsl:text> <xsl:value-of select="."/> <xsl:text> </xsl:text> </xsl:template> - <xsl:template match="a"> + + <xsl:template match="html:a"> <xsl:value-of select="."/> <xsl:text> at </xsl:text> @@ -41,6 +47,5 @@ <xsl:text> </xsl:text> </xsl:template> - <xsl:template match="p"> - </xsl:template> +
I'm assuming this is not needed after all following patches are applied and that's fine, but leads me to a question whether we could move this patch at the end of the series, so that we first fix all the horrible things in news.html.in and then fix the transformation code. Even better if we could split the news.html.in into new and old ones (as discussed) and then apply this patch after that so that we don't generate over megabyte of data. Of course it's enough to have it in throughout the rest of the month, but using this particular order make sure we won't leave it unnoticed for bunch of other releases. Having said that, I don't really care that much about one 3½" floppy disk of data added to the tarball as it adds almost no size when compressed, but it would just be nicer, I think, when it's not all there, especially when nobody reads the news =) Anyway ACK from the technical POV.
</xsl:stylesheet> -- 2.4.3
-- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list

On Wed, 2015-10-14 at 14:50 +0200, Martin Kletzander wrote:
Even better if we could split the news.html.in into new and old ones (as discussed) and then apply this patch after that so that we don't generate over megabyte of data. Of course it's enough to have it in throughout the rest of the month, but using this particular order make sure we won't leave it unnoticed for bunch of other releases.
Sure, why not? I'll take this fix out of the current series and include in the one splitting the news by year. Cheers. -- Andrea Bolognani Software Engineer - Virtualization Team

On Wed, Oct 14, 2015 at 05:09:47PM +0200, Andrea Bolognani wrote:
On Wed, 2015-10-14 at 14:50 +0200, Martin Kletzander wrote:
Even better if we could split the news.html.in into new and old ones (as discussed) and then apply this patch after that so that we don't generate over megabyte of data. Of course it's enough to have it in throughout the rest of the month, but using this particular order make sure we won't leave it unnoticed for bunch of other releases.
Sure, why not? I'll take this fix out of the current series and include in the one splitting the news by year.
Cool, so I guess you can push the rest and I'll be looking forward to new series with the split and the fix of this XSL then ;)

On Wed, 2015-10-14 at 17:31 +0200, Martin Kletzander wrote:
On Wed, Oct 14, 2015 at 05:09:47PM +0200, Andrea Bolognani wrote:
On Wed, 2015-10-14 at 14:50 +0200, Martin Kletzander wrote:
Even better if we could split the news.html.in into new and old ones (as discussed) and then apply this patch after that so that we don't generate over megabyte of data. Of course it's enough to have it in throughout the rest of the month, but using this particular order make sure we won't leave it unnoticed for bunch of other releases.
Sure, why not? I'll take this fix out of the current series and include in the one splitting the news by year.
Cool, so I guess you can push the rest and I'll be looking forward to new series with the split and the fix of this XSL then ;)
Pushed, thanks. And it looks like you just volunteered to review the follow-up series as well! Great! :) Cheers. -- Andrea Bolognani Software Engineer - Virtualization Team

The description for this release, unlike all other descriptions, was inside a <p> element; however, the XSLT stylesheet contains a template that drops all <p> elements from the output file, so it never made it to the generated NEWS file. Use a <li> element, same as all other releases, instead. --- docs/news.html.in | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/news.html.in b/docs/news.html.in index ca86c6e..88abddd 100644 --- a/docs/news.html.in +++ b/docs/news.html.in @@ -18296,8 +18296,11 @@ Security:<br/> Don't copy old machines from a domain which has none (Mark McLoughlin) </li> </ul> - <h3>0.7.3: Nov 20 2009</h3> - <p>Broken release use 0.7.4</p> + <h3>0.7.3: Nov 20 2009</h3> + <ul> + <li>Broken release, use 0.7.4 + </li> + </ul> <h3>0.7.2: Oct 14 2009</h3> <ul> -- 2.4.3

--- docs/news.html.in | 5 ----- 1 file changed, 5 deletions(-) diff --git a/docs/news.html.in b/docs/news.html.in index 88abddd..00dbb21 100644 --- a/docs/news.html.in +++ b/docs/news.html.in @@ -602,9 +602,6 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> cpu_map.xml: Expand 486 CPU model (Jiri Denemark),<br/> cpu_map.xml: Sort features in x86 CPU models (Jiri Denemark)<br/> </li> - - <li>Cleanups:<br/> - </li> </ul> <h3>1.2.17: Jul 02 2015</h3> <ul> @@ -16848,8 +16845,6 @@ Security:<br/> build: drop more redundant configure checks (Eric Blake),<br/> build: silence a clang false positive (Eric Blake) </li> - <li> - </li> </ul> <h3>0.8.1: Apr 30 2010</h3> <ul> -- 2.4.3

Portability and Bug Fixes for release 0.7.3 were merged together; same for Features and Security for release 1.1.3. Split them off --- docs/news.html.in | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/docs/news.html.in b/docs/news.html.in index 00dbb21..1ce9509 100644 --- a/docs/news.html.in +++ b/docs/news.html.in @@ -6044,9 +6044,10 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> <ul> <li>Features:<br/> Add support for AArch64 architecture (Pranavkumar Sawargaonkar),<br/> - Various improvements on test code and test driver (many people),<br/> + Various improvements on test code and test driver (many people)<br/> + </li> -Security:<br/> + <li>Security:<br/> Don't link virt-login-shell against libvirt.so (CVE-2013-4400) (Daniel P. Berrange),<br/> Close all non-stdio FDs in virt-login-shell (CVE-2013-4400) (Daniel P. Berrange),<br/> Only allow 'stderr' log output when running setuid (CVE-2013-4400) (Daniel P. Berrange),<br/> @@ -18325,8 +18326,10 @@ Security:<br/> <li>Portability:<br/> Misc win32 build fixes (Daniel P. Berrange),<br/> Don't require full daemon install for libvirt python bindings (Daniel P. Berrange),<br/> - Tweak specfile to fix RHEL6 rules & ESX/PHYP enablement (Daniel P. Berrange),<br/> - Bug Fixes:, + Tweak specfile to fix RHEL6 rules & ESX/PHYP enablement (Daniel P. Berrange)<br/> + </li> + + <li>Bug Fixes:<br/> network: Fix printing XML 'delay' attribute (Cole Robinson),<br/> Fix virFileReadLimFD/virFileReadAll to handle EINTR (Daniel P. Berrange),<br/> storage: Fix generating iscsi 'auth' xml (Cole Robinson),<br/> -- 2.4.3

--- docs/news.html.in | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/news.html.in b/docs/news.html.in index 1ce9509..1512299 100644 --- a/docs/news.html.in +++ b/docs/news.html.in @@ -4582,7 +4582,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> conf: Output disk backing store details in domain XML (Jiri Denemark),<br/> util: storage: Invert the way recursive metadata retrieval works (Peter Krempa),<br/> util: virstoragefile: Don't mangle data stored about directories (Peter Krempa),<br/> - storage: Move disk->backingChain to the recursive disk->src.backingStore (Peter Krempa),<br/> + storage: Move disk->backingChain to the recursive disk->src.backingStore (Peter Krempa),<br/> util: virstoragefile: Rename backingMeta to backingStore (Peter Krempa),<br/> util: virstorage: Kill struct virStorageFileMetadata (Peter Krempa),<br/> maint: Switch over from struct virStorageFileMetadata to virStorageSource (Peter Krempa),<br/> @@ -7851,7 +7851,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> qemu: Manage shared device entry for scsi host device (Osier Yang),<br/> qemu: Refactor the helpers to track shared scsi host device (Osier Yang),<br/> utils: Add a helper to get the device name that sg device mapped to (Osier Yang),<br/> - qemu: Rename qemu_driver->sharedDisks to qemu_driver->sharedDevices (Osier Yang),<br/> + qemu: Rename qemu_driver->sharedDisks to qemu_driver->sharedDevices (Osier Yang),<br/> conf: Introduce <shareable> for hostdev (Osier Yang),<br/> string: test VIR_STRDUP (Eric Blake),<br/> virsh: lookup interface by name or mac other than one by one (Guannan Ren),<br/> @@ -17948,7 +17948,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> libvirt.c: don't let a NULL "cpumaps" argument provoke a NULL-deref (Jim Meyering),<br/> qemu migration: avoid NULL-deref given an invalid input (Jim Meyering),<br/> qemu_driver.c: don't unlink(NULL) on OOM error path (Jim Meyering),<br/> - remote_driver.c: also zero out ->saslDecodedOffset member (Jim Meyering),<br/> + remote_driver.c: also zero out ->saslDecodedOffset member (Jim Meyering),<br/> qemu_driver.c: avoid double free on error path (Jim Meyering),<br/> libvirtd: avoid a NULL dereference on error path (Jim Meyering),<br/> virsh: avoid double-free (Jim Meyering),<br/> @@ -17961,7 +17961,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> Fix memory leak in virStorageBackendCopyToFD (Matthias Bolte),<br/> retrieve paused/running state at migration start (Paolo Bonzini),<br/> fix migration of paused vms upon failure (Paolo Bonzini),<br/> - qemu driver: Fix segfault in libvirt/libvirtd when uri->path is NULL. (Richard Jones),<br/> + qemu driver: Fix segfault in libvirt/libvirtd when uri->path is NULL. (Richard Jones),<br/> Fix a wellformedness problem in secret.rng (Diego Elio Pettenò),<br/> Fix virDomainObj ref handling in QEMU driver (Daniel P. Berrange),<br/> Pull code to start CPUs executing out of qemudInitCpuAffinity() (Daniel P. Berrange),<br/> @@ -18018,7 +18018,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> Add virIndexToDiskName and fix mapping gap (Matthias Bolte),<br/> Add another SENTINEL attribute (Paolo Bonzini),<br/> Fix help message (Wolfgang Mauerer),<br/> - Alternate CPU affinity impl to cope with NR_CPUS > 1024 (Daniel P. Berrange) + Alternate CPU affinity impl to cope with NR_CPUS > 1024 (Daniel P. Berrange) </li> <li>Cleanups:<br/> -- 2.4.3

The changes for releases earlier than 0.7.1 were mostly lumped together as opposed to being tidly organized with one change per line, like we have done from that point onwards. As a result, they look awful in the HTML version and don't work too well in the plain text version either. Luckily, except for the very first releases, the information is still very detailed, so it's enough to organize it properly. --- docs/news.html.in | 1232 +++++++++++++++++++++++++++++------------------------ 1 file changed, 677 insertions(+), 555 deletions(-) diff --git a/docs/news.html.in b/docs/news.html.in index 1512299..0bc44a6 100644 --- a/docs/news.html.in +++ b/docs/news.html.in @@ -18728,579 +18728,701 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> </ul> <h3>0.7.0: Aug 5 2009</h3> <ul> - <li>New features: Interface implementation based on netcf (Laine Stump, - Daniel Veillard), Add new net filesystem glusterfs (Harshavardhana), - Initial VMWare ESX driver (Matthias Bolte), Add support for VBox - 3 and event callbacks on vbox (Pritesh Kothari), First version - of the Power Hypervisor driver (Eduardo Otubo), Run QEMU guests - as an unprivileged user (Daniel P. Berrange), Support cgroups - in QEMU driver (Daniel P. Berrange), QEmu hotplug NIC support - (Mark McLoughlin), Storage cloning for LVM and Disk backends(Cole - Robinson), Switching to GIT (Jim Meyering)</li> - - <li>Documentation: Typo and comment fixes (Aron Griffis), - Fix virCapabilitiesDefaultGuestMachine documentation. (Chris - Lalancette), ESX Scheduler documentation and cleanup (Matthias - Bolte), Update the java bindings page (Bryan Kearney), Added - Matthias Bolte to AUTHORS list (Daniel Veillard), doc: clone+build - instructions (Jim Meyering), docs: say that the old repository - is deprecated... (Jim Meyering), document tcp listen and raw - wire option (Guido Günther), Fix docs and code disagreements - for character devices. (Cole Robinson), Fix documentation of - virStoragePoolUndefine return (Thomas Treutner), Fix gitweb link on - download page. (Cole Robinson), update download informations after - switch to git (Daniel Veillard), Update links to bugzilla (Garry - Dolley), Update the links for RHEL libvirt bugzillas (Garry Dolley)</li> - - <li>Portability: Xen Inotify support needs sys/inotify.h - (Maximilian Wilhelm), Workaround for broken GCC in Debian Etch - (Maximilian Wilhelm), LXC driver requires sched.h and unshare() - (Maximilian Wilhelm), Configure UML support only if sys/inotify.h - present (Maximilian Wilhelm), Fix libcurl automatic check and ESX - status (Maximilian Wilhelm), Enable ESX driver build on Mingw32 - (Daniel P. Berrange), Fix build on mingw32 by disabling netcf - (Daniel P. Berrange), Reduce glusterfs dependency to 2.0.1 - (Mark McLoughlin), Desactivate phyp build and indicate libssh - builreq (Daniel Veillard), Fix misc Win32 compile warnings - (Daniel P. Berrange), Rename variable for compilation in Mingw32 - (end) (Laine Stump), Rename variable for compilation in Mingw32 - (Laine Stump), rpm spec cleanup and split off client only package - (Daniel Veillard)</li> - - <li>Bug fixes: Add uniqueness checking for LXC define/create methods - (Daniel P. Berrange), Fix removal of transient VMs when LXC aborts - (Daniel P. Berrange), Don't try to activate cgroups if not present - for LXC (Daniel P. Berrange), Refresh /etc/xen if inotify wasn't - (Cole Robinson), Don't loose id on xen domain redefine (Cole - Robinson), Fix memory leak in openvz driver (Daniel P. Berrange), - Protected against potential crash scenarios (Daniel P. Berrange), - Fix crash when attempting to shutdown inactive QEMU vm (Daniel - P. Berrange), Fix PCIe FLR detection (Mark McLoughlin), Set perms - on /var/lib/libvirt/images to 0711 (Mark McLoughlin), Fix problem - writing QEMU pidfile (Daniel P. Berrange), Fix vcpupin on Xen - problem (Henrik Persson), Fix RPM upgrades from F11 to F12 (Daniel - P. Berrange), Fix deadlock in remote driver domain events (Daniel - P. Berrange), qemu: fix monitor socket reconnection (Ryota Ozaki), - Fix polkit/netcf disabling on older fedoras (Mark McLoughlin), - Fix crashes in Xen capabilities code (Daniel P. Berrange), - Always add -no-kvm and -no-kqemu, for qemu domains (Jim Paris), - Avoid raising an internal error (Paolo Bonzini), Don't allow NULL - paths for BlockStats and InterfaceStats (Cole Robinson), Don't - leak vm-monitorpath on re-connect (Mark McLoughlin), Don't restore - labels on shared/readonly disks (Daniel P. Berrange), Ensure spawned - children have a stderr/out set to /dev/null if requested (Daniel - P. Berrange), Ensure test:/// URIs get routed to the non-privileged - libvirtd (Daniel P. Berrange), fix another failing "make distcheck" - (qemuhelptest) (Jim Meyering), Fix an uninitialized variable - in Unix socket open (Jun Koi), Fix configure flags in spec file - (Daniel Veillard), Fix error reporting for security driver over - remote protocol (Daniel P. Berrange), fix failing "make distcheck" - (Jim Meyering), Fix free of unitialized data upon PCI open fail - (Daniel P. Berrange), Fix informations about previous git server - (Daniel Veillard), Fix memory leaks in esxDomainDumpXML (Matthias - Bolte), Fix multiple memory leaks in virsh (Laine Stump), Fix PCI - device hotplug/unplug with newer QEMU (Daniel P. Berrange), Fix - problem with QEMU monitor welcome prompt confusing libvirt after a - libvirtd daemon restart with active guests (Daniel P. Berrange), - Fix python examples to use read-write conn (Dan Kenigsberg), Fix - reconnect bug for VBox (Pritesh Kothari), Fix SELinux denial during - hotplug (Daniel P. Berrange), Fix typo in check for glusterfs format - pools (Daniel P. Berrange), Fix typo in storage cloning (Daniel - P. Berrange), qemu: Check driver is initialized up front, to avoid - segfault. (Cole Robinson), qemu: Try multiple times to open unix - monitor socket (Cole Robinson), Release conn lock before reporting - errors (end) (Laine Stump), Release conn lock before reporting - interface errors (Laine Stump), Remove the network backend if NIC - hotplug fails (Mark McLoughlin), Set specific flags for glusterfs - fs mounts (Harshavardhana), storage: disk: Default to 'ext2' for - new volumes. (Cole Robinson), storage: disk: Fix parthelper '-g' - option handling. (Cole Robinson), storage: disk: Fix segfault - creating volume without target path (Cole Robinson), storage: - Fix deadlock when cloning across pools. (Cole Robinson), Update - modified mac address in place in virGetInterface (Laine Stump)</li> - - <li>Improvements: Add an allocation unit when calling qemu-img - (Ryota Ozaki), Improve diagnostics when pidfile writing fails - (Daniel P. Berrange), Disable IPv6 on virtual networks (Daniel - P. Berrange), Allow dnsmasq to provide DNS without DHCP (Daniel - P. Berrange), Fix an initialization problem in previous patch - (Aron Griffis), Remove MAX_TAP_ID and let kernel do numbering - (Aron Griffis), Kernel command line support for UML (Ron Yorston), - Activate the interface drivers, and cleanups (Daniel Veillard), - Add an error code for conflicting mac addresses (Laine Stump), - Add a test interface driver (Laine Stump), Add canonical machine - name to capabilities output (Mark McLoughlin), add cd and pwd - commands to virsh (Paolo Bonzini), Add checks for some NIC hotplug - related features added in qemu-0.10.0 (Mark McLoughlin), Add - domain autostart for LXC driver (Daniel P. Berrange), Add domain - events support to LXC driver (Daniel P. Berrange), Add interface - object list manipulation functions (Laine Stump), Add internal XML - parsing/formatting flag (Mark McLoughlin), Add netcf XML schemas - and test data (Daniel Veillard), Add new net filesystem glusterfs - (Harshavardhana), Add NIC and hostnet names to domain state XML - (Mark McLoughlin), Add no_verify query parameter to ESX URIs - (Matthias Bolte), Add SCM_RIGHTS support to QEMU monitor code - (Mark McLoughlin), Add support for attaching network/bridge NICs - in QEMU driver (Mark McLoughlin), add support for netcf XML import - and export (Daniel Veillard), Add support for network device detach - (Mark McLoughlin), Add support for physical memory access for QEmu - (Nguyen Anh Quynh), Add support for VBox 3 and event callbacks on - vbox (Pritesh Kothari), Add the monitor type to the domain state - XML (Mark McLoughlin), Add virCapsGuestMachine structure (Mark - McLoughlin), Add virsh commands for network interface management - (Laine Stump), Allow autostart of libvirtd to be disabled with - LIBVIRT_AUTOSTART=0 (Daniel P. Berrange), Allow leading dots in VMX - config entry names (Matthias Bolte), Assign names to qemu NICs and - network backends (Mark McLoughlin), Basic qemu NIC hotplug support - (Mark McLoughlin), build: adjust aclocal's search patch to prefer - gnulib's m4 files. (Jim Meyering), build: automatically rerun - ./bootstrap when needed (Jim Meyering), build: make autogen.sh use - autoreconf -if (Jim Meyering), build: submodule machinery now works - also when no tag is reachable (Jim Meyering), Canonicalize qemu - machine types (Mark McLoughlin), Change code generator to give async - event messages their own postfix (Daniel P. Berrange), Change the - way client event loop watches are managed (Daniel P. Berrange), - Decode incoming request header before invoking dispatch code - (Daniel P. Berrange), Define an API for registering incoming message - dispatch filters (Daniel P. Berrange), ESX driver accept VI API - version 4.0 (Matthias Bolte), Fill in vCPU - pCPU current mapping, - and vCPU cpuTime for QEMU (Daniel P. Berrange), generate ChangeLog - from git logs into distribution tarball (Jim Meyering), Implement - qemu dump capabilities (Paolo Bonzini), Implement schedular - tunables API using cgroups (Daniel P. Berrange), Implement the - new virinterface functions (Laine Stump), Make cgroups a little - more efficient (Daniel P. Berrange), Make it easier to debug tests - running programs (Daniel P. Berrange), Make qemuBuildHostNetStr() - take tapfd as a string (Mark McLoughlin), Make QEMU cgroups use - configurable (Daniel P. Berrange), Make qemuCmdFlags available in - qemudDomainAttachDevice() (Mark McLoughlin), Move queuing of RPC - replies into dispatch code (Daniel P. Berrange), Move vnet_hdr logic - into qemudNetworkIfaceConnect() and export it (Mark McLoughlin), - Netcf based interface driver implementation (Laine Stump), netcf - XML validation and input and output tests (Daniel Veillard), Only - probe qemu for machine types when binary changes (Mark McLoughlin), - Place every QEMU guest in a private cgroup (Daniel P. Berrange), - Probe for QEMU machine types (Mark McLoughlin), Probe QEMU directly - for machine aliases if not found in capabilties (Mark McLoughlin), - Public API for new virInterface functions (Laine Stump), python: - Raise exceptions if virDomain*Stats fail. (Cole Robinson), Refactor - cgroups to allow a group per driver to be managed directly (Daniel - P. Berrange), Re-factor pci_add reply parsing and parse domain/bus - numbers (Mark McLoughlin), Retain disk PCI address across libvirtd - restarts (Mark McLoughlin), Retain PCI address from NIC attach - (Mark McLoughlin), Run QEMU guests as an unprivileged user (Daniel - P. Berrange), Separate code for encoding outgoing remote message - headers (Daniel P. Berrange), Split generic RPC message dispatch - code out from remote protocol API handlers (Daniel P. Berrange), - Split out code for handling incoming method call messages - (Daniel P. Berrange), storage: Break out actual raw cloning to - separate function. (Cole Robinson), storage: cleanup: do away with - 'createFile' (Cole Robinson), storage: disk: Use capacity, not - allocation, when creating volume. (Cole Robinson), storage: Don't - try sparse detection if writing to block device. (Cole Robinson), - storage: Implement 'CreateBlockFrom' helper. (Cole Robinson), - storage: Implement CreateVolFrom for logical and disk backend. (Cole - Robinson), storage: Move most of the FS creation functions to - common backend. (Cole Robinson), storage: Refactor FS backend - 'create' function choosing. (Cole Robinson), Store the interface - vlan number in the domain state (Mark McLoughlin), Support video - element for QEMU guests (Daniel P. Berrange), Support video tag - for defining VGA card properties (Daniel P. Berrange), Switch to - using a unix socket for the qemu monitor (Mark McLoughlin), test: - Generate net interface names when assigning XML. (Cole Robinson), - test: Implement BlockStats and InterfaceStats (Cole Robinson), - Use cgroups for block device whitelisting in QEMU guests (Daniel - P. Berrange), Use enums for cgroup controller types / labels - (Daniel P. Berrange), Use sendmsg() on QEMU monitor socket (Mark - McLoughlin), Use virDomainChrTypeFromString() instead of open - coding (Mark McLoughlin), Use virFileReadAll/virFileWriteStr for - key cgroup read/write helpers (Daniel P. Berrange), virGetinterface - matching of MAC and interface name (Laine Stump)</li> - - <li>Cleanups: Fix configure checks from previous commits (Daniel - P. Berrange), Avoid a warning if compiling without inotify - (Daniel P. Berrange), Remove a stray semicolon (Daniel Veillard), - Extend the ESX URL to habdle ports and GSX (Matthias Bolte), Fix - escaping of 8-bit high characters (Daniel P. Berrange), , Remove - ATTRIBUTE_UNUSED from flags to qemudDomainMigratePerform. (Chris - Lalancette), Add a comment about setting errors after - qemudStartVMDaemon(). (Chris Lalancette), Fix an erroneous - debug error to KVM; it should read QEMU/KVM. (Chris Lalancette), - Remove a stray semicolon in qemudDomainMigratePrepare2. (Chris - Lalancette), Convert a few stray users of free() in libvirt.c - to VIR_FREE(). (Chris Lalancette), Use virGetHostname instead - of gethostname. (Chris Lalancette), Fix up a minor indentation - issue with virDomainMigratePrepare. (Chris Lalancette), Fix up a - silly typo in apibuild.py. (Chris Lalancette), Avoid warning when - compiling without IFF_VNET_HDR (Maximilian Wilhelm), Capilize - libvirt-client summary (Mark McLoughlin), Move ldconfig calls - to libvirt-client %post/%postun (Mark McLoughlin), Convert NEWS - to UTF-8 (Mark McLoughlin), Fix trailing whitespace in NEWS - (Mark McLoughlin), No need to build require both python-devel - and python (Mark McLoughlin), Remove executable perms from - /etc/sysconfig/libvirtd (Mark McLoughlin), Use a %postun -p for - one line scriptlet (Mark McLoughlin), Don't explicitly require - libxml2 (Mark McLoughlin), Fix some unowned directories (Mark - McLoughlin), Kill qemu BuildRequires (Mark McLoughlin), Enable - netcf by default (Mark McLoughlin), Default to with_polkit - (Mark McLoughlin), Make vbox support configurable (Mark - McLoughlin), Build with --without-capng if capng is disabled - (Mark McLoughlin), BuildRequires libcap-ng-devel not capng-devel - (Mark McLoughlin), Drop curl host check when using ESX without - check (Shahar Klein), Fix typo in xen capabilities code (Daniel - P. Berrange), Add bare format string to printf-derivatives troubles - (Laine Stump), Add phyp files to POTFILES, to make syntax-check - happy. (Cole Robinson), avoid a make distcheck failure: distribute - docs/schemas/interface.rng (Jim Meyering), avoid a make distcheck - failure: distribute tests/interfaceschemadata/ (Jim Meyering), avoid - a "make syntax-check" failure (Jim Meyering), build: do not emit - a trailing blank line into VC'd file, NEWS (Jim Meyering), build: - update from gnulib, for latest maint.mk (Jim Meyering), Clean up - error handling in qemudDomainAttachNetDevice() (Mark McLoughlin), - Cleanup qemu binary detection logic in qemudCapsInitGuest() (Mark - McLoughlin), Commit newly generated docs, after changes from - commit 2348cf. (Cole Robinson), Factor qemuBuildHostNetStr() - out from qemuBuildCommandLine() (Mark McLoughlin), Factor - qemuBuildNicStr() out from qemuBuildCommandLine() (Mark McLoughlin), - Factor qemudMonitorSend() out of qemudMonitorCommandExtra() (Mark - McLoughlin), Fix cgroup compile warnings (Daniel P. Berrange), - Fix misc build problems due to new drivers (Daniel P. Berrange), - Fix weird build problems due to autopoint overwriting gnulib m4 - (Daniel P. Berrange), Makefile.cfg: Rename to... (Jim Meyering), - make .gnulib a submodule (Jim Meyering), make "make syntax-check" - consistent with "git diff --check" (Jim Meyering), Minor qemu - monitor coding style fixes (Mark McLoughlin), Prepare to use - maint.mk from gnulib (Jim Meyering), Refactor incoming message - handling to prepare for data stream support (Daniel P. Berrange), - Refactor message sending to allow code reuse for data streams - (Daniel P. Berrange), remove all .cvsignore files (Jim Meyering), - remove all trailing blank lines (Jim Meyering), Remove some unused - variables and cut long lines (Daniel Veillard), Remove trailing - blank lines (Daniel Veillard), Rename a bunch of internal methods - to clarify their meaning (Daniel P. Berrange), Rename 'direction' - to 'type' in remote_message_header (Daniel P. Berrange), Report - the object name on lookup error (Daniel Veillard), Simplify remote - driver error reporting (Daniel P. Berrange), skip some of gnulib's - new rules (Jim Meyering), use automake-1.11's silent-rules - option, when possible (Jim Meyering), use gnumakefile and - maintainer-makefile modules from gnulib (Jim Meyering)</li> + <li>New features:<br/> + Interface implementation based on netcf (Laine Stump, Daniel Veillard),<br/> + Add new net filesystem glusterfs (Harshavardhana),<br/> + Initial VMWare ESX driver (Matthias Bolte),<br/> + Add support for VBox 3 and event callbacks on vbox (Pritesh Kothari),<br/> + First version of the Power Hypervisor driver (Eduardo Otubo),<br/> + Run QEMU guests as an unprivileged user (Daniel P. Berrange),<br/> + Support cgroups in QEMU driver (Daniel P. Berrange),<br/> + QEmu hotplug NIC support (Mark McLoughlin),<br/> + Storage cloning for LVM and Disk backends(Cole Robinson),<br/> + Switching to GIT (Jim Meyering)<br/> + </li> + <li>Documentation:<br/> + Typo and comment fixes (Aron Griffis),<br/> + Fix virCapabilitiesDefaultGuestMachine documentation. (Chris Lalancette),<br/> + ESX Scheduler documentation and cleanup (Matthias Bolte),<br/> + Update the java bindings page (Bryan Kearney),<br/> + Added Matthias Bolte to AUTHORS list (Daniel Veillard),<br/> + doc: clone+build instructions (Jim Meyering),<br/> + docs: say that the old repository is deprecated... (Jim Meyering),<br/> + document tcp listen and raw wire option (Guido Günther),<br/> + Fix docs and code disagreements for character devices. (Cole Robinson),<br/> + Fix documentation of virStoragePoolUndefine return (Thomas Treutner),<br/> + Fix gitweb link on download page. (Cole Robinson),<br/> + update download informations after switch to git (Daniel Veillard),<br/> + Update links to bugzilla (Garry Dolley),<br/> + Update the links for RHEL libvirt bugzillas (Garry Dolley)<br/> + </li> + <li>Portability:<br/> + Xen Inotify support needs sys/inotify.h (Maximilian Wilhelm),<br/> + Workaround for broken GCC in Debian Etch (Maximilian Wilhelm),<br/> + LXC driver requires sched.h and unshare() (Maximilian Wilhelm),<br/> + Configure UML support only if sys/inotify.h present (Maximilian Wilhelm),<br/> + Fix libcurl automatic check and ESX status (Maximilian Wilhelm),<br/> + Enable ESX driver build on Mingw32 (Daniel P. Berrange),<br/> + Fix build on mingw32 by disabling netcf (Daniel P. Berrange),<br/> + Reduce glusterfs dependency to 2.0.1 (Mark McLoughlin),<br/> + Desactivate phyp build and indicate libssh builreq (Daniel Veillard),<br/> + Fix misc Win32 compile warnings (Daniel P. Berrange),<br/> + Rename variable for compilation in Mingw32 (end) (Laine Stump),<br/> + Rename variable for compilation in Mingw32 (Laine Stump),<br/> + rpm spec cleanup and split off client only package (Daniel Veillard)<br/> + </li> + <li>Bug fixes:<br/> + Add uniqueness checking for LXC define/create methods (Daniel P. Berrange),<br/> + Fix removal of transient VMs when LXC aborts (Daniel P. Berrange),<br/> + Don't try to activate cgroups if not present for LXC (Daniel P. Berrange),<br/> + Refresh /etc/xen if inotify wasn't (Cole Robinson),<br/> + Don't loose id on xen domain redefine (Cole Robinson),<br/> + Fix memory leak in openvz driver (Daniel P. Berrange),<br/> + Protected against potential crash scenarios (Daniel P. Berrange),<br/> + Fix crash when attempting to shutdown inactive QEMU vm (Daniel P. Berrange),<br/> + Fix PCIe FLR detection (Mark McLoughlin),<br/> + Set perms on /var/lib/libvirt/images to 0711 (Mark McLoughlin),<br/> + Fix problem writing QEMU pidfile (Daniel P. Berrange),<br/> + Fix vcpupin on Xen problem (Henrik Persson),<br/> + Fix RPM upgrades from F11 to F12 (Daniel P. Berrange),<br/> + Fix deadlock in remote driver domain events (Daniel P. Berrange),<br/> + qemu: fix monitor socket reconnection (Ryota Ozaki),<br/> + Fix polkit/netcf disabling on older fedoras (Mark McLoughlin),<br/> + Fix crashes in Xen capabilities code (Daniel P. Berrange),<br/> + Always add -no-kvm and -no-kqemu, for qemu domains (Jim Paris),<br/> + Avoid raising an internal error (Paolo Bonzini),<br/> + Don't allow NULL paths for BlockStats and InterfaceStats (Cole Robinson),<br/> + Don't leak vm-monitorpath on re-connect (Mark McLoughlin),<br/> + Don't restore labels on shared/readonly disks (Daniel P. Berrange),<br/> + Ensure spawned children have a stderr/out set to /dev/null if requested (Daniel P. Berrange),<br/> + Ensure test:/// URIs get routed to the non-privileged libvirtd (Daniel P. Berrange),<br/> + fix another failing "make distcheck" (qemuhelptest) (Jim Meyering),<br/> + Fix an uninitialized variable in Unix socket open (Jun Koi),<br/> + Fix configure flags in spec file (Daniel Veillard),<br/> + Fix error reporting for security driver over remote protocol (Daniel P. Berrange),<br/> + fix failing "make distcheck" (Jim Meyering),<br/> + Fix free of unitialized data upon PCI open fail (Daniel P. Berrange),<br/> + Fix informations about previous git server (Daniel Veillard),<br/> + Fix memory leaks in esxDomainDumpXML (Matthias Bolte),<br/> + Fix multiple memory leaks in virsh (Laine Stump),<br/> + Fix PCI device hotplug/unplug with newer QEMU (Daniel P. Berrange),<br/> + Fix problem with QEMU monitor welcome prompt confusing libvirt after a libvirtd daemon restart with active guests (Daniel P. Berrange),<br/> + Fix python examples to use read-write conn (Dan Kenigsberg),<br/> + Fix reconnect bug for VBox (Pritesh Kothari),<br/> + Fix SELinux denial during hotplug (Daniel P. Berrange),<br/> + Fix typo in check for glusterfs format pools (Daniel P. Berrange),<br/> + Fix typo in storage cloning (Daniel P. Berrange),<br/> + qemu: Check driver is initialized up front, to avoid segfault. (Cole Robinson),<br/> + qemu: Try multiple times to open unix monitor socket (Cole Robinson),<br/> + Release conn lock before reporting errors (end) (Laine Stump),<br/> + Release conn lock before reporting interface errors (Laine Stump),<br/> + Remove the network backend if NIC hotplug fails (Mark McLoughlin),<br/> + Set specific flags for glusterfs fs mounts (Harshavardhana),<br/> + storage: disk: Default to 'ext2' for new volumes. (Cole Robinson),<br/> + storage: disk: Fix parthelper '-g' option handling. (Cole Robinson),<br/> + storage: disk: Fix segfault creating volume without target path (Cole Robinson),<br/> + storage: Fix deadlock when cloning across pools. (Cole Robinson),<br/> + Update modified mac address in place in virGetInterface (Laine Stump)<br/> + </li> + <li>Improvements:<br/> + Add an allocation unit when calling qemu-img (Ryota Ozaki),<br/> + Improve diagnostics when pidfile writing fails (Daniel P. Berrange),<br/> + Disable IPv6 on virtual networks (Daniel P. Berrange),<br/> + Allow dnsmasq to provide DNS without DHCP (Daniel P. Berrange),<br/> + Fix an initialization problem in previous patch (Aron Griffis),<br/> + Remove MAX_TAP_ID and let kernel do numbering (Aron Griffis),<br/> + Kernel command line support for UML (Ron Yorston),<br/> + Activate the interface drivers, and cleanups (Daniel Veillard),<br/> + Add an error code for conflicting mac addresses (Laine Stump),<br/> + Add a test interface driver (Laine Stump),<br/> + Add canonical machine name to capabilities output (Mark McLoughlin),<br/> + add cd and pwd commands to virsh (Paolo Bonzini),<br/> + Add checks for some NIC hotplug related features added in qemu-0.10.0 (Mark McLoughlin),<br/> + Add domain autostart for LXC driver (Daniel P. Berrange),<br/> + Add domain events support to LXC driver (Daniel P. Berrange),<br/> + Add interface object list manipulation functions (Laine Stump),<br/> + Add internal XML parsing/formatting flag (Mark McLoughlin),<br/> + Add netcf XML schemas and test data (Daniel Veillard),<br/> + Add new net filesystem glusterfs (Harshavardhana),<br/> + Add NIC and hostnet names to domain state XML (Mark McLoughlin),<br/> + Add no_verify query parameter to ESX URIs (Matthias Bolte),<br/> + Add SCM_RIGHTS support to QEMU monitor code (Mark McLoughlin),<br/> + Add support for attaching network/bridge NICs in QEMU driver (Mark McLoughlin),<br/> + add support for netcf XML import and export (Daniel Veillard),<br/> + Add support for network device detach (Mark McLoughlin),<br/> + Add support for physical memory access for QEmu (Nguyen Anh Quynh),<br/> + Add support for VBox 3 and event callbacks on vbox (Pritesh Kothari),<br/> + Add the monitor type to the domain state XML (Mark McLoughlin),<br/> + Add virCapsGuestMachine structure (Mark McLoughlin),<br/> + Add virsh commands for network interface management (Laine Stump),<br/> + Allow autostart of libvirtd to be disabled with LIBVIRT_AUTOSTART=0 (Daniel P. Berrange),<br/> + Allow leading dots in VMX config entry names (Matthias Bolte),<br/> + Assign names to qemu NICs and network backends (Mark McLoughlin),<br/> + Basic qemu NIC hotplug support (Mark McLoughlin),<br/> + build: adjust aclocal's search patch to prefer gnulib's m4 files. (Jim Meyering),<br/> + build: automatically rerun ./bootstrap when needed (Jim Meyering),<br/> + build: make autogen.sh use autoreconf -if (Jim Meyering),<br/> + build: submodule machinery now works also when no tag is reachable (Jim Meyering),<br/> + Canonicalize qemu machine types (Mark McLoughlin),<br/> + Change code generator to give async event messages their own postfix (Daniel P. Berrange),<br/> + Change the way client event loop watches are managed (Daniel P. Berrange),<br/> + Decode incoming request header before invoking dispatch code (Daniel P. Berrange),<br/> + Define an API for registering incoming message dispatch filters (Daniel P. Berrange),<br/> + ESX driver accept VI API version 4.0 (Matthias Bolte),<br/> + Fill in vCPU - pCPU current mapping, and vCPU cpuTime for QEMU (Daniel P. Berrange),<br/> + generate ChangeLog from git logs into distribution tarball (Jim Meyering),<br/> + Implement qemu dump capabilities (Paolo Bonzini),<br/> + Implement schedular tunables API using cgroups (Daniel P. Berrange),<br/> + Implement the new virinterface functions (Laine Stump),<br/> + Make cgroups a little more efficient (Daniel P. Berrange),<br/> + Make it easier to debug tests running programs (Daniel P. Berrange),<br/> + Make qemuBuildHostNetStr() take tapfd as a string (Mark McLoughlin),<br/> + Make QEMU cgroups use configurable (Daniel P. Berrange),<br/> + Make qemuCmdFlags available in qemudDomainAttachDevice() (Mark McLoughlin),<br/> + Move queuing of RPC replies into dispatch code (Daniel P. Berrange),<br/> + Move vnet_hdr logic into qemudNetworkIfaceConnect() and export it (Mark McLoughlin),<br/> + Netcf based interface driver implementation (Laine Stump),<br/> + netcf XML validation and input and output tests (Daniel Veillard),<br/> + Only probe qemu for machine types when binary changes (Mark McLoughlin),<br/> + Place every QEMU guest in a private cgroup (Daniel P. Berrange),<br/> + Probe for QEMU machine types (Mark McLoughlin),<br/> + Probe QEMU directly for machine aliases if not found in capabilties (Mark McLoughlin),<br/> + Public API for new virInterface functions (Laine Stump),<br/> + python: Raise exceptions if virDomain*Stats fail. (Cole Robinson),<br/> + Refactor cgroups to allow a group per driver to be managed directly (Daniel P. Berrange),<br/> + Re-factor pci_add reply parsing and parse domain/bus numbers (Mark McLoughlin),<br/> + Retain disk PCI address across libvirtd restarts (Mark McLoughlin),<br/> + Retain PCI address from NIC attach (Mark McLoughlin),<br/> + Run QEMU guests as an unprivileged user (Daniel P. Berrange),<br/> + Separate code for encoding outgoing remote message headers (Daniel P. Berrange),<br/> + Split generic RPC message dispatch code out from remote protocol API handlers (Daniel P. Berrange),<br/> + Split out code for handling incoming method call messages (Daniel P. Berrange),<br/> + storage: Break out actual raw cloning to separate function. (Cole Robinson),<br/> + storage: cleanup: do away with 'createFile' (Cole Robinson),<br/> + storage: disk: Use capacity, not allocation, when creating volume. (Cole Robinson),<br/> + storage: Don't try sparse detection if writing to block device. (Cole Robinson),<br/> + storage: Implement 'CreateBlockFrom' helper. (Cole Robinson),<br/> + storage: Implement CreateVolFrom for logical and disk backend. (Cole Robinson),<br/> + storage: Move most of the FS creation functions to common backend. (Cole Robinson),<br/> + storage: Refactor FS backend 'create' function choosing. (Cole Robinson),<br/> + Store the interface vlan number in the domain state (Mark McLoughlin),<br/> + Support video element for QEMU guests (Daniel P. Berrange),<br/> + Support video tag for defining VGA card properties (Daniel P. Berrange),<br/> + Switch to using a unix socket for the qemu monitor (Mark McLoughlin),<br/> + test: Generate net interface names when assigning XML. (Cole Robinson),<br/> + test: Implement BlockStats and InterfaceStats (Cole Robinson),<br/> + Use cgroups for block device whitelisting in QEMU guests (Daniel P. Berrange),<br/> + Use enums for cgroup controller types / labels (Daniel P. Berrange),<br/> + Use sendmsg() on QEMU monitor socket (Mark McLoughlin),<br/> + Use virDomainChrTypeFromString() instead of open coding (Mark McLoughlin),<br/> + Use virFileReadAll/virFileWriteStr for key cgroup read/write helpers (Daniel P. Berrange),<br/> + virGetinterface matching of MAC and interface name (Laine Stump)<br/> + </li> + <li>Cleanups:<br/> + Fix configure checks from previous commits (Daniel P. Berrange),<br/> + Avoid a warning if compiling without inotify (Daniel P. Berrange),<br/> + Remove a stray semicolon (Daniel Veillard),<br/> + Extend the ESX URL to habdle ports and GSX (Matthias Bolte),<br/> + Fix escaping of 8-bit high characters (Daniel P. Berrange),<br/> + Remove ATTRIBUTE_UNUSED from flags to qemudDomainMigratePerform. (Chris Lalancette),<br/> + Add a comment about setting errors after qemudStartVMDaemon(). (Chris Lalancette),<br/> + Fix an erroneous debug error to KVM; it should read QEMU/KVM. (Chris Lalancette),<br/> + Remove a stray semicolon in qemudDomainMigratePrepare2. (Chris Lalancette),<br/> + Convert a few stray users of free() in libvirt.c to VIR_FREE(). (Chris Lalancette),<br/> + Use virGetHostname instead of gethostname. (Chris Lalancette),<br/> + Fix up a minor indentation issue with virDomainMigratePrepare. (Chris Lalancette),<br/> + Fix up a silly typo in apibuild.py. (Chris Lalancette),<br/> + Avoid warning when compiling without IFF_VNET_HDR (Maximilian Wilhelm),<br/> + Capilize libvirt-client summary (Mark McLoughlin),<br/> + Move ldconfig calls to libvirt-client %post/%postun (Mark McLoughlin),<br/> + Convert NEWS to UTF-8 (Mark McLoughlin),<br/> + Fix trailing whitespace in NEWS (Mark McLoughlin),<br/> + No need to build require both python-devel and python (Mark McLoughlin),<br/> + Remove executable perms from /etc/sysconfig/libvirtd (Mark McLoughlin),<br/> + Use a %postun -p for one line scriptlet (Mark McLoughlin),<br/> + Don't explicitly require libxml2 (Mark McLoughlin),<br/> + Fix some unowned directories (Mark McLoughlin),<br/> + Kill qemu BuildRequires (Mark McLoughlin),<br/> + Enable netcf by default (Mark McLoughlin),<br/> + Default to with_polkit (Mark McLoughlin),<br/> + Make vbox support configurable (Mark McLoughlin),<br/> + Build with --without-capng if capng is disabled (Mark McLoughlin),<br/> + BuildRequires libcap-ng-devel not capng-devel (Mark McLoughlin),<br/> + Drop curl host check when using ESX without check (Shahar Klein),<br/> + Fix typo in xen capabilities code (Daniel P. Berrange),<br/> + Add bare format string to printf-derivatives troubles (Laine Stump),<br/> + Add phyp files to POTFILES, to make syntax-check happy. (Cole Robinson),<br/> + avoid a make distcheck failure: distribute docs/schemas/interface.rng (Jim Meyering),<br/> + avoid a make distcheck failure: distribute tests/interfaceschemadata/ (Jim Meyering),<br/> + avoid a "make syntax-check" failure (Jim Meyering),<br/> + build: do not emit a trailing blank line into VC'd file, NEWS (Jim Meyering),<br/> + build: update from gnulib, for latest maint.mk (Jim Meyering),<br/> + Clean up error handling in qemudDomainAttachNetDevice() (Mark McLoughlin),<br/> + Cleanup qemu binary detection logic in qemudCapsInitGuest() (Mark McLoughlin),<br/> + Commit newly generated docs, after changes from commit 2348cf. (Cole Robinson),<br/> + Factor qemuBuildHostNetStr() out from qemuBuildCommandLine() (Mark McLoughlin),<br/> + Factor qemuBuildNicStr() out from qemuBuildCommandLine() (Mark McLoughlin),<br/> + Factor qemudMonitorSend() out of qemudMonitorCommandExtra() (Mark McLoughlin),<br/> + Fix cgroup compile warnings (Daniel P. Berrange),<br/> + Fix misc build problems due to new drivers (Daniel P. Berrange),<br/> + Fix weird build problems due to autopoint overwriting gnulib m4 (Daniel P. Berrange),<br/> + Makefile.cfg: Rename to... (Jim Meyering),<br/> + make .gnulib a submodule (Jim Meyering),<br/> + make "make syntax-check" consistent with "git diff --check" (Jim Meyering),<br/> + Minor qemu monitor coding style fixes (Mark McLoughlin),<br/> + Prepare to use maint.mk from gnulib (Jim Meyering),<br/> + Refactor incoming message handling to prepare for data stream support (Daniel P. Berrange),<br/> + Refactor message sending to allow code reuse for data streams (Daniel P. Berrange),<br/> + remove all .cvsignore files (Jim Meyering),<br/> + remove all trailing blank lines (Jim Meyering),<br/> + Remove some unused variables and cut long lines (Daniel Veillard),<br/> + Remove trailing blank lines (Daniel Veillard),<br/> + Rename a bunch of internal methods to clarify their meaning (Daniel P. Berrange),<br/> + Rename 'direction' to 'type' in remote_message_header (Daniel P. Berrange),<br/> + Report the object name on lookup error (Daniel Veillard),<br/> + Simplify remote driver error reporting (Daniel P. Berrange),<br/> + skip some of gnulib's new rules (Jim Meyering),<br/> + use automake-1.11's silent-rules option, when possible (Jim Meyering),<br/> + use gnumakefile and maintainer-makefile modules from gnulib (Jim Meyering)<br/> + </li> </ul> <h3>0.6.5: Jul 3 2009</h3> <ul> - <li>New features: create storage columes on disk backend (Henrik Persson), - drop of capabilities based on libcap-ng when possible (Daniel - Berrange)</li> - <li>Portability: fix build on non-Linux targets (Daniel Berrange)</li> - <li>Documentation: typo and english fixes (Runa Bhattacharjee and - Garry Dolley), Docs on extending APIs (Dave Allan), cleanup - of debug and logging documentation (Amy Griffis), add - HACKING doc to the website (Daniel Berrange), - documentation for OpenNebula driver (Abel Miguez Rodriguez)</li> - <li>Bug fixes: forbid autostart on transcient networks, - xen device removal crash (Daniel Berrange), re-detection of - transient VMs after libvirtd restart(Daniel Berrange), - bug in virFindFileInPath (Daniel Berrange), handle new - availheap sysctl in Xen (Daniel Berrange), allow USB hostdev - product 0 (Cole Robinson), cleanup when creating a storage pool - fails (Henrik Persson), domain id fix on redefinition in - test driver (Cole Robinson), fix raw storage allocation (Cole - Robinson), memory reporting for inactive qemu drivers (Cole - Robinson), segfault if storage pool has no type attribute (Cole - Robinson), OpenNebula compilation issues (Javier Fontan), - dominfo command without security driver (Daniel Berrange), - domain state problems after migration or destroy (Federico - Simoncelli), leak in node device parsing (Dave Allan), - storage pool definitions reading at startup (Cole Robinson), - bogus WWN in NPIV support (David Allan), avoid a segfault with - recent Xen (Sascha), cope with libnuma failures on weird - topologies (Dan Berrange), crash in QEMU driver with bad capabilities - data (Dan Berrange), trying to re-create a pool should not destroy - it (Dave Allan), endless loop in node device XML dump (Cole Robinson), - Re-label shared and readonly images (Dan Berrange)</li> - <li>Improvements: create and destroy NPIV support (David Allan), - networking in UML driver (Daniel Berrange), HAL driver restart - thread safety (Daniel Berrange), capabilities and nodeinfo - APIs for LXC (Daniel Berrange), iNUMA API for VBox (Daniel Berrange), - dynamically search and use kvm-img qemu-img or qcow-create (Doug - Goldstein), fix qemu and kvm version parsing (Mark McLoughlin), - serial number for HAL storage (Dave Allan), improve error reporting - for virConnectOpen URIs (Daniel Berrange), include OS driver name - in device XML (Daniel Berrange), fix qemu command flags fetching - (Cole Robinson), check that qemu support -drive format= (Cole - Robinson), improve emulator detection (Cole Robinson), changes - to config parser to accommodate VMX syntax (Matthias Bolte), - update network schemas and driver for missing elements (Satoru SATOH), - avoid changing file context if not needed (Tim Waugh), - skip labelling if no src path (Cole Robinson), add arm emulation - if qemu-system-arm is present (C.J. Adams-Collier)</li> - <li>Cleanups: daemon check logging env variables (Daniel Berrange), - User Mode Linux start and stop cleanups (Daniel Berrange), - share the NUMA api implementations (Daniel Berrange), storage - module dependancies (Dave Allan), refactor storage XML parsing - (Cole Robinson), big cleanup of logging code (Amy Griffis), - superfluous % on format (Matthias Bolte), cleanups and updates - on OpenNebula driver (Daniel Berrange and Abel Miguez Rodriguez)</li> + <li>New features:<br/> + create storage columes on disk backend (Henrik Persson),<br/> + drop of capabilities based on libcap-ng when possible (Daniel Berrange)<br/> + </li> + <li>Portability:<br/> + fix build on non-Linux targets (Daniel Berrange)<br/> + </li> + <li>Documentation:<br/> + typo and english fixes (Runa Bhattacharjee and Garry Dolley),<br/> + Docs on extending APIs (Dave Allan),<br/> + cleanup of debug and logging documentation (Amy Griffis),<br/> + add HACKING doc to the website (Daniel Berrange),<br/> + documentation for OpenNebula driver (Abel Miguez Rodriguez)<br/> + </li> + <li>Bug fixes:<br/> + forbid autostart on transcient networks,<br/> + xen device removal crash (Daniel Berrange),<br/> + re-detection of transient VMs after libvirtd restart(Daniel Berrange),<br/> + bug in virFindFileInPath (Daniel Berrange),<br/> + handle new availheap sysctl in Xen (Daniel Berrange),<br/> + allow USB hostdev product 0 (Cole Robinson),<br/> + cleanup when creating a storage pool fails (Henrik Persson),<br/> + domain id fix on redefinition in test driver (Cole Robinson),<br/> + fix raw storage allocation (Cole Robinson),<br/> + memory reporting for inactive qemu drivers (Cole Robinson),<br/> + segfault if storage pool has no type attribute (Cole Robinson),<br/> + OpenNebula compilation issues (Javier Fontan),<br/> + dominfo command without security driver (Daniel Berrange),<br/> + domain state problems after migration or destroy (Federico Simoncelli),<br/> + leak in node device parsing (Dave Allan),<br/> + storage pool definitions reading at startup (Cole Robinson),<br/> + bogus WWN in NPIV support (David Allan),<br/> + avoid a segfault with recent Xen (Sascha),<br/> + cope with libnuma failures on weird topologies (Dan Berrange),<br/> + crash in QEMU driver with bad capabilities data (Dan Berrange),<br/> + trying to re-create a pool should not destroy it (Dave Allan),<br/> + endless loop in node device XML dump (Cole Robinson),<br/> + Re-label shared and readonly images (Dan Berrange)<br/> + </li> + <li>Improvements:<br/> + create and destroy NPIV support (David Allan),<br/> + networking in UML driver (Daniel Berrange),<br/> + HAL driver restart thread safety (Daniel Berrange),<br/> + capabilities and nodeinfo APIs for LXC (Daniel Berrange),<br/> + iNUMA API for VBox (Daniel Berrange),<br/> + dynamically search and use kvm-img qemu-img or qcow-create (Doug Goldstein),<br/> + fix qemu and kvm version parsing (Mark McLoughlin),<br/> + serial number for HAL storage (Dave Allan),<br/> + improve error reporting for virConnectOpen URIs (Daniel Berrange),<br/> + include OS driver name in device XML (Daniel Berrange),<br/> + fix qemu command flags fetching (Cole Robinson),<br/> + check that qemu support -drive format= (Cole Robinson),<br/> + improve emulator detection (Cole Robinson),<br/> + changes to config parser to accommodate VMX syntax (Matthias Bolte),<br/> + update network schemas and driver for missing elements (Satoru SATOH),<br/> + avoid changing file context if not needed (Tim Waugh),<br/> + skip labelling if no src path (Cole Robinson),<br/> + add arm emulation if qemu-system-arm is present (C.J. Adams-Collier)<br/> + </li> + <li>Cleanups:<br/> + daemon check logging env variables (Daniel Berrange),<br/> + User Mode Linux start and stop cleanups (Daniel Berrange),<br/> + share the NUMA api implementations (Daniel Berrange),<br/> + storage module dependancies (Dave Allan),<br/> + refactor storage XML parsing (Cole Robinson),<br/> + big cleanup of logging code (Amy Griffis),<br/> + superfluous % on format (Matthias Bolte),<br/> + cleanups and updates on OpenNebula driver (Daniel Berrange and Abel Miguez Rodriguez)<br/> + </li> </ul> <h3>0.6.4: May 29 2009</h3> <ul> - <li>New features: new API virStorageVolCreateXMLFrom (Cole Robinson), - full VBox graphic capabilities (Pritesh Kothari), Interface config - APIs (Laine Stump), APIs for domain XML conversions (Daniel - Berrange), initial version of OpenNebula driver (Abel Miguez - Rodriguez)</li> - <li>Portability: better compiler warning selection (Daniel Berrange), - Win32 portability fixes (Daniel Berrange)</li> - <li>Documentation: documentation for <sound> device XML format (Cole - Robinson), storage format documentation fixes (Ryota Ozaki), - docs for XML conversion APIs (Daniel Berrange), inconsistencies - in storage volume docs and schemas (Ryota Ozaki)</li> - <li>Bug fixes: fix hostdev managed handling (Mark McLoughlin), - lxc_controller should not cash without args (Guido Gunther), - bug fixes in I/O routines (Guido Gunther), fix migrationsave/restore - for QEmu 0.10.0 (Daniel Berrange), avoid crash on VBox init - (Guido Gunther), fix dev and cgroup init in LXC (Ryota Ozaki), - QEmu startup fix (Cole Robinson), block node reboots from LXCs (Ryota - Ozaki), QEmu argv detection fix for recent kvm (Daniel Berrange), - fix watch/timer event deletion (Daniel Berrange), fix XML escaping - bug, various locking bugs (Daniel Berrange), avoid a deadlock in - HAL nodedev driver (Cole Robinson), detection of node device media - insert/eject (Cole Robinson), broken networking with new QEMU/KVM - >= 86 (Daniel Berrange), various fixes in domain and network - startup error report (Cole Robinson), double free on unexpected - client disconnect (Daniel Berrange)</li> - <li>Improvements: cleanups and doc on virExec (Cole Robinson), error - reporting in QEmu migrations (Cole Robinson), better path and driver - detection in VBox (Pritesh Kothari), avoid caching QEMU driver - capabilities(Cole Robinson), multiple graphics elements definitions - (Pritesh Kothari), LSB init header init.d improvements (Frederik - Himpe), special erro code for invalid operations (Daniel Berrange), - dlopen error logging (Daniel Berrange), fix UUID and name uniqueness - (Daniel Berrange), improvement on VBox initialization (Pritesh - Kothari and Dan Berrange), "Host only" and "Internal" network in VBox - (Pritesh Kothari), add utility virExecDaemonize (Cole Robinson), - enable bridges without IP (Ludwig Nussel), 'make -s' silencing - (Daniel Berrange), test case for exercising the event loop (Daniel - Berrange), virsh commands vol-clone and vol-create-from (Cole - Robinson), new xend don't use [] around cpumaps (Tatsuro Enokura), - add the CIL mutex lock checker (Daniel Berrange), fix some LXC - error code (Amy Griffis), virInterface python bindings (Daniel - Berrange), fix to the example code for event handling (Pritesh - Kothari), always add location informations to logging (Daniel - Berrange), python domain events example and binding (Daniel - Berrange), PPC Qemu Machine Type update (Thomas Baker)</li> - <li>Cleanups: strings bug in virsh (Daniel Berrange), various cleanups - in storage code (Cole Robinson), rpm spec cleanups, destructors - data cleanups (Laine Stump), some QEmu code refactoring (Daniel - Berrange), avoid dependancy on libcap (Daniel Berrange), python - import cleanup (Cole Robinson), virAsprintf based cleanups in - storage code (Cole Robinson), fix some direct stderr logging, - OpenNebula driver cleanups (Daniel Berrange)</li> + <li>New features:<br/> + new API virStorageVolCreateXMLFrom (Cole Robinson),<br/> + full VBox graphic capabilities (Pritesh Kothari),<br/> + Interface config APIs (Laine Stump),<br/> + APIs for domain XML conversions (Daniel Berrange),<br/> + initial version of OpenNebula driver (Abel Miguez Rodriguez)<br/> + </li> + <li>Portability:<br/> + better compiler warning selection (Daniel Berrange),<br/> + Win32 portability fixes (Daniel Berrange)<br/> + </li> + <li>Documentation:<br/> + documentation for <sound> device XML format (Cole Robinson),<br/> + storage format documentation fixes (Ryota Ozaki),<br/> + docs for XML conversion APIs (Daniel Berrange),<br/> + inconsistencies in storage volume docs and schemas (Ryota Ozaki)<br/> + </li> + <li>Bug fixes:<br/> + fix hostdev managed handling (Mark McLoughlin),<br/> + lxc_controller should not cash without args (Guido Gunther),<br/> + bug fixes in I/O routines (Guido Gunther),<br/> + fix migrationsave/restore for QEmu 0.10.0 (Daniel Berrange),<br/> + avoid crash on VBox init (Guido Gunther),<br/> + fix dev and cgroup init in LXC (Ryota Ozaki),<br/> + QEmu startup fix (Cole Robinson),<br/> + block node reboots from LXCs (Ryota Ozaki),<br/> + QEmu argv detection fix for recent kvm (Daniel Berrange),<br/> + fix watch/timer event deletion (Daniel Berrange),<br/> + fix XML escaping bug,<br/> + various locking bugs (Daniel Berrange),<br/> + avoid a deadlock in HAL nodedev driver (Cole Robinson),<br/> + detection of node device media insert/eject (Cole Robinson),<br/> + broken networking with new QEMU/KVM >= 86 (Daniel Berrange),<br/> + various fixes in domain and network startup error report (Cole Robinson),<br/> + double free on unexpected client disconnect (Daniel Berrange)<br/> + </li> + <li>Improvements:<br/> + cleanups and doc on virExec (Cole Robinson),<br/> + error reporting in QEmu migrations (Cole Robinson),<br/> + better path and driver detection in VBox (Pritesh Kothari),<br/> + avoid caching QEMU driver capabilities(Cole Robinson),<br/> + multiple graphics elements definitions (Pritesh Kothari),<br/> + LSB init header init.d improvements (Frederik Himpe),<br/> + special erro code for invalid operations (Daniel Berrange),<br/> + dlopen error logging (Daniel Berrange),<br/> + fix UUID and name uniqueness (Daniel Berrange),<br/> + improvement on VBox initialization (Pritesh Kothari and Dan Berrange),<br/> + "Host only" and "Internal" network in VBox (Pritesh Kothari),<br/> + add utility virExecDaemonize (Cole Robinson),<br/> + enable bridges without IP (Ludwig Nussel),<br/> + 'make -s' silencing (Daniel Berrange),<br/> + test case for exercising the event loop (Daniel Berrange),<br/> + virsh commands vol-clone and vol-create-from (Cole Robinson),<br/> + new xend don't use [] around cpumaps (Tatsuro Enokura),<br/> + add the CIL mutex lock checker (Daniel Berrange),<br/> + fix some LXC error code (Amy Griffis),<br/> + virInterface python bindings (Daniel Berrange),<br/> + fix to the example code for event handling (Pritesh Kothari),<br/> + always add location informations to logging (Daniel Berrange),<br/> + python domain events example and binding (Daniel Berrange),<br/> + PPC Qemu Machine Type update (Thomas Baker)<br/> + </li> + <li>Cleanups:<br/> + strings bug in virsh (Daniel Berrange),<br/> + various cleanups in storage code (Cole Robinson),<br/> + rpm spec cleanups,<br/> + destructors data cleanups (Laine Stump),<br/> + some QEmu code refactoring (Daniel Berrange),<br/> + avoid dependancy on libcap (Daniel Berrange),<br/> + python import cleanup (Cole Robinson),<br/> + virAsprintf based cleanups in storage code (Cole Robinson),<br/> + fix some direct stderr logging,<br/> + OpenNebula driver cleanups (Daniel Berrange)<br/> + </li> </ul> <h3>0.6.3: Apr 24 2009</h3> <ul> - <li>New features: VirtualBox driver support (Pritesh Kothari), - virt-xml-validate new command (Daniel Berrange)</li> - <li>Portability: patch to build on Centos (Joseph Shraibman), - build breakage (Anton Protopopov), </li> - <li>Documentation: Linux Containers documentation (Serge Hallyn), - improvement and updates of architecture pages, fix - virNodeGetFreeMemory documentation to reflect reality, - man page cleanups (Daniel Berrange), man page typo - (Robert P. J. Day), VirtualBox Documentation (Pritesh Kothari), - </li> - <li>Bug fixes: veth off-by-one error (Dan Smith), vcpupin to inactive - Xen crash (Takahashi Tomohiro), virsh ttyconsole return value, - use format= not fmt= on QEmu commandline (Mark McLoughlin), - use UUID for internal domain lookups (Daniel Berrange), remote - domain ID related bugs (Daniel Berrange), QEmu pidfile handling - bugs (Daniel Berrange), network config handling on old Xen (Daniel - Berrange)</li> - <li>Improvements: add SCSI storage rescan (David Allan), rootless - LXC containers support improvements (Serge Hallyn), getHostname - support for LXC (Dan Smith), cleanup and logging output of some - domain functions (Guido Günther), drop pool lock when allocating - volumes (Cole Robinson), LXC handle kernel without CLONE_NEWUSER - support (Serge Hallyn), cpu pinning on defined Xen domains (Takahashi - Tomohiro), dynamic bridge names support (Soren Hansen), LXC use - of private /dev/pts when available (Daniel Berrange), - virNodeDeviceCreateXML and virNodeDeviceDestroy entry points - (Dave Allan)</li> - <li>Cleanups: don't hardcode getgrnam_r buffer to 1024 bytes (Guido - Günther), qemudBuildCommandLine API cleanup (Daniel Berrange), - </li> + <li>New features:<br/> + VirtualBox driver support (Pritesh Kothari),<br/> + virt-xml-validate new command (Daniel Berrange)<br/> + </li> + <li>Portability:<br/> + patch to build on Centos (Joseph Shraibman),<br/> + build breakage (Anton Protopopov)<br/> + </li> + <li>Documentation:<br/> + Linux Containers documentation (Serge Hallyn),<br/> + improvement and updates of architecture pages,<br/> + fix virNodeGetFreeMemory documentation to reflect reality,<br/> + man page cleanups (Daniel Berrange),<br/> + man page typo (Robert P. J. Day),<br/> + VirtualBox Documentation (Pritesh Kothari)<br/> + </li> + <li>Bug fixes:<br/> + veth off-by-one error (Dan Smith),<br/> + vcpupin to inactive Xen crash (Takahashi Tomohiro),<br/> + virsh ttyconsole return value,<br/> + use format= not fmt= on QEmu commandline (Mark McLoughlin),<br/> + use UUID for internal domain lookups (Daniel Berrange),<br/> + remote domain ID related bugs (Daniel Berrange),<br/> + QEmu pidfile handling bugs (Daniel Berrange),<br/> + network config handling on old Xen (Daniel Berrange)<br/> + </li> + <li>Improvements:<br/> + add SCSI storage rescan (David Allan),<br/> + rootless LXC containers support improvements (Serge Hallyn),<br/> + getHostname support for LXC (Dan Smith),<br/> + cleanup and logging output of some domain functions (Guido Günther),<br/> + drop pool lock when allocating volumes (Cole Robinson),<br/> + LXC handle kernel without CLONE_NEWUSER support (Serge Hallyn),<br/> + cpu pinning on defined Xen domains (Takahashi Tomohiro),<br/> + dynamic bridge names support (Soren Hansen),<br/> + LXC use of private /dev/pts when available (Daniel Berrange),<br/> + virNodeDeviceCreateXML and virNodeDeviceDestroy entry points (Dave Allan)<br/> + </li> + <li>Cleanups:<br/> + don't hardcode getgrnam_r buffer to 1024 bytes (Guido Günther),<br/> + qemudBuildCommandLine API cleanup (Daniel Berrange)<br/> + </li> </ul> <h3>0.6.2: Apr 3 2009</h3> <ul> - <li>New features: support SASL auth for VNC server (Daniel Berrange), - memory ballooning in QEMU (Daniel Berrange), SCSI HBA storage pool - support (Dave Allan), PCI passthrough in Xen driver (Daniel - Berrange)</li> - <li>Portability: be more flexible in QEmu binaries paths (Daniel - Berrange), Mingw portability fixes (Daniel Berrange),</li> - <li>Documentation: add security attributes in RNG schemas, cleanup - of architecture docs, missing disk bus values in RNG schemas,</li> - <li>Bug fixes: tap vs vbd type on block detach (Cole Robinson and - Takahashi Tomohiro), bad free on storage volume error (Daniel - Berrange), maplenght computations in remote driver (Daniel Berrange), - event dispatching in the daemon (Daniel Berrange), virDomainSetVcpus - deadlock (Daniel Berrange), save deadlock in test driver (Cole - Robinson), fix timing of security driver init (Cole Robinson), - forbid readonly connections from dumping the XML safe info (Cole - Robinson), file descriptor leak on remote access, - fix labelling of shared/readonly devices (Dan Walsh), - virsh missing auth on shell commands (Matthias Bolte), - avoid zombie on exec pipe errors (Ryota Ozaki), - memory leak in virNodeDeviceGetParent (Daniel Berrange), - URI check in migration (Daniel Berrange), various memory bug fixes - (Daniel Berrange), python bindings generator fix (Daniel Berrange), - NUMA memory fixes (Daniel Berrange), various svirt fixes (Daniel - Berrange), fix sparse volume allocation reporting (Cole Robinson), - test driver domain restore return value (Cole Robinson), - do not lose file format info on volume refresh (Cole Robinson)</li> - <li>Improvements: get CPU usage info for LXC (Ryota Ozaki), fix domain - RNG to add ac97 and tests (Pritesh Kothari), OpenVZ support for - non-template filesystem root (Florian Vichot), improve arch - capabilities generation (Daniel Berrange), modularization of spec - file (Ryota Ozaki), better error reports in SEXPR generation (Daniel - Berrange), support for vifname parameter in VIF config (Daniel - Berrange), localtime handling for new xen (Daniel Berrange), - error reporting/ verification of security labels (Dan Walsh), - add --console arg for create and start virsh commands (Daniel - Berrange), refresh volume alloc/capacity when dumping XML (Cole - Robinson)</li> - <li>Cleanups: FILE * leaks removal, unused parameters flagging - (Maximilian Wilhelm), switch to pre-C99 struct initialization - for drivers (Chris Lalancette), symlinks resolving cleanup (Daniel - Berrange)</li> + <li>New features:<br/> + support SASL auth for VNC server (Daniel Berrange),<br/> + memory ballooning in QEMU (Daniel Berrange),<br/> + SCSI HBA storage pool support (Dave Allan),<br/> + PCI passthrough in Xen driver (Daniel Berrange)<br/> + </li> + <li>Portability:<br/> + be more flexible in QEmu binaries paths (Daniel Berrange),<br/> + Mingw portability fixes (Daniel Berrange)<br/> + </li> + <li>Documentation:<br/> + add security attributes in RNG schemas,<br/> + cleanup of architecture docs,<br/> + missing disk bus values in RNG schemas<br/> + </li> + <li>Bug fixes:<br/> + tap vs vbd type on block detach (Cole Robinson and Takahashi Tomohiro),<br/> + bad free on storage volume error (Daniel Berrange),<br/> + maplenght computations in remote driver (Daniel Berrange),<br/> + event dispatching in the daemon (Daniel Berrange),<br/> + virDomainSetVcpus deadlock (Daniel Berrange),<br/> + save deadlock in test driver (Cole Robinson),<br/> + fix timing of security driver init (Cole Robinson),<br/> + forbid readonly connections from dumping the XML safe info (Cole Robinson),<br/> + file descriptor leak on remote access,<br/> + fix labelling of shared/readonly devices (Dan Walsh),<br/> + virsh missing auth on shell commands (Matthias Bolte),<br/> + avoid zombie on exec pipe errors (Ryota Ozaki),<br/> + memory leak in virNodeDeviceGetParent (Daniel Berrange),<br/> + URI check in migration (Daniel Berrange),<br/> + various memory bug fixes (Daniel Berrange),<br/> + python bindings generator fix (Daniel Berrange),<br/> + NUMA memory fixes (Daniel Berrange),<br/> + various svirt fixes (Daniel Berrange),<br/> + fix sparse volume allocation reporting (Cole Robinson),<br/> + test driver domain restore return value (Cole Robinson),<br/> + do not lose file format info on volume refresh (Cole Robinson)<br/> + </li> + <li>Improvements:<br/> + get CPU usage info for LXC (Ryota Ozaki),<br/> + fix domain RNG to add ac97 and tests (Pritesh Kothari),<br/> + OpenVZ support for non-template filesystem root (Florian Vichot),<br/> + improve arch capabilities generation (Daniel Berrange),<br/> + modularization of spec file (Ryota Ozaki),<br/> + better error reports in SEXPR generation (Daniel Berrange),<br/> + support for vifname parameter in VIF config (Daniel Berrange),<br/> + localtime handling for new xen (Daniel Berrange),<br/> + error reporting/ verification of security labels (Dan Walsh),<br/> + add --console arg for create and start virsh commands (Daniel Berrange),<br/> + refresh volume alloc/capacity when dumping XML (Cole Robinson)<br/> + </li> + <li>Cleanups:<br/> + FILE * leaks removal,<br/> + unused parameters flagging (Maximilian Wilhelm),<br/> + switch to pre-C99 struct initialization for drivers (Chris Lalancette),<br/> + symlinks resolving cleanup (Daniel Berrange)<br/> + </li> </ul> <h3>0.6.1: Mar 3 2009</h3> <ul> - <li>New features: new APIs for Node device detach reattach and reset - (Mark McLoughlin), sVirt mandatory access control support (James - Morris and Dan Walsh)</li> - <li>Portability: non gcc toolchain (John Levon), gcc-4.4 warnings fixes - (Mark McLoughlin), fix build without LXC and QEmu (Jim Meyering)</li> - <li>Documentation: man page bugzilla URL (Mark McLoughlin), typo - in domain format (Jesse Farinacci), clock offset fix (Mark - McLoughlin), hostdev description typo (Mark McLoughlin), static - host IP (Charles Duffy), new example program (David Allan)</li> - <li>Bug fixes: NULL dereference in LXC (Jim Meyering), fix domain - error reporting (John Levon), fix loop of libvirtd --timeout - (Daniel Berrange), limit history to 500 to restrict virsh memory - (Daniel Berrange), wrong lvm volume format check (Cole Robinson), - I/O error in daemon and associated remote acces crash (Daniel - Berrange), fix autostart of session daemon (Daniel Berrange), - restart guest on qemu migration failures (Chris Lalancette), - config parsing leaks (Ryota Ozaki), DBus multithreading activation - to avoid crashes (Daniel Berrange), mark defined network descriptions - as persistent (Cole Robinson), qemu+tls handshake negotiation hang - (Chris Lalancette)</li> - <li>Improvements: don't hardcode ssh port (Guido Günther), new test - cases and testing infrastructure (Jim Meyering), improve the - SExpr parser (John Levon), proper error reporting on xend - shutdown command (John Levon), proper handling of errors when - saving QEmu domains state (Guido Günther), revamp of the internal - error memory APIs (John Levon), better virsh error reporting (John - Levon), more daemon options to allow running multiple daemons (Jim - Meyering), error handling when creating a QEmu domain (Guido Günther), - fix timeouts in QEmu log reading (Guido Günther), migration with - xend 3.3 fixes (John Levon), virsh XML dump flags cleanup (Cole - Robinson), fix build with loadable drivers (Maximilian Wilhelm), - internal XML APIs to read long long and hexa values (Mark - McLoughlin), function to parse node device XML descriptions and - associated test (Mark McLoughlin), generate network bridge names if - not provided (Cole Robinson), recognize ejectable media in hostdev - hal driver (Cole Robinson), integration of sVirt (Daniel Berrange)</li> - <li>Cleanups: printf NULL string checks (John Levon), remove uses of - strerror and use virStrerror (Jim Meyering), remove redundant NULL - assignments (Jim Meyering), QEmu driver logging and exec cleanups - (Jim Meyering), many error handling cleanups (Jim Meyering), XML - module cleanups (Mark McLoughlin), compiler warning (Maximilian - Wilhelm), daemon TCP listen cleanup (Cole Robinson), size_t type - cleanup (Guido Günther), parallel make fix (Michael Marineau), - storage error diagnostic fix (Ryota Ozaki), remove redundant monitor - watch variable (Cole Robinson), qemu AttachDevice error report - improvement (Cole Robinson), virsh output cleanup (Jim Meyering), - various tests cleanups and improvements (Jim Meyering), fix the - internal export list with new APIs (Daniel Berrange), cleanups on - new APIs for Node device (Daniel Berrange)</li> + <li>New features:<br/> + new APIs for Node device detach reattach and reset (Mark McLoughlin),<br/> + sVirt mandatory access control support (James Morris and Dan Walsh)<br/> + </li> + <li>Portability:<br/> + non gcc toolchain (John Levon),<br/> + gcc-4.4 warnings fixes (Mark McLoughlin),<br/> + fix build without LXC and QEmu (Jim Meyering)<br/> + </li> + <li>Documentation:<br/> + man page bugzilla URL (Mark McLoughlin),<br/> + typo in domain format (Jesse Farinacci),<br/> + clock offset fix (Mark McLoughlin),<br/> + hostdev description typo (Mark McLoughlin),<br/> + static host IP (Charles Duffy),<br/> + new example program (David Allan)<br/> + </li> + <li>Bug fixes:<br/> + NULL dereference in LXC (Jim Meyering),<br/> + fix domain error reporting (John Levon),<br/> + fix loop of libvirtd --timeout (Daniel Berrange),<br/> + limit history to 500 to restrict virsh memory (Daniel Berrange),<br/> + wrong lvm volume format check (Cole Robinson),<br/> + I/O error in daemon and associated remote acces crash (Daniel Berrange),<br/> + fix autostart of session daemon (Daniel Berrange),<br/> + restart guest on qemu migration failures (Chris Lalancette),<br/> + config parsing leaks (Ryota Ozaki),<br/> + DBus multithreading activation to avoid crashes (Daniel Berrange),<br/> + mark defined network descriptions as persistent (Cole Robinson),<br/> + qemu+tls handshake negotiation hang (Chris Lalancette)<br/> + </li> + <li>Improvements:<br/> + don't hardcode ssh port (Guido Günther),<br/> + new test cases and testing infrastructure (Jim Meyering),<br/> + improve the SExpr parser (John Levon),<br/> + proper error reporting on xend shutdown command (John Levon),<br/> + proper handling of errors when saving QEmu domains state (Guido Günther),<br/> + revamp of the internal error memory APIs (John Levon),<br/> + better virsh error reporting (John Levon),<br/> + more daemon options to allow running multiple daemons (Jim Meyering),<br/> + error handling when creating a QEmu domain (Guido Günther),<br/> + fix timeouts in QEmu log reading (Guido Günther),<br/> + migration with xend 3.3 fixes (John Levon),<br/> + virsh XML dump flags cleanup (Cole Robinson),<br/> + fix build with loadable drivers (Maximilian Wilhelm),<br/> + internal XML APIs to read long long and hexa values (Mark McLoughlin),<br/> + function to parse node device XML descriptions and associated test (Mark McLoughlin),<br/> + generate network bridge names if not provided (Cole Robinson),<br/> + recognize ejectable media in hostdev hal driver (Cole Robinson),<br/> + integration of sVirt (Daniel Berrange)<br/> + </li> + <li>Cleanups:<br/> + printf NULL string checks (John Levon),<br/> + remove uses of strerror and use virStrerror (Jim Meyering),<br/> + remove redundant NULL assignments (Jim Meyering),<br/> + QEmu driver logging and exec cleanups (Jim Meyering),<br/> + many error handling cleanups (Jim Meyering),<br/> + XML module cleanups (Mark McLoughlin),<br/> + compiler warning (Maximilian Wilhelm),<br/> + daemon TCP listen cleanup (Cole Robinson),<br/> + size_t type cleanup (Guido Günther),<br/> + parallel make fix (Michael Marineau),<br/> + storage error diagnostic fix (Ryota Ozaki),<br/> + remove redundant monitor watch variable (Cole Robinson),<br/> + qemu AttachDevice error report improvement (Cole Robinson),<br/> + virsh output cleanup (Jim Meyering),<br/> + various tests cleanups and improvements (Jim Meyering),<br/> + fix the internal export list with new APIs (Daniel Berrange),<br/> + cleanups on new APIs for Node device (Daniel Berrange)<br/> + </li> </ul> <h3>0.6.0: Jan 31 2009</h3> <ul> - <li>New features: thread safety of the API and event handling (Daniel - Berrange), allow QEmu domains to survive daemon restart (Guido - Günther), extended logging capabilities, support copy-on-write - storage volumes (Daniel Berrange), support of storage cache - control options for QEmu/KVM (Daniel Berrange)</li> - <li>Portability: fix old DBus API problem, Debian portability fix - (Daniel Berrange), fix distcheck (Jim Meyering), build in - debug mode (Jim Meyering), libnuma API portability (Jim Meyering), - many portability fixes pointed by Solaris (John Levon), non-gcc - portability fixes (John Levon), various include fixes (Jim Meyering), - various Windows and Mingw portability fixes (Daniel Berrange), - solaris Xen fixes (John Levon), RPC portability to Solaris (Daniel - Berrange)</li> - <li>Documentation: typo fixes (Richard Jones), logging support, - vnc keymap attributes (Guido Günther), HACKING file updates - (Jim Meyering), new PCI passthrough format, libvirt-qpid and - UML driver documentation (Daniel Berrange), provide RNG schemas - for all XML formats used in libvirt APIs (Daniel Berrange), </li> - <li>Bug fixes: segfault on virtual network without bridge name (Cole - Robinson), various locking fixes (Cole Robinson), fix serial - and parallel devices on tcp/unix/telnet (Guido Günther), leak - in daemon (Jim Meyering), storage driver segfault (Miloslav TrmaC), - missing check in read-only connections (Daniel Berrange), - OpenVZ crash and mutex fixes (Anton Protopopov), couple of - daemon bug fixes (John Levon), OpenVZ MAC addresses generation - (Evgeniy Sokolov), poll call initialization fix (Daniel Berrange), - various Xen driver fixes (John Levon), segfault on device - back compat (Cole Robinson), couple Xen bug fixes coming from - RHEL (Markus Armbruster), buffer overflow in libvirt proxy - (rasputin@email.ru), vnc port report (John Levon), repair save - and restore on recent KVM versions (Daniel Berrange), Xen - cpu pinning XML fix (John Levon), various xen driver fixes - (Daniel Berrange), some memory leak fixes (Daniel Berrange)</li> - <li>Improvements: driver infrastructure and locking (Daniel Berrange), - Test driver infrastructure (Daniel Berrange), parallelism in the - daemon and associated config (Daniel Berrange), virsh help cleanups - (Jim Meyering), logrotate daemon logs (Guido Günther), more - regression tests (Jim Meyering), QEmu SDL graphics (Itamar Heim), - add --version flag to daemon (Dave Allan), memory consumption - cleanup (Dave Allan), QEmu pid file and XML states for daemon - restart (Guido Günther), gnulib updates (Jim Meyering and - Dan Berrange), PCI passthrough for KVM (Jason Krieg), generic - internal thread API (Daniel Berrange), RHEL-5 specific Xen - configure option and code (Markus Armbruster), save domain - state as string in status file (Guido Günther), add locking - to all API entry points (Daniel Berrange), new ref counting APIs - (Daniel Berrange), IP address for Xen bridges (John Levon), - driver format for disk file types (Daniel Berrange), improve - QEmu/KVM tun/tap performances (Mark McLoughlin), enable floppies - for Xen fully virt (John Levon), support VNC password settings - for QEmu/KVM (Daniel Berrange), qemu driver version reporting - (Daniel Berrange) </li> - <li>Cleanups: converting linked lists to arrays (Daniel Berrange), - daemon RPC handling refactoring (Daniel Berrange), strings cleanups - (Jim Meyering), gethostby* cleanup and test (Jim Meyering), some - code fixes (Dave Allan), various code cleanup (Jim Meyering), - virsh argument handling cleanup (Jim Meyering), virAsprintf - cleanup replacement (Guido Günther), QEmu monitor reads (Cole - Robinson), Makefile cleanups (Guido Günther), Xen code cleanups - (John Levon), revamp of ELF export scripts (John Levon), domain - event callback args (John Levon), enforce use of pid_t (John Levon), - virsh pool-*-as XML code merge (Cole Robinson), xgettext warnings - (Jim Meyering), add virKillProcess (Guido Günther), add - virGetHostname (David Lutterkort), add flags argument to the full - XML parsing stack (Guido Günther), various daemon code cleanups - (Guido Günther), handling of daemon missing config file (Jim - Meyering), rpcgen invocation cleanup (Richard Jones), devhelp - builkd makefile cleanups (John Levon), update error handling for - threading (Daniel Berrange), remove all non-rentrant POSIX calls - usage (Daniel Berrange), many small cleanups (Jim Meyering and - Daniel Berrange), examples Makefile generator (John Levon), - mis-use of PF_UNIX as a protocol (John Levon), cleanup OOM - error paths (Jim Meyering), temporary fix fro valgrind on lxc - (Daniel Berrange), QEmu driver init cleanups (Daniel Berrange)</li> + <li>New features:<br/> + thread safety of the API and event handling (Daniel Berrange),<br/> + allow QEmu domains to survive daemon restart (Guido Günther),<br/> + extended logging capabilities,<br/> + support copy-on-write storage volumes (Daniel Berrange),<br/> + support of storage cache control options for QEmu/KVM (Daniel Berrange)<br/> + </li> + <li>Portability:<br/> + fix old DBus API problem,<br/> + Debian portability fix (Daniel Berrange),<br/> + fix distcheck (Jim Meyering),<br/> + build in debug mode (Jim Meyering),<br/> + libnuma API portability (Jim Meyering),<br/> + many portability fixes pointed by Solaris (John Levon),<br/> + non-gcc portability fixes (John Levon),<br/> + various include fixes (Jim Meyering),<br/> + various Windows and Mingw portability fixes (Daniel Berrange),<br/> + solaris Xen fixes (John Levon),<br/> + RPC portability to Solaris (Daniel Berrange)<br/> + </li> + <li>Documentation:<br/> + typo fixes (Richard Jones),<br/> + logging support,<br/> + vnc keymap attributes (Guido Günther),<br/> + HACKING file updates (Jim Meyering),<br/> + new PCI passthrough format,<br/> + libvirt-qpid and UML driver documentation (Daniel Berrange),<br/> + provide RNG schemas for all XML formats used in libvirt APIs (Daniel Berrange)<br/> + </li> + <li>Bug fixes:<br/> + segfault on virtual network without bridge name (Cole Robinson),<br/> + various locking fixes (Cole Robinson),<br/> + fix serial and parallel devices on tcp/unix/telnet (Guido Günther),<br/> + leak in daemon (Jim Meyering),<br/> + storage driver segfault (Miloslav TrmaC),<br/> + missing check in read-only connections (Daniel Berrange),<br/> + OpenVZ crash and mutex fixes (Anton Protopopov),<br/> + couple of daemon bug fixes (John Levon),<br/> + OpenVZ MAC addresses generation (Evgeniy Sokolov),<br/> + poll call initialization fix (Daniel Berrange),<br/> + various Xen driver fixes (John Levon),<br/> + segfault on device back compat (Cole Robinson),<br/> + couple Xen bug fixes coming from RHEL (Markus Armbruster),<br/> + buffer overflow in libvirt proxy (rasputin@email.ru),<br/> + vnc port report (John Levon),<br/> + repair save and restore on recent KVM versions (Daniel Berrange),<br/> + Xen cpu pinning XML fix (John Levon),<br/> + various xen driver fixes (Daniel Berrange),<br/> + some memory leak fixes (Daniel Berrange)<br/> + </li> + <li>Improvements:<br/> + driver infrastructure and locking (Daniel Berrange),<br/> + Test driver infrastructure (Daniel Berrange),<br/> + parallelism in the daemon and associated config (Daniel Berrange),<br/> + virsh help cleanups (Jim Meyering),<br/> + logrotate daemon logs (Guido Günther),<br/> + more regression tests (Jim Meyering),<br/> + QEmu SDL graphics (Itamar Heim),<br/> + add --version flag to daemon (Dave Allan),<br/> + memory consumption cleanup (Dave Allan),<br/> + QEmu pid file and XML states for daemon restart (Guido Günther),<br/> + gnulib updates (Jim Meyering and Dan Berrange),<br/> + PCI passthrough for KVM (Jason Krieg),<br/> + generic internal thread API (Daniel Berrange),<br/> + RHEL-5 specific Xen configure option and code (Markus Armbruster),<br/> + save domain state as string in status file (Guido Günther),<br/> + add locking to all API entry points (Daniel Berrange),<br/> + new ref counting APIs (Daniel Berrange),<br/> + IP address for Xen bridges (John Levon),<br/> + driver format for disk file types (Daniel Berrange),<br/> + improve QEmu/KVM tun/tap performances (Mark McLoughlin),<br/> + enable floppies for Xen fully virt (John Levon),<br/> + support VNC password settings for QEmu/KVM (Daniel Berrange),<br/> + qemu driver version reporting (Daniel Berrange)<br/> + </li> + <li>Cleanups:<br/> + converting linked lists to arrays (Daniel Berrange),<br/> + daemon RPC handling refactoring (Daniel Berrange),<br/> + strings cleanups (Jim Meyering),<br/> + gethostby* cleanup and test (Jim Meyering),<br/> + some code fixes (Dave Allan),<br/> + various code cleanup (Jim Meyering),<br/> + virsh argument handling cleanup (Jim Meyering),<br/> + virAsprintf cleanup replacement (Guido Günther),<br/> + QEmu monitor reads (Cole Robinson),<br/> + Makefile cleanups (Guido Günther),<br/> + Xen code cleanups (John Levon),<br/> + revamp of ELF export scripts (John Levon),<br/> + domain event callback args (John Levon),<br/> + enforce use of pid_t (John Levon),<br/> + virsh pool-*-as XML code merge (Cole Robinson),<br/> + xgettext warnings (Jim Meyering),<br/> + add virKillProcess (Guido Günther),<br/> + add virGetHostname (David Lutterkort),<br/> + add flags argument to the full XML parsing stack (Guido Günther),<br/> + various daemon code cleanups (Guido Günther),<br/> + handling of daemon missing config file (Jim Meyering),<br/> + rpcgen invocation cleanup (Richard Jones),<br/> + devhelp builkd makefile cleanups (John Levon),<br/> + update error handling for threading (Daniel Berrange),<br/> + remove all non-rentrant POSIX calls usage (Daniel Berrange),<br/> + many small cleanups (Jim Meyering and Daniel Berrange),<br/> + examples Makefile generator (John Levon),<br/> + mis-use of PF_UNIX as a protocol (John Levon),<br/> + cleanup OOM error paths (Jim Meyering),<br/> + temporary fix fro valgrind on lxc (Daniel Berrange),<br/> + QEmu driver init cleanups (Daniel Berrange)<br/> + </li> </ul> <h3>0.5.1: Dec 4 2008</h3> <ul> -- 2.4.3

On Wed, Oct 14, 2015 at 10:36:02AM +0200, Andrea Bolognani wrote:
The changes for releases earlier than 0.7.1 were mostly lumped together as opposed to being tidly organized with one change per line, like we have done from that point onwards.
As a result, they look awful in the HTML version and don't work too well in the plain text version either.
Luckily, except for the very first releases, the information is still very detailed, so it's enough to organize it properly. --- docs/news.html.in | 1232 +++++++++++++++++++++++++++++------------------------ 1 file changed, 677 insertions(+), 555 deletions(-)
I wonder, do we really want the news.html file growing without bound. Might a better approach be to start a new news.html.in file in January of each year. Then we can just split up the current file one for year past year. Regards, Daniel -- |: http://berrange.com -o- http://www.flickr.com/photos/dberrange/ :| |: http://libvirt.org -o- http://virt-manager.org :| |: http://autobuild.org -o- http://search.cpan.org/~danberr/ :| |: http://entangle-photo.org -o- http://live.gnome.org/gtk-vnc :|

On Wed, Oct 14, 2015 at 10:25:35AM +0100, Daniel P. Berrange wrote:
On Wed, Oct 14, 2015 at 10:36:02AM +0200, Andrea Bolognani wrote:
The changes for releases earlier than 0.7.1 were mostly lumped together as opposed to being tidly organized with one change per line, like we have done from that point onwards.
As a result, they look awful in the HTML version and don't work too well in the plain text version either.
Luckily, except for the very first releases, the information is still very detailed, so it's enough to organize it properly. --- docs/news.html.in | 1232 +++++++++++++++++++++++++++++------------------------ 1 file changed, 677 insertions(+), 555 deletions(-)
I wonder, do we really want the news.html file growing without bound. Might a better approach be to start a new news.html.in file in January of each year. Then we can just split up the current file one for year past year.
Or rather, always put the current year's news into news.html.in but at the start of each year, archive the previous year's news into news-$LASTYEAR.html.in. That ways news.html.in always points to current news. Regards, Daniel -- |: http://berrange.com -o- http://www.flickr.com/photos/dberrange/ :| |: http://libvirt.org -o- http://virt-manager.org :| |: http://autobuild.org -o- http://search.cpan.org/~danberr/ :| |: http://entangle-photo.org -o- http://live.gnome.org/gtk-vnc :|

On Wed, 2015-10-14 at 11:39 +0100, Daniel P. Berrange wrote:
On Wed, Oct 14, 2015 at 10:25:35AM +0100, Daniel P. Berrange wrote:
On Wed, Oct 14, 2015 at 10:36:02AM +0200, Andrea Bolognani wrote:
The changes for releases earlier than 0.7.1 were mostly lumped together as opposed to being tidly organized with one change per line, like we have done from that point onwards.
As a result, they look awful in the HTML version and don't work too well in the plain text version either.
Luckily, except for the very first releases, the information is still very detailed, so it's enough to organize it properly. --- docs/news.html.in | 1232 +++++++++++++++++++++++++++++---------- -------------- 1 file changed, 677 insertions(+), 555 deletions(-)
I wonder, do we really want the news.html file growing without bound. Might a better approach be to start a new news.html.in file in January of each year. Then we can just split up the current file one for year past year.
Or rather, always put the current year's news into news.html.in but at the start of each year, archive the previous year's news into news-$LASTYEAR.html.in. That ways news.html.in always points to current news.
Would that apply to the plain text version as well? That would mean having an additional 14 NEWS-* files in the release tarball, with one more to be added in just a few months. Aside from that, I like the idea. But it's orthogonal to this series and should be done as a follow-up, once everything's already nice and tidy. Cheers. -- Andrea Bolognani Software Engineer - Virtualization Team

On Wed, Oct 14, 2015 at 12:58:58PM +0200, Andrea Bolognani wrote:
On Wed, 2015-10-14 at 11:39 +0100, Daniel P. Berrange wrote:
On Wed, Oct 14, 2015 at 10:25:35AM +0100, Daniel P. Berrange wrote:
On Wed, Oct 14, 2015 at 10:36:02AM +0200, Andrea Bolognani wrote:
The changes for releases earlier than 0.7.1 were mostly lumped together as opposed to being tidly organized with one change per line, like we have done from that point onwards.
As a result, they look awful in the HTML version and don't work too well in the plain text version either.
Luckily, except for the very first releases, the information is still very detailed, so it's enough to organize it properly. --- docs/news.html.in | 1232 +++++++++++++++++++++++++++++---------- -------------- 1 file changed, 677 insertions(+), 555 deletions(-)
I wonder, do we really want the news.html file growing without bound. Might a better approach be to start a new news.html.in file in January of each year. Then we can just split up the current file one for year past year.
Or rather, always put the current year's news into news.html.in but at the start of each year, archive the previous year's news into news-$LASTYEAR.html.in. That ways news.html.in always points to current news.
Would that apply to the plain text version as well? That would mean having an additional 14 NEWS-* files in the release tarball, with one more to be added in just a few months.
I think it would be sufficient to have a single NEWS file that just contains the current year, and a link to the website for older NEWS. As you point out, the NEWS file has been broken for years and no one complained, so I doubt anyone would ever read the additional NEWS-$YEAR files if we created them :-) Regards, Daniel -- |: http://berrange.com -o- http://www.flickr.com/photos/dberrange/ :| |: http://libvirt.org -o- http://virt-manager.org :| |: http://autobuild.org -o- http://search.cpan.org/~danberr/ :| |: http://entangle-photo.org -o- http://live.gnome.org/gtk-vnc :|

The changes for releases earlier than 0.7.1 were mostly lumped together as opposed to being tidly organized with one change per line, like we have done from that point onwards. As a result, they look awful in the HTML version and don't work too well in the plain text version either. Luckily, except for the very first releases, the information is still very detailed, so it's enough to organize it properly. --- docs/news.html.in | 782 ++++++++++++++++++++++++++++++++++-------------------- 1 file changed, 496 insertions(+), 286 deletions(-) diff --git a/docs/news.html.in b/docs/news.html.in index 0bc44a6..668d188 100644 --- a/docs/news.html.in +++ b/docs/news.html.in @@ -19426,313 +19426,523 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> </ul> <h3>0.5.1: Dec 4 2008</h3> <ul> - <li>Portability: fix missing dep in spec file, fix compilation with new - NUMA libraries (Daniel Berrange), udev compatibility for RHEL (Chris - Lalancette), </li> - <li>Documentation: documentation copy and paste errors and typo (Cole - Robinson)</li> - <li>Bug fixes: add a delay in storage backend for disks to show up - (Chris Lalancette), fix parsing for CDRom device with no source - (Daniel Berrange), use xenstore to list domains to avoid some - bugs (Guido Günther), remove a leak in xen inotify code (Daniel - Berrange), UML driver freeing of uninitialialized variable (Ron - Yorston), fix UML inotify code (Daniel Berrange), crash when - adding storage without a format (Cole Robinson)</li> - <li>Improvements: use xend preferably to hypervisor call to set Xen - max memory (Jim Fehlig), allow remote://hostname/ URI for automatic - probe of hypervisors (Daniel Berrange), fix daemon configuration - regression testing (Jim Meyering ), check /usr/bin/kvm for QEmu - driver init (Guido Günther), proper active vs. inactive - differentiation (Guido Günther), improve MTU setting on tap - interfaces (Eduardo Habkost), increase timeout for initial QEmu - monitor poll (Cole Robinson)</li> - <li>Cleanups:fix improper initialisations (Jim Meyering)</li> + <li>Portability:<br/> + fix missing dep in spec file,<br/> + fix compilation with new NUMA libraries (Daniel Berrange),<br/> + udev compatibility for RHEL (Chris Lalancette)<br/> + </li> + <li>Documentation:<br/> + documentation copy and paste errors and typo (Cole Robinson)<br/> + </li> + <li>Bug fixes:<br/> + add a delay in storage backend for disks to show up (Chris Lalancette),<br/> + fix parsing for CDRom device with no source (Daniel Berrange),<br/> + use xenstore to list domains to avoid some bugs (Guido Günther),<br/> + remove a leak in xen inotify code (Daniel Berrange),<br/> + UML driver freeing of uninitialialized variable (Ron Yorston),<br/> + fix UML inotify code (Daniel Berrange),<br/> + crash when adding storage without a format (Cole Robinson)<br/> + </li> + <li>Improvements:<br/> + use xend preferably to hypervisor call to set Xen max memory (Jim Fehlig),<br/> + allow remote://hostname/ URI for automatic probe of hypervisors (Daniel Berrange),<br/> + fix daemon configuration regression testing (Jim Meyering ),<br/> + check /usr/bin/kvm for QEmu driver init (Guido Günther),<br/> + proper active vs. inactive differentiation (Guido Günther),<br/> + improve MTU setting on tap interfaces (Eduardo Habkost),<br/> + increase timeout for initial QEmu monitor poll (Cole Robinson)<br/> + </li> + <li>Cleanups:<br/> + fix improper initialisations (Jim Meyering)<br/> + </li> </ul> <h3>0.5.0: Nov 25 2008</h3> <ul> - <li>New features: CPU and scheduler support for LXC (Dan Smith), SDL display configuration (Daniel Berrange), domain lifecycle event support for QEmu and Xen with python bindings (Ben Guthro and Daniel Berrange), KVM/QEmu migration support (Rich Jones and Chris Lalancette), User Mode Linux driver (Daniel Berrange), API for node device enumeration using HAL and DeviceKit with python bindings (David Lively), </li> - <li>Portability: RHEL build fixes, VPATH build (Guido Gunther), many MinGW related cleanups and fixes (Richard Jones), compilation without libvirtd (Richard Jones), Add a Windows icon (Richard Jones), sys/poll.h portability fixes (Daniel Berrange), gnulib and mingw cleanups (Jim Meyering), </li> - <li>Documentation: virsh man page cleanups (Mark McLoughlin), doc for NIC model selection (Richard Jones), monitoring section, link to AMQP bindings, inew APIs, UML driver docs (Daniel Berrange), </li> - <li>Bug fixes: Xen interfaces ordering (Jim Fehlig), startup timeout with multiple pty (Cole Robinson), segfault if QEmu without active virtual network (Cole Robinson), qemu small leak (Eduardo Habkost), index creation for more than 26 disks (Sanjay Rao and Chris Wright), virRealloc handling of 0 (Daniel Berrange), missing pointer initialization (Chris Lalancette), bus device index bug (Guido Günther), avoid crash in some error patch (Chris Lalancette), fix a problem in storage back-end (Chris Lalancette), minimum domain memory size check for Xen (Shigeki Sakamoto), switch off QEmu cache if device is shared (Charles Duffy), logical volume definition before scan bug (Chris Lalancette), a couple of memory leaks on QEmu vnc (Jim Meyering), lvs parsing fixes (Cole Robinson),</li> - <li>Improvements: LXC resources control and internal cgroup API (Dan Smith), virDomainCreateLinux renamed virDomainDefineXML, network driver modularization (Daniel Berrange), change the way domain and net are reported in errors (Jim Meyering), partition table scan on iSCSI (Chris Lalancette), qemudDiskDeviceName to handle normal disks (Guido Günther), qemudDomainBlockStats improvement (Guido Günther), scsi/virtio hotplug support for KVM (Guido Günther), USB hot addition in QEmu (Guido Günther), logical pool and storage backend XML dump improvement (Chris Lalancette), MAC addresses prefix per driver (Daniel Berrange), OpenVZ getVersion support (Daniel Berrange), hot removal of scsi/virtio disks for KVM (Guido Günther), test storage driver (Cole Robinson), iSCSI and disk storage driver improvement on path handling (Chris Lalancette), UUID and ID support for Xenner (Daniel Berrange), better logging when when executing commands (Cole Robinson), bridged network for Op! enVZ (Daniel Berrange), OpenVZ config file params (Evgeniy Sokolov), allow to build drivers as libtool convenience libs (Daniel Berrange), fully versioned linker script for exported ABI (Daniel Berrange), Push URI probing down into drivers open (Daniel Berrange), move all stateful drivers into the daemon binary (Daniel Berrange), improve domain event with a detail field (Daniel Berrange), domain events for QEMU driver (Daniel Berrange), event unregister callback crash (David Lively), plug a few leaks (Daniel Berrange), internal APIs for handling node device XML config (David Lively), tweaks to node device implementation (Daniel Berrange), OpenVZ vCPUs values init (Evgeniy Sokolov)</li> - <li>Cleanups: C99 initializers (Guido Gunther), test output (Cole Robinson), debug macro centralization (Cole Robinson), various error handling (Guido Günther), safewrite use cleanup (Jim Meyering), centralize error reporting logic (Cole Robinson), avoid printf warnings (Daniel Berrange), use arrays instead of list for internal APIs (Daniel Berrange), remove many format string warnings Jim Meyering), avoid syntax check warnings (Chris Lalancette), improve po-check and list generation (Jim Meyering), .gitignore generation and handling (Jim Meyering), use ARRAY_CARDINALITY (Jim Meyering), gnulib updates and switch to use netdb.h (Jim Meyering), drop usage of socket_errno (Jim Meyering), remove socketcompat.h (Jim Meyering), more tests (Jim Meyering), drop virStringList (Daniel Berrange), reformatting and isolation of the error APIs (Daniel Berrange), cleanup internal.h and move internal APIs in specific headers (Daniel Berrange), move domain events helpers into domain_! events.c (Daniel Berrange), cleanup the way optional modules are compiled (Daniel Berrange), add new logging module, optional dlopen of drivers (Daniel Berrange), various new tests (Jim Meyering), cleanups when Xen is not configured in (Daniel Berrange), add some missing functions comments (Jim Meyering),</li> + <li>New features:<br/> + CPU and scheduler support for LXC (Dan Smith),<br/> + SDL display configuration (Daniel Berrange),<br/> + domain lifecycle event support for QEmu and Xen with python bindings (Ben Guthro and Daniel Berrange),<br/> + KVM/QEmu migration support (Rich Jones and Chris Lalancette),<br/> + User Mode Linux driver (Daniel Berrange),<br/> + API for node device enumeration using HAL and DeviceKit with python bindings (David Lively)<br/> + </li> + <li>Portability:<br/> + RHEL build fixes,<br/> + VPATH build (Guido Gunther),<br/> + many MinGW related cleanups and fixes (Richard Jones),<br/> + compilation without libvirtd (Richard Jones),<br/> + Add a Windows icon (Richard Jones),<br/> + sys/poll.h portability fixes (Daniel Berrange),<br/> + gnulib and mingw cleanups (Jim Meyering)<br/> + </li> + <li>Documentation:<br/> + virsh man page cleanups (Mark McLoughlin),<br/> + doc for NIC model selection (Richard Jones),<br/> + monitoring section,<br/> + link to AMQP bindings,<br/> + inew APIs,<br/> + UML driver docs (Daniel Berrange)<br/> + </li> + <li>Bug fixes:<br/> + Xen interfaces ordering (Jim Fehlig),<br/> + startup timeout with multiple pty (Cole Robinson),<br/> + segfault if QEmu without active virtual network (Cole Robinson),<br/> + qemu small leak (Eduardo Habkost),<br/> + index creation for more than 26 disks (Sanjay Rao and Chris Wright),<br/> + virRealloc handling of 0 (Daniel Berrange),<br/> + missing pointer initialization (Chris Lalancette),<br/> + bus device index bug (Guido Günther),<br/> + avoid crash in some error patch (Chris Lalancette),<br/> + fix a problem in storage back-end (Chris Lalancette),<br/> + minimum domain memory size check for Xen (Shigeki Sakamoto),<br/> + switch off QEmu cache if device is shared (Charles Duffy),<br/> + logical volume definition before scan bug (Chris Lalancette),<br/> + a couple of memory leaks on QEmu vnc (Jim Meyering),<br/> + lvs parsing fixes (Cole Robinson)<br/> + </li> + <li>Improvements:<br/> + LXC resources control and internal cgroup API (Dan Smith),<br/> + virDomainCreateLinux renamed virDomainDefineXML,<br/> + network driver modularization (Daniel Berrange),<br/> + change the way domain and net are reported in errors (Jim Meyering),<br/> + partition table scan on iSCSI (Chris Lalancette),<br/> + qemudDiskDeviceName to handle normal disks (Guido Günther),<br/> + qemudDomainBlockStats improvement (Guido Günther),<br/> + scsi/virtio hotplug support for KVM (Guido Günther),<br/> + USB hot addition in QEmu (Guido Günther),<br/> + logical pool and storage backend XML dump improvement (Chris Lalancette),<br/> + MAC addresses prefix per driver (Daniel Berrange),<br/> + OpenVZ getVersion support (Daniel Berrange),<br/> + hot removal of scsi/virtio disks for KVM (Guido Günther),<br/> + test storage driver (Cole Robinson),<br/> + iSCSI and disk storage driver improvement on path handling (Chris Lalancette),<br/> + UUID and ID support for Xenner (Daniel Berrange),<br/> + better logging when when executing commands (Cole Robinson),<br/> + bridged network for OpenVZ (Daniel Berrange),<br/> + OpenVZ config file params (Evgeniy Sokolov),<br/> + allow to build drivers as libtool convenience libs (Daniel Berrange),<br/> + fully versioned linker script for exported ABI (Daniel Berrange),<br/> + Push URI probing down into drivers open (Daniel Berrange),<br/> + move all stateful drivers into the daemon binary (Daniel Berrange),<br/> + improve domain event with a detail field (Daniel Berrange),<br/> + domain events for QEMU driver (Daniel Berrange),<br/> + event unregister callback crash (David Lively),<br/> + plug a few leaks (Daniel Berrange),<br/> + internal APIs for handling node device XML config (David Lively),<br/> + tweaks to node device implementation (Daniel Berrange),<br/> + OpenVZ vCPUs values init (Evgeniy Sokolov)<br/> + </li> + <li>Cleanups:<br/> + C99 initializers (Guido Gunther),<br/> + test output (Cole Robinson),<br/> + debug macro centralization (Cole Robinson),<br/> + various error handling (Guido Günther),<br/> + safewrite use cleanup (Jim Meyering),<br/> + centralize error reporting logic (Cole Robinson),<br/> + avoid printf warnings (Daniel Berrange),<br/> + use arrays instead of list for internal APIs (Daniel Berrange),<br/> + remove many format string warnings Jim Meyering),<br/> + avoid syntax check warnings (Chris Lalancette),<br/> + improve po-check and list generation (Jim Meyering),<br/> + .gitignore generation and handling (Jim Meyering),<br/> + use ARRAY_CARDINALITY (Jim Meyering),<br/> + gnulib updates and switch to use netdb.h (Jim Meyering),<br/> + drop usage of socket_errno (Jim Meyering),<br/> + remove socketcompat.h (Jim Meyering),<br/> + more tests (Jim Meyering),<br/> + drop virStringList (Daniel Berrange),<br/> + reformatting and isolation of the error APIs (Daniel Berrange),<br/> + cleanup internal.h and move internal APIs in specific headers (Daniel Berrange),<br/> + move domain events helpers into domain_events.c (Daniel Berrange),<br/> + cleanup the way optional modules are compiled (Daniel Berrange),<br/> + add new logging module,<br/> + optional dlopen of drivers (Daniel Berrange),<br/> + various new tests (Jim Meyering),<br/> + cleanups when Xen is not configured in (Daniel Berrange),<br/> + add some missing functions comments (Jim Meyering)<br/> + </li> </ul> <h3>0.4.6: Sep 23 2008</h3> <ul> - <li>Documentation: fix some comments in API (Anton Protopopov), - cleanup and extension of bindings and windows pages (Richard Jones)</li> - <li>Portability: missing include file (Richard Jones)</li> - <li>Bug fixes: avoid a segfault if missing qemu emulator (Cole Robinson), - reading vncdisplay from xend domain (Cole Robinson), segfault in - OpenVZ (Evgeniy Sokolov), fix parsing of pool without a source - (Chris Lalancette and Daniel Berrange)</li> - <li>Improvements: add storage disk volume delete (Cole Robinson), - KVM dynamic max CPU detection (Guido Günther), spec file improvement - for minimal builds (Ben Guthro), improved error message in XM - configuration module (Richard Jones), network config in OpenVZ - support (Evgeniy Sokolov), enable stopping a pool in logical - storage backend and cleanup deletion of pool (Chris Lalancette)</li> - <li>Cleanups: deadcode removal (Nguyen Anh Quynh), fix one test - case (Daniel Berrange), various strings and space cleanups (Daniel - Berrange), structure initialization cleanup (Chris Lalancette)</li> + <li>Documentation:<br/> + fix some comments in API (Anton Protopopov),<br/> + cleanup and extension of bindings and windows pages (Richard Jones)<br/> + </li> + <li>Portability:<br/> + missing include file (Richard Jones)<br/> + </li> + <li>Bug fixes:<br/> + avoid a segfault if missing qemu emulator (Cole Robinson),<br/> + reading vncdisplay from xend domain (Cole Robinson),<br/> + segfault in OpenVZ (Evgeniy Sokolov),<br/> + fix parsing of pool without a source (Chris Lalancette and Daniel Berrange)<br/> + </li> + <li>Improvements:<br/> + add storage disk volume delete (Cole Robinson),<br/> + KVM dynamic max CPU detection (Guido Günther),<br/> + spec file improvement for minimal builds (Ben Guthro),<br/> + improved error message in XM configuration module (Richard Jones),<br/> + network config in OpenVZ support (Evgeniy Sokolov),<br/> + enable stopping a pool in logical storage backend and cleanup deletion of pool (Chris Lalancette)<br/> + </li> + <li>Cleanups:<br/> + deadcode removal (Nguyen Anh Quynh),<br/> + fix one test case (Daniel Berrange),<br/> + various strings and space cleanups (Daniel Berrange),<br/> + structure initialization cleanup (Chris Lalancette)<br/> + </li> </ul> <h3>0.4.5: Sep 8 2008</h3> <ul> - <li>New features: NETNS support for Linux containers (Dan Smith), - unified XML domain and network parsing for all drivers (Daniel - Berrange), OpenVZ features improvements (Evgeniy Sokolov), - OpenVZ and Linux containers support now default, USB device - passthrough for QEmu/KVM (Guido Günther), storage pool source - discovery (David Lively)</li> - <li>Portability: fixes for MinGW (Atsushi SAKAI and Daniel Berrange), - detection of xen lib improvement (David Lively), - storage backend portability for SLES (David Lively), - fix make distclean and distcheck (Jim Meyering), - fix build failures on RHEL4, lot of MinGW portability fixes (Atsushi - SAKAI and Daniel Berrange), HTML generation fix, -lpthread explicit - linking when needed (Jim Meyering)</li> - <li>Documentation: various typo fixes (Anton Protopopov, Toth - István, Atsushi SAKAI, Nguyen Anh Quynh), - Java bindings docs, remove Xen centric - comments (Guido Günther), various typo in comments (Chris - Lalancette), docs and API comments fixes (Charles Duffy), - how to contribute to open source link (Richard Jones), - memory unit fixups (matthew chan)</li> - <li>Bug fixes: memory leaks and testing for OOM (Daniel Berrange), - do_open driver bug(Evgeniy Sokolov), don't use polkit auth when - running as non-root (Daniel Berrange), boot of CDRom devices - in QEmu/KVM (Daniel Berrange), fix OpenVZ probe function (Evgeniy - Sokolov), ID related lookup fixes in OpenVZ (Evgeniy Sokolov), - pool cration for netfs (Cole Robinson), check for migrate support - with QEmu (Guido Günther), check against double create with QEmu - (Guido Günther), broken open failure detection in QEmu (Guido - Günther), UUID string conversions in QEmu (Guido Günther), - various small cleanup and bug fixes (Daniel Berrange), ID - related fixes in the test driver (Daniel Berrange), better error - reporting on XML parsing (Daniel Berrange), empty CD-ROM source - device section (Chris Lalancette), avoid crashes for interface - without a name in QEmu (Guido Günther), provide the real - vncport (Charles Duffy), fix forward delay (Daniel Berrange), - new VM state is initialized to be SHUTOFF (Daniel Berrange), - virsh attach-disk bug fixes (Chris Lalancette), veth clash - of device names (Dan Smith), connection lookup fixes on - storage creation (Cole Robinson), parted call fix (Cole Robinson), - use "server" option when using serial/telnet with QEmu (Mark - McLoughlin), duplicate virInitialize calls (Nguyen Anh Quynh), - many fixes to virExec and related functions (Daniel Berrange), - size of disk without partitions (Cole Robinson), creating and - cleaning up logical volumes with target path (Cole Robinson), - fix reporting of virConnectOpen problems (Daniel Berrange), - veth cleanup at shutdown (Dan Smith), lookup of Xen VMs after define - (Cole Robinson), fix emulator reported capabilities (Cole Robinson), - avoid segfault on KVM CD eject (Cole Robinson), fix disk ordering - and avoid duplicate in QEmu XML parsing (Cole Robinson), update - domain XML after device hotplug (Cole Robinson), use poweroff instead - of halt when shutting down a Xen domain (John Levon), don't dump core - of Xen domain live by default (John Levon), vgcreate command line - size bug (Jim Fehlig), signed/unsigned issue in probing file - (Cole Robinson), Fix Xen domains without PVFB console (Daniel - Berrange), OpenVZ config read bug fix (Evgeniy Sokolov). - </li> - <li>Improvements: improved failure diagnostic for TAP (Jim Meyering), - better exec and error diagnostic for OpenVZ commands (Evgeniy - Sokolov), OpenVZ auto start and stop of domains (Evgeniy Sokolov), - OpenVZ domain cpu time consumption (Evgeniy Sokolov), virsh - shutdown improvements and test (Jim Meyering), better report of - XML well formedness errors (Richard Jones), new XML elements - (Daniel Berrange), virsh "edit" command (Richard Jones), save - UUID of OpenVZ domains (Evgeniy Sokolov), improve xen blocks - statistics (Chris Lalancette), gnulib updates (Jim Meyering), - allow to add disk as USB devices (Guido Günther), LXC container - process should survive libvirtd restarts (Daniel Berrange), allow - to define static host domain configs, number of CPU used by - OpenVZ domains (Evgeniy Sokolov), private root fs for LXC (Daniel - Berrange), storage source information in storage pools (David Lively), - virsh reports attach and detach success (Cole Robinson), detect - failure in QEmu eject command (Cole Robinson), add support for - eect on floppy and SCSI cdroms for QEmu (Cole Robinson), LXC - hypervisor version extraction (Dan Smith), Augeas config file support - (Daniel Berrange), support for a domain name in network - config (JJ Reynolds).</li> - <li>Cleanups: Python verbosity cleanup (Ryan Scott), - space and tabs cleanups (Atsushi SAKAI), OpenVZ and LXC drivers - cleanup and unification of XML handling (Daniel Berrange), updates - to Relax-NG XML schemas (John Levon and Daniel Berrange), more - printf format checkings (Jim Meyering), VIR_FREE related cleanups - (Jim Meyering), integer string parsing cleanup (Evgeniy Sokolov), - initial OpenVZ xml refactoring (Evgeniy Sokolov), better error - message on domain redefine (Charles Duffy), check XML files against - the RNG Schemas (Daniel Berrange), const-correctness in virsh - (Richard Jones and Jim Meyering), const-correctness and cleanups - in LXC and OpenVZ drivers (Daniel Berrange), virFileLinkPointsTo - rewrite (Jim Meyering), cleanup of the conditional compilation - of C files (Daniel Berrange), shell quoting fixes (Jim Meyering), - parallel build support (James Morris and Jim Meyering), new - convenience virFileReadLimFD function (Jim Meyering). </li> + <li>New features:<br/> + NETNS support for Linux containers (Dan Smith),<br/> + unified XML domain and network parsing for all drivers (Daniel Berrange),<br/> + OpenVZ features improvements (Evgeniy Sokolov),<br/> + OpenVZ and Linux containers support now default,<br/> + USB device passthrough for QEmu/KVM (Guido Günther),<br/> + storage pool source discovery (David Lively)<br/> + </li> + <li>Portability:<br/> + fixes for MinGW (Atsushi SAKAI and Daniel Berrange),<br/> + detection of xen lib improvement (David Lively),<br/> + storage backend portability for SLES (David Lively),<br/> + fix make distclean and distcheck (Jim Meyering),<br/> + fix build failures on RHEL4,<br/> + lot of MinGW portability fixes (Atsushi SAKAI and Daniel Berrange),<br/> + HTML generation fix,<br/> + -lpthread explicit linking when needed (Jim Meyering)<br/> + </li> + <li>Documentation:<br/> + various typo fixes (Anton Protopopov, Toth István, Atsushi SAKAI, Nguyen Anh Quynh),<br/> + Java bindings docs,<br/> + remove Xen centric comments (Guido Günther),<br/> + various typo in comments (Chris Lalancette),<br/> + docs and API comments fixes (Charles Duffy),<br/> + how to contribute to open source link (Richard Jones),<br/> + memory unit fixups (matthew chan)<br/> + </li> + <li>Bug fixes:<br/> + memory leaks and testing for OOM (Daniel Berrange),<br/> + do_open driver bug(Evgeniy Sokolov),<br/> + don't use polkit auth when running as non-root (Daniel Berrange),<br/> + boot of CDRom devices in QEmu/KVM (Daniel Berrange),<br/> + fix OpenVZ probe function (Evgeniy Sokolov),<br/> + ID related lookup fixes in OpenVZ (Evgeniy Sokolov),<br/> + pool cration for netfs (Cole Robinson),<br/> + check for migrate support with QEmu (Guido Günther),<br/> + check against double create with QEmu (Guido Günther),<br/> + broken open failure detection in QEmu (Guido Günther),<br/> + UUID string conversions in QEmu (Guido Günther),<br/> + various small cleanup and bug fixes (Daniel Berrange),<br/> + ID related fixes in the test driver (Daniel Berrange),<br/> + better error reporting on XML parsing (Daniel Berrange),<br/> + empty CD-ROM source device section (Chris Lalancette),<br/> + avoid crashes for interface without a name in QEmu (Guido Günther),<br/> + provide the real vncport (Charles Duffy),<br/> + fix forward delay (Daniel Berrange),<br/> + new VM state is initialized to be SHUTOFF (Daniel Berrange),<br/> + virsh attach-disk bug fixes (Chris Lalancette),<br/> + veth clash of device names (Dan Smith),<br/> + connection lookup fixes on storage creation (Cole Robinson),<br/> + parted call fix (Cole Robinson),<br/> + use "server" option when using serial/telnet with QEmu (Mark McLoughlin),<br/> + duplicate virInitialize calls (Nguyen Anh Quynh),<br/> + many fixes to virExec and related functions (Daniel Berrange),<br/> + size of disk without partitions (Cole Robinson),<br/> + creating and cleaning up logical volumes with target path (Cole Robinson),<br/> + fix reporting of virConnectOpen problems (Daniel Berrange),<br/> + veth cleanup at shutdown (Dan Smith),<br/> + lookup of Xen VMs after define (Cole Robinson),<br/> + fix emulator reported capabilities (Cole Robinson),<br/> + avoid segfault on KVM CD eject (Cole Robinson),<br/> + fix disk ordering and avoid duplicate in QEmu XML parsing (Cole Robinson),<br/> + update domain XML after device hotplug (Cole Robinson),<br/> + use poweroff instead of halt when shutting down a Xen domain (John Levon),<br/> + don't dump core of Xen domain live by default (John Levon),<br/> + vgcreate command line size bug (Jim Fehlig),<br/> + signed/unsigned issue in probing file (Cole Robinson),<br/> + Fix Xen domains without PVFB console (Daniel Berrange),<br/> + OpenVZ config read bug fix (Evgeniy Sokolov)<br/> + </li> + <li>Improvements:<br/> + improved failure diagnostic for TAP (Jim Meyering),<br/> + better exec and error diagnostic for OpenVZ commands (Evgeniy Sokolov),<br/> + OpenVZ auto start and stop of domains (Evgeniy Sokolov),<br/> + OpenVZ domain cpu time consumption (Evgeniy Sokolov),<br/> + virsh shutdown improvements and test (Jim Meyering),<br/> + better report of XML well formedness errors (Richard Jones),<br/> + new XML elements (Daniel Berrange),<br/> + virsh "edit" command (Richard Jones),<br/> + save UUID of OpenVZ domains (Evgeniy Sokolov),<br/> + improve xen blocks statistics (Chris Lalancette),<br/> + gnulib updates (Jim Meyering),<br/> + allow to add disk as USB devices (Guido Günther),<br/> + LXC container process should survive libvirtd restarts (Daniel Berrange),<br/> + allow to define static host domain configs,<br/> + number of CPU used by OpenVZ domains (Evgeniy Sokolov),<br/> + private root fs for LXC (Daniel Berrange),<br/> + storage source information in storage pools (David Lively),<br/> + virsh reports attach and detach success (Cole Robinson),<br/> + detect failure in QEmu eject command (Cole Robinson),<br/> + add support for eect on floppy and SCSI cdroms for QEmu (Cole Robinson),<br/> + LXC hypervisor version extraction (Dan Smith),<br/> + Augeas config file support (Daniel Berrange),<br/> + support for a domain name in network config (JJ Reynolds)<br/> + </li> + <li>Cleanups:<br/> + Python verbosity cleanup (Ryan Scott),<br/> + space and tabs cleanups (Atsushi SAKAI),<br/> + OpenVZ and LXC drivers cleanup and unification of XML handling (Daniel Berrange),<br/> + updates to Relax-NG XML schemas (John Levon and Daniel Berrange),<br/> + more printf format checkings (Jim Meyering),<br/> + VIR_FREE related cleanups (Jim Meyering),<br/> + integer string parsing cleanup (Evgeniy Sokolov),<br/> + initial OpenVZ xml refactoring (Evgeniy Sokolov),<br/> + better error message on domain redefine (Charles Duffy),<br/> + check XML files against the RNG Schemas (Daniel Berrange),<br/> + const-correctness in virsh (Richard Jones and Jim Meyering),<br/> + const-correctness and cleanups in LXC and OpenVZ drivers (Daniel Berrange),<br/> + virFileLinkPointsTo rewrite (Jim Meyering),<br/> + cleanup of the conditional compilation of C files (Daniel Berrange),<br/> + shell quoting fixes (Jim Meyering),<br/> + parallel build support (James Morris and Jim Meyering),<br/> + new convenience virFileReadLimFD function (Jim Meyering)<br/> + </li> </ul> <h3>0.4.4: Jun 25 2008</h3> <ul> - <li>Bug fixes: QEmu network serialization (Kaitlin Rupert), internal - memory allocation fixes (Chris Lalancette Jim Meyering), virsh - large file config problem (Jim Meyering), xen list APIs when - max is zero, string escape problems in the xm driver </li> - <li>Improvements: add autogen to tarballs, improve iSCSI support - (Chris Lalancette), localization updates </li> - <li>Cleanups: const-ness fixed (Daniel P. Berrange), string helpers - for enumerations (Daniel P. Berrange)</li> + <li>Bug fixes:<br/> + QEmu network serialization (Kaitlin Rupert),<br/> + internal memory allocation fixes (Chris Lalancette Jim Meyering),<br/> + virsh large file config problem (Jim Meyering),<br/> + xen list APIs when max is zero,<br/> + string escape problems in the xm driver<br/> + </li> + <li>Improvements:<br/> + add autogen to tarballs,<br/> + improve iSCSI support (Chris Lalancette),<br/> + localization updates<br/> + </li> + <li>Cleanups:<br/> + const-ness fixed (Daniel P. Berrange),<br/> + string helpers for enumerations (Daniel P. Berrange)<br/> + </li> </ul> <h3>0.4.3: Jun 12 2008</h3> <ul> - <li>New features: Linux Container start and stop (Dave Leskovec), - Network interface model settings (Daniel Berrange),serial and parallel - device support for QEmu and Xen (Daniel Berrange), - Sound support for QEmu and Xen (Cole Robinson), vCPU settings for - QEmu (Cole Robinson), support for NUMA and vCPU pinning in QEmu - (Daniel Berrange), new virDomainBlockPeek API (Richard Jones)</li> - <li>Documentation: coding guidelines (Jim Meyering and Richard Jones), - small man page missing entries and cleanup, - Web site revamp (Daniel Berrange), - typo fixes (Atsushi SAKAI), more docs on network XML format - (Daniel Berrange), libvirt Wiki (Daniel Berrange), - policykit config docs (Cole Robinson), XML domain docs revamp - (Daniel Berrange), docs for remote listen-tls/tcp fixes (Kenneth - Nagin), </li> - <li>Bug fixes: save change to config file for Xen (Ryan Scott), - fix /var/run/libvirt/ group ownership (Anton Protopopov), - ancient libparted workaround (Soren Hansen), out of bount - array access (Daniel Berrange), remote check bug (Dave Leskovec), - LXC signal and daemon restart problems (Dave Leskovec), bus selection - logic fix in the daemon config (Daniel Berrange), 2 memory leaks - in the daemon (Jim Meyering), daemon pid file logic bug fix - (Daniel Berrange), python generator fixes (Daniel Berrange), - ivarious leaks and memory problem pointed by valgrind (Daniel - Berrange), iptables forwarding cleanup (Daniel Berrange), - Xen cpuset value checking (Hiroyuki Kaguchi), container process - checks for LXC (Dave Leskovec), let xend check block device syntax - (Hiroyuki Kaguchi), UUIDString for python fixes (Cole Robinson)</li> - <li>Improvements: fixes for MinGW compilation (Richard Jones), - autostart for running Xen domains (Cole Robinson), - control of listening IP for daemon (Stefan de Konink), - various Xenner related fixes and improvements (Daniel Berrange) - autostart status printed in virsh domainfo (Shigeki Sakamoto), - better error messages for xend driver (Richard Jones)</li> - <li>Code cleanups: OpenVZ compilation (Richard Jones), conn dom and - net fields deprecation in error structures (Richard Jones), - Xen-ism on UUID (Richard Jones), add missing .pod to dist (Richard - Jones), tab cleanup from sources (Jim Meyering), remove unused field - in virsh control structure (Richard Jones), compilation without - pthread.h (Jim Meyering), cleanup of tests (Daniel Berrange), - syntax-check improvements (Jim Meyering), python cleanup, - remove dependancy on libc is_* character tests (Jim Meyering), - format related cleanups (Jim Meyering), cleanup of the buffer - internal APIs (Daniel Berrange), conversion to the new memory - allocation API (Daniel Berrange), lcov coverage testing - (Daniel Berrange), gnulib updates (Jim Meyering), compatibility - fix with RHEL 5 (Daniel Berrange), SuSE compatibility fix (Jim - Fehlig), const'ification of a number of structures (Jim Meyering), - string comparison macro cleanups (Daniel Berrange), character - range testing cleanups and assorted bug fixes (Jim Meyering), - QEmu test fixes (Daniel Berrange), configure macro cleanup (Daniel - Berrange), refactor QEmu command line building code (Daniel Berrange), - type punning warning in remote code (Richard Jones), refactoring - of internal headers (Richard Jones), generic out of memory - testing and associated bug fixes (Daniel Berrange), don't raise - internal error for unsupported features (Kaitlin Rupert), - missing driver entry points (Daniel Berrange)</li> + <li>New features:<br/> + Linux Container start and stop (Dave Leskovec),<br/> + Network interface model settings (Daniel Berrange),<br/> + serial and parallel device support for QEmu and Xen (Daniel Berrange),<br/> + Sound support for QEmu and Xen (Cole Robinson),<br/> + vCPU settings for QEmu (Cole Robinson),<br/> + support for NUMA and vCPU pinning in QEmu (Daniel Berrange),<br/> + new virDomainBlockPeek API (Richard Jones)<br/> + </li> + <li>Documentation:<br/> + coding guidelines (Jim Meyering and Richard Jones),<br/> + small man page missing entries and cleanup,<br/> + Web site revamp (Daniel Berrange),<br/> + typo fixes (Atsushi SAKAI),<br/> + more docs on network XML format (Daniel Berrange),<br/> + libvirt Wiki (Daniel Berrange),<br/> + policykit config docs (Cole Robinson),<br/> + XML domain docs revamp (Daniel Berrange),<br/> + docs for remote listen-tls/tcp fixes (Kenneth Nagin)<br/> + </li> + <li>Bug fixes:<br/> + save change to config file for Xen (Ryan Scott),<br/> + fix /var/run/libvirt/ group ownership (Anton Protopopov),<br/> + ancient libparted workaround (Soren Hansen),<br/> + out of bount array access (Daniel Berrange),<br/> + remote check bug (Dave Leskovec),<br/> + LXC signal and daemon restart problems (Dave Leskovec),<br/> + bus selection logic fix in the daemon config (Daniel Berrange),<br/> + 2 memory leaks in the daemon (Jim Meyering),<br/> + daemon pid file logic bug fix (Daniel Berrange),<br/> + python generator fixes (Daniel Berrange),<br/> + ivarious leaks and memory problem pointed by valgrind (Daniel Berrange),<br/> + iptables forwarding cleanup (Daniel Berrange),<br/> + Xen cpuset value checking (Hiroyuki Kaguchi),<br/> + container process checks for LXC (Dave Leskovec),<br/> + let xend check block device syntax (Hiroyuki Kaguchi),<br/> + UUIDString for python fixes (Cole Robinson)<br/> + </li> + <li>Improvements:<br/> + fixes for MinGW compilation (Richard Jones),<br/> + autostart for running Xen domains (Cole Robinson),<br/> + control of listening IP for daemon (Stefan de Konink),<br/> + various Xenner related fixes and improvements (Daniel Berrange)<br/> + autostart status printed in virsh domainfo (Shigeki Sakamoto),<br/> + better error messages for xend driver (Richard Jones)<br/> + </li> + <li>Code cleanups:<br/> + OpenVZ compilation (Richard Jones),<br/> + conn dom and net fields deprecation in error structures (Richard Jones),<br/> + Xen-ism on UUID (Richard Jones),<br/> + add missing .pod to dist (Richard Jones),<br/> + tab cleanup from sources (Jim Meyering),<br/> + remove unused field in virsh control structure (Richard Jones),<br/> + compilation without pthread.h (Jim Meyering),<br/> + cleanup of tests (Daniel Berrange),<br/> + syntax-check improvements (Jim Meyering),<br/> + python cleanup,<br/> + remove dependancy on libc is_* character tests (Jim Meyering),<br/> + format related cleanups (Jim Meyering),<br/> + cleanup of the buffer internal APIs (Daniel Berrange),<br/> + conversion to the new memory allocation API (Daniel Berrange),<br/> + lcov coverage testing (Daniel Berrange),<br/> + gnulib updates (Jim Meyering),<br/> + compatibility fix with RHEL 5 (Daniel Berrange),<br/> + SuSE compatibility fix (Jim Fehlig),<br/> + const'ification of a number of structures (Jim Meyering),<br/> + string comparison macro cleanups (Daniel Berrange),<br/> + character range testing cleanups and assorted bug fixes (Jim Meyering),<br/> + QEmu test fixes (Daniel Berrange),<br/> + configure macro cleanup (Daniel Berrange),<br/> + refactor QEmu command line building code (Daniel Berrange),<br/> + type punning warning in remote code (Richard Jones),<br/> + refactoring of internal headers (Richard Jones),<br/> + generic out of memory testing and associated bug fixes (Daniel Berrange),<br/> + don't raise internal error for unsupported features (Kaitlin Rupert),<br/> + missing driver entry points (Daniel Berrange)<br/> + </li> </ul> <h3>0.4.2: Apr 8 2008</h3> <ul> - <li>New features: memory operation for QEmu/KVM driver (Cole Robinson), - new routed networking schemas (Mads Olesen)</li> - <li>Documentation: storage documentation fixes (Atsushi Sakai), many - typo cleanups (Atsushi Sakai), string fixes (Francesco Tombolini)</li> - <li>Bug fixes: pointer errors in qemu (Jim Meyering), iSCSI login fix - (Chris Lalancette), well formedness error in test driver capabilities - (Cole Robinson), fixes cleanup code when daemon exits (Daniel Berrange), - CD Rom change on live QEmu/KVM domains (Cole Robinson), setting scheduler - parameter is forbidden for read-only (Saori Fukuta)i, fixes for TAP - devices (Daniel Berrange), assorted storage driver fixes (Daniel - Berrange), Makefile fixes (Jim Meyering), Xen-3.2 hypercall fix, - fix iptables rules to avoid blocking traffic within virtual network - (Daniel Berrange), XML output fix for directory pools (Daniel Berrange), - remove dandling domain/net/conn pointers from error data, do not - ask polkit auth when root (Daniel Berrange), handling of fork and - pipe errors when starting the daemon (Richard Jones)</li> - <li>Improvements: better validation of MAC addresses (Jim Meyering and - Hiroyuki Kaguchi), - virsh vcpupin error report (Shigeki Sakamoto), keep boot tag on - HVM domains (Cole Robinson), virsh non-root should not be limited to read - only anymore (Daniel Berrange), switch to polkit-auth from polkit-grant - (Daniel Berrange), better handling of missing SElinux data (Daniel - Berrange and Jim Meyering), cleanup of the connection opening logic - (Daniel Berrange), first bits of Linux Containers support (Dave Leskovec), - scheduler API support via xend (Saori Fukuta), improvement of the - testing framework and first tests (Jim Meyering), missing error - messages from virsh parameters validation (Shigeki Sakamoto), - improve support of older iscsiadm command (Chris Lalancette), - move linux container support in the daemon (Dan Berrange), older - awk implementation support (Mike Gerdts), NUMA support in test - driver (Cole Robinson), xen and hvm added to test driver capabilities - (Cole Robinson)</li> - <li>Code cleanup: remove unused getopt header (Jim Meyering), mark more - strings as translatable (Guido Günther and Jim Meyering), convert - error strings to something meaningful and translatable (Jim Meyering), - Linux Containers code cleanup, last error initializer (Guido Günther)</li> + <li>New features:<br/> + memory operation for QEmu/KVM driver (Cole Robinson),<br/> + new routed networking schemas (Mads Olesen)<br/> + </li> + <li>Documentation:<br/> + storage documentation fixes (Atsushi Sakai),<br/> + many typo cleanups (Atsushi Sakai),<br/> + string fixes (Francesco Tombolini)<br/> + </li> + <li>Bug fixes:<br/> + pointer errors in qemu (Jim Meyering),<br/> + iSCSI login fix (Chris Lalancette),<br/> + well formedness error in test driver capabilities (Cole Robinson),<br/> + fixes cleanup code when daemon exits (Daniel Berrange),<br/> + CD Rom change on live QEmu/KVM domains (Cole Robinson),<br/> + setting scheduler parameter is forbidden for read-only (Saori Fukuta)i,<br/> + fixes for TAP devices (Daniel Berrange),<br/> + assorted storage driver fixes (Daniel Berrange),<br/> + Makefile fixes (Jim Meyering),<br/> + Xen-3.2 hypercall fix,<br/> + fix iptables rules to avoid blocking traffic within virtual network (Daniel Berrange),<br/> + XML output fix for directory pools (Daniel Berrange),<br/> + remove dandling domain/net/conn pointers from error data,<br/> + do not ask polkit auth when root (Daniel Berrange),<br/> + handling of fork and pipe errors when starting the daemon (Richard Jones)<br/> + </li> + <li>Improvements:<br/> + better validation of MAC addresses (Jim Meyering and Hiroyuki Kaguchi),<br/> + virsh vcpupin error report (Shigeki Sakamoto),<br/> + keep boot tag on HVM domains (Cole Robinson),<br/> + virsh non-root should not be limited to read only anymore (Daniel Berrange),<br/> + switch to polkit-auth from polkit-grant (Daniel Berrange),<br/> + better handling of missing SElinux data (Daniel Berrange and Jim Meyering),<br/> + cleanup of the connection opening logic (Daniel Berrange),<br/> + first bits of Linux Containers support (Dave Leskovec),<br/> + scheduler API support via xend (Saori Fukuta),<br/> + improvement of the testing framework and first tests (Jim Meyering),<br/> + missing error messages from virsh parameters validation (Shigeki Sakamoto),<br/> + improve support of older iscsiadm command (Chris Lalancette),<br/> + move linux container support in the daemon (Dan Berrange),<br/> + older awk implementation support (Mike Gerdts),<br/> + NUMA support in test driver (Cole Robinson),<br/> + xen and hvm added to test driver capabilities (Cole Robinson)<br/> + </li> + <li>Code cleanup:<br/> + remove unused getopt header (Jim Meyering),<br/> + mark more strings as translatable (Guido Günther and Jim Meyering),<br/> + convert error strings to something meaningful and translatable (Jim Meyering),<br/> + Linux Containers code cleanup,<br/> + last error initializer (Guido Günther)<br/> + </li> </ul> <h3>0.4.1: Mar 3 2008</h3> <ul> - <li>New features: build on MacOSX (Richard Jones), storage management - (Daniel Berrange), Xenner - Xen on KVM - support (Daniel Berrange)</li> - <li>Documentation: Fix of various typos (Atsushi SAKAI), memory and - vcpu settings details (Richard Jones), ethernet bridging typo - (Maxwell Bottiger), add storage APIs documentation (Daniel Berrange)</li> - <li>Bug fixes: OpenVZ code compilation (Mikhail Pokidko), crash in - policykit auth handling (Daniel Berrange), large config files - (Daniel Berrange), cpumap hypercall size (Saori Fukuta), crash - in remote auth (Daniel Berrange), ssh args error (Daniel Berrange), - preserve vif order from config files (Hiroyuki Kaguchi), invalid - pointer access (Jim Meyering), virDomainGetXMLDesc flag handling, - device name conversion on stats (Daniel Berrange), double mutex lock - (Daniel Berrange), config file reading crashes (Guido Guenther), - xenUnifiedDomainSuspend bug (Marcus Meissner), do not crash if - /sys/hypervisor/capabilities is missing (Mark McLoughlin), - virHashRemoveSet bug (Hiroyuki Kaguchi), close-on-exec flag for - qemud signal pipe (Daniel Berrange), double free in OpenVZ - (Anton Protopopov), handle mac without addresses (Shigeki Sakamoto), - MAC addresses checks (Shigeki Sakamoto and Richard Jones), - allow to read non-seekable files (Jim Meyering)</li> - <li>Improvements: Windows build (Richard Jones), KVM/QEmu shutdown - (Guido Guenther), catch virExec output on debug (Mark McLoughlin), - integration of iptables and lokkit (Mark McLoughlin), keymap - parameter for VNC servers (Daniel Hokka Zakrisson), enable debug - by default using VIR_DEBUG (Daniel Berrange), xen 3.2 fixes - (Daniel Berrange), Python bindings for VCPU and scheduling - (Daniel Berrange), framework for automatic code syntax checks - (Jim Meyering), allow kernel+initrd setup in Xen PV (Daniel Berrange), - allow change of Disk/NIC of an inactive domains (Shigeki Sakamoto), - virsh commands to manipulate and create storage(Daniel Berrange), - update use of PolicyKit APIs, better detection of fedault hypervisor, - block device statistics for QEmu/KVM (Richard Jones), various improvements - for Xenner (Daniel Berrange)</li> - <li>Code cleanups: avoid warnings (Daniel Berrange), virRun helper - function (Dan Berrange), iptable code fixes (Mark McLoughlin), - static and const cleanups (Jim Meyering), malloc and python cleanups - (Jim Meyering), xstrtol_ull and xstrtol_ll functions (Daniel Berrange), - remove no-op networking from OpenVZ (Daniel Berrange), python generator - cleanups (Daniel Berrange), cleanup ref counting (Daniel Berrange), - remove uninitialized warnings (Jim Meyering), cleanup configure - for RHEL4 (Daniel Berrange), CR/LF cleanups (Richard Jones), - various automatic code check and associated cleanups (Jim Meyering), - various memory leaks (Jim Meyering), fix compilation when building - without Xen (Guido Guenther), mark translatables strings (Jim Meyering), - use virBufferAddLit for constant strings (Jim Meyering), fix - make distcheck (Jim Meyering), return values for python bindings (Cole - Robinson), trailing blanks fixes (Jim Meyering), gcc-4.3.0 fixes - (Mark McLoughlin), use safe read and write routines (Jim Meyering), - refactoring of code dealing with hypervisor capabilities (Daniel - Berrange), qemudReportError to use virErrorMsg (Cole Robinson), - intemediate library and Makefiles for compiling static and coverage - rule support (Jim Meyering), cleanup of various leaks (Jim Meyering)</li> + <li>New features:<br/> + build on MacOSX (Richard Jones),<br/> + storage management (Daniel Berrange),<br/> + Xenner - Xen on KVM - support (Daniel Berrange)<br/> + </li> + <li>Documentation:<br/> + Fix of various typos (Atsushi SAKAI),<br/> + memory and vcpu settings details (Richard Jones),<br/> + ethernet bridging typo (Maxwell Bottiger),<br/> + add storage APIs documentation (Daniel Berrange)<br/> + </li> + <li>Bug fixes:<br/> + OpenVZ code compilation (Mikhail Pokidko),<br/> + crash in policykit auth handling (Daniel Berrange),<br/> + large config files (Daniel Berrange),<br/> + cpumap hypercall size (Saori Fukuta),<br/> + crash in remote auth (Daniel Berrange),<br/> + ssh args error (Daniel Berrange),<br/> + preserve vif order from config files (Hiroyuki Kaguchi),<br/> + invalid pointer access (Jim Meyering),<br/> + virDomainGetXMLDesc flag handling,<br/> + device name conversion on stats (Daniel Berrange),<br/> + double mutex lock (Daniel Berrange),<br/> + config file reading crashes (Guido Guenther),<br/> + xenUnifiedDomainSuspend bug (Marcus Meissner),<br/> + do not crash if /sys/hypervisor/capabilities is missing (Mark McLoughlin),<br/> + virHashRemoveSet bug (Hiroyuki Kaguchi),<br/> + close-on-exec flag for qemud signal pipe (Daniel Berrange),<br/> + double free in OpenVZ (Anton Protopopov),<br/> + handle mac without addresses (Shigeki Sakamoto),<br/> + MAC addresses checks (Shigeki Sakamoto and Richard Jones),<br/> + allow to read non-seekable files (Jim Meyering)<br/> + </li> + <li>Improvements:<br/> + Windows build (Richard Jones),<br/> + KVM/QEmu shutdown (Guido Guenther),<br/> + catch virExec output on debug (Mark McLoughlin),<br/> + integration of iptables and lokkit (Mark McLoughlin),<br/> + keymap parameter for VNC servers (Daniel Hokka Zakrisson),<br/> + enable debug by default using VIR_DEBUG (Daniel Berrange),<br/> + xen 3.2 fixes (Daniel Berrange),<br/> + Python bindings for VCPU and scheduling (Daniel Berrange),<br/> + framework for automatic code syntax checks (Jim Meyering),<br/> + allow kernel+initrd setup in Xen PV (Daniel Berrange),<br/> + allow change of Disk/NIC of an inactive domains (Shigeki Sakamoto),<br/> + virsh commands to manipulate and create storage(Daniel Berrange),<br/> + update use of PolicyKit APIs,<br/> + better detection of fedault hypervisor,<br/> + block device statistics for QEmu/KVM (Richard Jones),<br/> + various improvements for Xenner (Daniel Berrange)<br/> + </li> + <li>Code cleanups:<br/> + avoid warnings (Daniel Berrange),<br/> + virRun helper function (Dan Berrange),<br/> + iptable code fixes (Mark McLoughlin),<br/> + static and const cleanups (Jim Meyering),<br/> + malloc and python cleanups (Jim Meyering),<br/> + xstrtol_ull and xstrtol_ll functions (Daniel Berrange),<br/> + remove no-op networking from OpenVZ (Daniel Berrange),<br/> + python generator cleanups (Daniel Berrange),<br/> + cleanup ref counting (Daniel Berrange),<br/> + remove uninitialized warnings (Jim Meyering),<br/> + cleanup configure for RHEL4 (Daniel Berrange),<br/> + CR/LF cleanups (Richard Jones),<br/> + various automatic code check and associated cleanups (Jim Meyering),<br/> + various memory leaks (Jim Meyering),<br/> + fix compilation when building without Xen (Guido Guenther),<br/> + mark translatables strings (Jim Meyering),<br/> + use virBufferAddLit for constant strings (Jim Meyering),<br/> + fix make distcheck (Jim Meyering),<br/> + return values for python bindings (Cole Robinson),<br/> + trailing blanks fixes (Jim Meyering),<br/> + gcc-4.3.0 fixes (Mark McLoughlin),<br/> + use safe read and write routines (Jim Meyering),<br/> + refactoring of code dealing with hypervisor capabilities (Daniel Berrange),<br/> + qemudReportError to use virErrorMsg (Cole Robinson),<br/> + intemediate library and Makefiles for compiling static and coverage rule support (Jim Meyering),<br/> + cleanup of various leaks (Jim Meyering)<br/> + </li> </ul> <h3>0.4.0: Dec 18 2007</h3> <ul> -- 2.4.3

On Wed, Oct 14, 2015 at 10:36:03AM +0200, Andrea Bolognani wrote:
The changes for releases earlier than 0.7.1 were mostly lumped together as opposed to being tidly organized with one change per line, like we have done from that point onwards.
As a result, they look awful in the HTML version and don't work too well in the plain text version either.
Luckily, except for the very first releases, the information is still very detailed, so it's enough to organize it properly. --- docs/news.html.in | 782 ++++++++++++++++++++++++++++++++++-------------------- 1 file changed, 496 insertions(+), 286 deletions(-)
diff --git a/docs/news.html.in b/docs/news.html.in index 0bc44a6..668d188 100644 --- a/docs/news.html.in +++ b/docs/news.html.in @@ -19426,313 +19426,523 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> </ul> <h3>0.5.1: Dec 4 2008</h3> <ul> - <li>Portability: fix missing dep in spec file, fix compilation with new - NUMA libraries (Daniel Berrange), udev compatibility for RHEL (Chris - Lalancette), </li> - <li>Documentation: documentation copy and paste errors and typo (Cole - Robinson)</li> - <li>Bug fixes: add a delay in storage backend for disks to show up - (Chris Lalancette), fix parsing for CDRom device with no source - (Daniel Berrange), use xenstore to list domains to avoid some - bugs (Guido Günther), remove a leak in xen inotify code (Daniel - Berrange), UML driver freeing of uninitialialized variable (Ron - Yorston), fix UML inotify code (Daniel Berrange), crash when - adding storage without a format (Cole Robinson)</li> - <li>Improvements: use xend preferably to hypervisor call to set Xen - max memory (Jim Fehlig), allow remote://hostname/ URI for automatic - probe of hypervisors (Daniel Berrange), fix daemon configuration - regression testing (Jim Meyering ), check /usr/bin/kvm for QEmu - driver init (Guido Günther), proper active vs. inactive - differentiation (Guido Günther), improve MTU setting on tap - interfaces (Eduardo Habkost), increase timeout for initial QEmu - monitor poll (Cole Robinson)</li> - <li>Cleanups:fix improper initialisations (Jim Meyering)</li> + <li>Portability:<br/> + fix missing dep in spec file,<br/> + fix compilation with new NUMA libraries (Daniel Berrange),<br/>
I don't know if that's worth fixing, but this way the first line is missing an attribution (is that the correct word, even?). There are few others throughout the file, but then again, does anyone really care?

On Wed, 2015-10-14 at 14:54 +0200, Martin Kletzander wrote:
+ <li>Portability:<br/> + fix missing dep in spec file,<br/> + fix compilation with new NUMA libraries (Daniel Berrange),<br/>
I don't know if that's worth fixing, but this way the first line is missing an attribution (is that the correct word, even?).
There are few others throughout the file, but then again, does anyone really care?
My undertanding is that DV only added attribution for changes made by other people, hence all changes with no explicit attribution are to be considered his. I don't think having explicit attribution is really required - we haven't had it until now - but adding it with a follow-up patch will be easy enough if we decide it's something we're interested in. CCing DV for confirmation. Cheers. -- Andrea Bolognani Software Engineer - Virtualization Team

On Wed, Oct 14, 2015 at 04:59:04PM +0200, Andrea Bolognani wrote:
On Wed, 2015-10-14 at 14:54 +0200, Martin Kletzander wrote:
+ <li>Portability:<br/> + fix missing dep in spec file,<br/> + fix compilation with new NUMA libraries (Daniel Berrange),<br/>
I don't know if that's worth fixing, but this way the first line is missing an attribution (is that the correct word, even?).
There are few others throughout the file, but then again, does anyone really care?
My undertanding is that DV only added attribution for changes made by other people, hence all changes with no explicit attribution are to be considered his.
I don't think having explicit attribution is really required - we haven't had it until now - but adding it with a follow-up patch will be easy enough if we decide it's something we're interested in.
You see and I understood it as something like: 'fix missing dep in spec file' and 'fix compilation with new NUMA libraries' were done by Daniel Berrange. I don't think we need to deal with that.
CCing DV for confirmation.
Cheers.
-- Andrea Bolognani Software Engineer - Virtualization Team

The changes for releases earlier than 0.7.1 were mostly lumped together as opposed to being tidly organized with one change per line, like we have done from that point onwards. As a result, they look awful in the HTML version and don't work too well in the plain text version either. Luckily, except for the very first releases, the information is still very detailed, so it's enough to organize it properly. --- docs/news.html.in | 841 +++++++++++++++++++++++++++++++++--------------------- 1 file changed, 516 insertions(+), 325 deletions(-) diff --git a/docs/news.html.in b/docs/news.html.in index 668d188..bd4e0cb 100644 --- a/docs/news.html.in +++ b/docs/news.html.in @@ -19946,155 +19946,221 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> </ul> <h3>0.4.0: Dec 18 2007</h3> <ul> - <li>New features: Compilation on Windows cygwin/mingw (Richard Jones), - Ruby bindings (David Lutterkort), SASL based authentication for - libvirt remote support (Daniel Berrange), PolicyKit authentication - (Daniel Berrange)</li> - <li>Documentation: example files for QEMU and libvirtd configuations - (Daniel Berrange), english cleanups (Jim Paris), CIM and OpenVZ - references, document <shareable/>, daemon startup when using - QEMU/KVM, document HV support for new NUMA calls (Richard Jones), - various english fixes (Bruce Montague), OCaml docs links (Richard Jones), - describe the various bindings add Ruby link, Windows support page - (Richard Jones), authentication documentation updates (Daniel Berrange) - </li> - <li>Bug fixes: NUMA topology error handling (Beth Kon), NUMA topology - cells without CPU (Beth Kon), XML to/from XM bridge config (Daniel - Berrange), XM processing of vnc parameters (Daniel Berrange), Reset - migration source after failure (Jim Paris), negative integer in config - (Tatsuro Enokura), zero terminating string buffer, detect integer - overflow (Jim Meyering), QEmu command line ending fixes (Daniel Berrange), - recursion problem in the daemon (Daniel Berrange), HVM domain with CDRom - (Masayuki Sunou), off by one error in NUMA cpu count (Beth Kon), - avoid xend errors when adding disks (Masayuki Sunou), compile error - (Chris Lalancette), transposed fwrite args (Jim Meyering), compile - without xen and on solaris (Jim Paris), parsing of interface names - (Richard Jones), overflow for starts on 32bits (Daniel Berrange), - fix problems in error reporting (Saori Fukuta), wrong call to - brSetForwardDelay changed to brSetEnableSTP (Richard Jones), - allow shareable disk in old Xen, fix wrong certificate file (Jim - Meyering), avoid some startup error when non-root, off-by-1 buffer - NULL termination (Daniel Berrange), various string allocation fixes - (Daniel Berrange), avoid problems with vnetXXX interfaces in domain dumps - (Daniel Berrange), build fixes for RHEL (Daniel Berrange), virsh prompt - should not depend on uid (Richard Jones), fix scaping of '<' (Richard - Jones), fix detach-disk on Xen tap devices (Saori Fukuta), CPU - parameter setting in XM config (Saori Fukuta), credential handling - fixes (Daniel Berrange), fix compatibility with Xen 3.2.0 (Daniel - Berrange) - </li> - <li>Improvements: /etc/libvirt/qemu.conf configuration for QEMU driver - (Daniel Berrange), NUMA cpu pinning in config files (DV and Saori Fukuta), - CDRom media change in KVM/QEMU (Daniel Berrange), tests for - <shareable/> in configs, pinning inactive domains for Xen 3.0.3 - (Saori Fukuta), use gnulib for portability enhancement (Jim Meyering), - --without-libvirtd config option (Richard Jones), Python bindings for - NUMA, add extra utility functions to buffer (Richard Jones), - separate qparams module for handling query parameters (Richard Jones) - </li> - <li>Code cleanups: remove virDomainRestart from API as it was never used - (Richard Jones), constify params for attach/detach APIs (Daniel Berrange), - gcc printf attribute checkings (Jim Meyering), refactoring of device - parsing code and shell escaping (Daniel Berrange), virsh schedinfo - parameters validation (Masayuki Sunou), Avoid risk of format string abuse - (Jim Meyering), integer parsing cleanups (Jim Meyering), build out - of the source tree (Jim Meyering), URI parsing refactoring (Richard - Jones), failed strdup/malloc handling (Jim Meyering), Make "make - distcheck" work (Jim Meyering), improve xen internall error reports - (Richard Jones), cleanup of the daemon remote code (Daniel Berrange), - rename error VIR_FROM_LINUX to VIR_FROM_STATS_LINUX (Richard Jones), - don't compile the proxy if without Xen (Richard Jones), fix paths when - configuring for /usr prefix, improve error reporting code (Jim Meyering), - detect heap allocation failure (Jim Meyering), disable xen sexpr parsing - code if Xen is disabled (Daniel Berrange), cleanup of the GetType - entry point for Xen drivers, move some QEmu path handling to generic - module (Daniel Berrange), many code cleanups related to the Windows - port (Richard Jones), disable the proxy if using PolicyKit, readline - availability detection, test libvirtd's config-processing code (Jim - Meyering), use a variable name as sizeof argument (Jim Meyering) + <li>New features:<br/> + Compilation on Windows cygwin/mingw (Richard Jones),<br/> + Ruby bindings (David Lutterkort),<br/> + SASL based authentication for libvirt remote support (Daniel Berrange),<br/> + PolicyKit authentication (Daniel Berrange)<br/> + </li> + <li>Documentation:<br/> + example files for QEMU and libvirtd configuations (Daniel Berrange),<br/> + english cleanups (Jim Paris),<br/> + CIM and OpenVZ references,<br/> + document <shareable/>,<br/> + daemon startup when using QEMU/KVM,<br/> + document HV support for new NUMA calls (Richard Jones),<br/> + various english fixes (Bruce Montague),<br/> + OCaml docs links (Richard Jones),<br/> + describe the various bindings add Ruby link,<br/> + Windows support page (Richard Jones),<br/> + authentication documentation updates (Daniel Berrange)<br/> + </li> + <li>Bug fixes:<br/> + NUMA topology error handling (Beth Kon),<br/> + NUMA topology cells without CPU (Beth Kon),<br/> + XML to/from XM bridge config (Daniel Berrange),<br/> + XM processing of vnc parameters (Daniel Berrange),<br/> + Reset migration source after failure (Jim Paris),<br/> + negative integer in config (Tatsuro Enokura),<br/> + zero terminating string buffer,<br/> + detect integer overflow (Jim Meyering),<br/> + QEmu command line ending fixes (Daniel Berrange),<br/> + recursion problem in the daemon (Daniel Berrange),<br/> + HVM domain with CDRom (Masayuki Sunou),<br/> + off by one error in NUMA cpu count (Beth Kon),<br/> + avoid xend errors when adding disks (Masayuki Sunou),<br/> + compile error (Chris Lalancette),<br/> + transposed fwrite args (Jim Meyering),<br/> + compile without xen and on solaris (Jim Paris),<br/> + parsing of interface names (Richard Jones),<br/> + overflow for starts on 32bits (Daniel Berrange),<br/> + fix problems in error reporting (Saori Fukuta),<br/> + wrong call to brSetForwardDelay changed to brSetEnableSTP (Richard Jones),<br/> + allow shareable disk in old Xen,<br/> + fix wrong certificate file (Jim Meyering),<br/> + avoid some startup error when non-root,<br/> + off-by-1 buffer NULL termination (Daniel Berrange),<br/> + various string allocation fixes (Daniel Berrange),<br/> + avoid problems with vnetXXX interfaces in domain dumps (Daniel Berrange),<br/> + build fixes for RHEL (Daniel Berrange),<br/> + virsh prompt should not depend on uid (Richard Jones),<br/> + fix scaping of '<' (Richard Jones),<br/> + fix detach-disk on Xen tap devices (Saori Fukuta),<br/> + CPU parameter setting in XM config (Saori Fukuta),<br/> + credential handling fixes (Daniel Berrange),<br/> + fix compatibility with Xen 3.2.0 (Daniel Berrange)<br/> + </li> + <li>Improvements:<br/> + /etc/libvirt/qemu.conf configuration for QEMU driver (Daniel Berrange),<br/> + NUMA cpu pinning in config files (DV and Saori Fukuta),<br/> + CDRom media change in KVM/QEMU (Daniel Berrange),<br/> + tests for <shareable/> in configs,<br/> + pinning inactive domains for Xen 3.0.3 (Saori Fukuta),<br/> + use gnulib for portability enhancement (Jim Meyering),<br/> + --without-libvirtd config option (Richard Jones),<br/> + Python bindings for NUMA,<br/> + add extra utility functions to buffer (Richard Jones),<br/> + separate qparams module for handling query parameters (Richard Jones)<br/> + </li> + <li>Code cleanups:<br/> + remove virDomainRestart from API as it was never used (Richard Jones),<br/> + constify params for attach/detach APIs (Daniel Berrange),<br/> + gcc printf attribute checkings (Jim Meyering),<br/> + refactoring of device parsing code and shell escaping (Daniel Berrange),<br/> + virsh schedinfo parameters validation (Masayuki Sunou),<br/> + Avoid risk of format string abuse (Jim Meyering),<br/> + integer parsing cleanups (Jim Meyering),<br/> + build out of the source tree (Jim Meyering),<br/> + URI parsing refactoring (Richard Jones),<br/> + failed strdup/malloc handling (Jim Meyering),<br/> + Make "make distcheck" work (Jim Meyering),<br/> + improve xen internall error reports (Richard Jones),<br/> + cleanup of the daemon remote code (Daniel Berrange),<br/> + rename error VIR_FROM_LINUX to VIR_FROM_STATS_LINUX (Richard Jones),<br/> + don't compile the proxy if without Xen (Richard Jones),<br/> + fix paths when configuring for /usr prefix,<br/> + improve error reporting code (Jim Meyering),<br/> + detect heap allocation failure (Jim Meyering),<br/> + disable xen sexpr parsing code if Xen is disabled (Daniel Berrange),<br/> + cleanup of the GetType entry point for Xen drivers,<br/> + move some QEmu path handling to generic module (Daniel Berrange),<br/> + many code cleanups related to the Windows port (Richard Jones),<br/> + disable the proxy if using PolicyKit,<br/> + readline availability detection,<br/> + test libvirtd's config-processing code (Jim Meyering),<br/> + use a variable name as sizeof argument (Jim Meyering)<br/> </li> </ul> <h3>0.3.3: Sep 30 2007</h3> <ul> - <li>New features: Avahi mDNS daemon export (Daniel Berrange), - NUMA support (Beth Kan) </li> - <li>Documentation: cleanups (Toth Istvan), typos (Eduardo Pereira), </li> - <li>Bug fixes: memory corruption on large dumps (Masayuki Sunou), fix - virsh vncdisplay command exit (Masayuki Sunou), Fix network stats - TX/RX result (Richard Jones), warning on Xen 3.0.3 (Richard Jones), - missing buffer check in virDomainXMLDevID (Hugh Brock), avoid zombies - when using remote (Daniel Berrange), xend connection error message - (Richard Jones), avoid ssh tty prompt (Daniel Berrange), username - handling for remote URIs (Fabian Deutsch), fix potential crash - on multiple input XML tags (Daniel Berrange), Solaris Xen hypercalls - fixup (Mark Johnson)</li> - <li>Improvements: OpenVZ support (Shuveb Hussain and Anoop Cyriac), - CD-Rom reload on XEn (Hugh Brock), PXE boot got QEmu/KVM (Daniel - Berrange), QEmu socket permissions customization (Daniel Berrange), - more QEmu support (Richard Jones), better path detection for qemu and - dnsmasq (Richard Jones), QEmu flags are per-Domain (Daniel Berrange), - virsh freecell command, Solaris portability fixes (Mark Johnson), - default bootloader support (Daniel Berrange), new virNodeGetFreeMemory - API, vncpasswd extraction in configuration files if secure (Mark - Johnson and Daniel Berrange), Python bindings for block and interface - statistics</li> - <li>Code cleanups: virDrvOpenRemoteFlags definition (Richard Jones), - configure tests and output (Daniel Berrange)</li> + <li>New features:<br/> + Avahi mDNS daemon export (Daniel Berrange),<br/> + NUMA support (Beth Kan)<br/> + </li> + <li>Documentation:<br/> + cleanups (Toth Istvan),<br/> + typos (Eduardo Pereira)<br/> + </li> + <li>Bug fixes:<br/> + memory corruption on large dumps (Masayuki Sunou),<br/> + fix virsh vncdisplay command exit (Masayuki Sunou),<br/> + Fix network stats TX/RX result (Richard Jones),<br/> + warning on Xen 3.0.3 (Richard Jones),<br/> + missing buffer check in virDomainXMLDevID (Hugh Brock),<br/> + avoid zombies when using remote (Daniel Berrange),<br/> + xend connection error message (Richard Jones),<br/> + avoid ssh tty prompt (Daniel Berrange),<br/> + username handling for remote URIs (Fabian Deutsch),<br/> + fix potential crash on multiple input XML tags (Daniel Berrange),<br/> + Solaris Xen hypercalls fixup (Mark Johnson)<br/> + </li> + <li>Improvements:<br/> + OpenVZ support (Shuveb Hussain and Anoop Cyriac),<br/> + CD-Rom reload on XEn (Hugh Brock),<br/> + PXE boot got QEmu/KVM (Daniel Berrange),<br/> + QEmu socket permissions customization (Daniel Berrange),<br/> + more QEmu support (Richard Jones),<br/> + better path detection for qemu and dnsmasq (Richard Jones),<br/> + QEmu flags are per-Domain (Daniel Berrange),<br/> + virsh freecell command,<br/> + Solaris portability fixes (Mark Johnson),<br/> + default bootloader support (Daniel Berrange),<br/> + new virNodeGetFreeMemory API,<br/> + vncpasswd extraction in configuration files if secure (Mark Johnson and Daniel Berrange),<br/> + Python bindings for block and interface statistics<br/> + </li> + <li>Code cleanups:<br/> + virDrvOpenRemoteFlags definition (Richard Jones),<br/> + configure tests and output (Daniel Berrange)<br/> + </li> </ul> <h3>0.3.2: Aug 21 2007</h3> <ul> - <li>New features: KVM migration and save/restore (Jim Paris), - added API for migration (Richard Jones), added APIs for block device and - interface statistic (Richard Jones).</li> - <li>Documentation: examples for XML network APIs, - fix typo and schedinfo synopsis in man page (Atsushi SAKAI), - hypervisor support page update (Richard Jones).</li> - <li>Bug fixes: remove a couple of leaks in QEmu/KVM backend(Daniel berrange), - fix GnuTLS 1.0 compatibility (Richard Jones), --config/-f option - mistake for libvirtd (Richard Jones), remove leak in QEmu backend - (Jim Paris), fix some QEmu communication bugs (Jim Paris), UUID - lookup though proxy fix, setvcpus checking bugs (with Atsushi SAKAI), - int checking in virsh parameters (with Masayuki Sunou), deny devices - attach/detach for < Xen 3.0.4 (Masayuki Sunou), XenStore query - memory leak (Masayuki Sunou), virsh schedinfo cleanup (Saori Fukuta).</li> - <li>Improvement: virsh new ttyconsole command, networking API implementation - for test driver (Daniel berrange), qemu/kvm feature reporting of - ACPI/APIC (David Lutterkort), checking of QEmu architectures (Daniel - berrange), improve devices XML errors reporting (Masayuki Sunou), - speedup of domain queries on Xen (Daniel berrange), augment XML dumps - with interface devices names (Richard Jones), internal API to query - drivers for features (Richard Jones). - </li> - <li>Cleanups: Improve virNodeGetInfo implentation (Daniel berrange), - general UUID code cleanup (Daniel berrange), fix API generator - file selection. </li> + <li>New features:<br/> + KVM migration and save/restore (Jim Paris),<br/> + added API for migration (Richard Jones),<br/> + added APIs for block device and interface statistic (Richard Jones)<br/> + </li> + <li>Documentation:<br/> + examples for XML network APIs,<br/> + fix typo and schedinfo synopsis in man page (Atsushi SAKAI),<br/> + hypervisor support page update (Richard Jones)<br/> + </li> + <li>Bug fixes:<br/> + remove a couple of leaks in QEmu/KVM backend(Daniel berrange),<br/> + fix GnuTLS 1.0 compatibility (Richard Jones),<br/> + --config/-f option mistake for libvirtd (Richard Jones),<br/> + remove leak in QEmu backend (Jim Paris),<br/> + fix some QEmu communication bugs (Jim Paris),<br/> + UUID lookup though proxy fix,<br/> + setvcpus checking bugs (with Atsushi SAKAI),<br/> + int checking in virsh parameters (with Masayuki Sunou),<br/> + deny devices attach/detach for < Xen 3.0.4 (Masayuki Sunou),<br/> + XenStore query memory leak (Masayuki Sunou),<br/> + virsh schedinfo cleanup (Saori Fukuta)<br/> + </li> + <li>Improvement:<br/> + virsh new ttyconsole command,<br/> + networking API implementation for test driver (Daniel berrange),<br/> + qemu/kvm feature reporting of ACPI/APIC (David Lutterkort),<br/> + checking of QEmu architectures (Daniel berrange),<br/> + improve devices XML errors reporting (Masayuki Sunou),<br/> + speedup of domain queries on Xen (Daniel berrange),<br/> + augment XML dumps with interface devices names (Richard Jones),<br/> + internal API to query drivers for features (Richard Jones)<br/> + </li> + <li>Cleanups:<br/> + Improve virNodeGetInfo implentation (Daniel berrange),<br/> + general UUID code cleanup (Daniel berrange),<br/> + fix API generator file selection<br/> + </li> </ul> <h3>0.3.1: Jul 24 2007</h3> <ul> - <li>Documentation: index to remote page, script to test certificates, - IPv6 remote support docs (Daniel Berrange), document - VIRSH_DEFAULT_CONNECT_URI in virsh man page (David Lutterkort), - Relax-NG early grammar for the network XML (David Lutterkort)</li> - <li>Bug fixes: leaks in disk XML parsing (Masayuki Sunou), hypervisor - alignment call problems on PPC64 (Christian Ehrhardt), dead client - registration in daemon event loop (Daniel Berrange), double free - in error handling (Daniel Berrange), close on exec for log file - descriptors in the daemon (Daniel Berrange), avoid caching problem - in remote daemon (Daniel Berrange), avoid crash after QEmu domain - failure (Daniel Berrange)</li> - <li>Improvements: checks of x509 certificates and keys (Daniel Berrange), - error reports in the daemon (Daniel Berrange), checking of Ethernet MAC - addresses in XML configs (Masayuki Sunou), support for a new - clock switch between UTC and localtime (Daniel Berrange), early - version of OpenVZ support (Shuveb Hussain), support for input devices - on PS/2 and USB buses (Daniel Berrange), more tests especially - the QEmu support (Daniel Berrange), range check in credit scheduler - (with Saori Fukuta and Atsushi Sakai), add support for listen VNC - parameter un QEmu and fix command line arg (Daniel Berrange)</li> - <li>Cleanups: debug tracing (Richard Jones), removal of --with-qemud-pid-file - (Richard Jones), remove unused virDeviceMode, new util module for - code shared between drivers (Shuveb Hussain), xen header location - detection (Richard Jones)</li> + <li>Documentation:<br/> + index to remote page,<br/> + script to test certificates,<br/> + IPv6 remote support docs (Daniel Berrange),<br/> + document VIRSH_DEFAULT_CONNECT_URI in virsh man page (David Lutterkort),<br/> + Relax-NG early grammar for the network XML (David Lutterkort)<br/> + </li> + <li>Bug fixes:<br/> + leaks in disk XML parsing (Masayuki Sunou),<br/> + hypervisor alignment call problems on PPC64 (Christian Ehrhardt),<br/> + dead client registration in daemon event loop (Daniel Berrange),<br/> + double free in error handling (Daniel Berrange),<br/> + close on exec for log file descriptors in the daemon (Daniel Berrange),<br/> + avoid caching problem in remote daemon (Daniel Berrange),<br/> + avoid crash after QEmu domain failure (Daniel Berrange)<br/> + </li> + <li>Improvements:<br/> + checks of x509 certificates and keys (Daniel Berrange),<br/> + error reports in the daemon (Daniel Berrange),<br/> + checking of Ethernet MAC addresses in XML configs (Masayuki Sunou),<br/> + support for a new clock switch between UTC and localtime (Daniel Berrange),<br/> + early version of OpenVZ support (Shuveb Hussain),<br/> + support for input devices on PS/2 and USB buses (Daniel Berrange),<br/> + more tests especially the QEmu support (Daniel Berrange),<br/> + range check in credit scheduler (with Saori Fukuta and Atsushi Sakai),<br/> + add support for listen VNC parameter un QEmu and fix command line arg (Daniel Berrange)<br/> + </li> + <li>Cleanups:<br/> + debug tracing (Richard Jones),<br/> + removal of --with-qemud-pid-file (Richard Jones),<br/> + remove unused virDeviceMode,<br/> + new util module for code shared between drivers (Shuveb Hussain),<br/> + xen header location detection (Richard Jones)<br/> + </li> </ul> <h3>0.3.0: Jul 9 2007</h3> <ul> @@ -20102,158 +20168,229 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> See <a href="http://libvirt.org/remote.html">the remote page</a> of the documentation </li> - <li>Documentation: remote support (Richard Jones), description of - the URI connection strings (Richard Jones), update of virsh man - page, matrix of libvirt API/hypervisor support with version - information (Richard Jones)</li> - <li>Bug fixes: examples Makefile.am generation (Richard Jones), - SetMem fix (Mark Johnson), URI handling and ordering of - drivers (Daniel Berrange), fix virsh help without hypervisor (Richard - Jones), id marshalling fix (Daniel Berrange), fix virConnectGetMaxVcpus - on remote (Richard Jones), avoid a realloc leak (Jim Meyering), scheduler - parameters handling for Xen (Richard Jones), various early remote - bug fixes (Richard Jones), remove virsh leaks of domains references - (Masayuki Sunou), configCache refill bug (Richard Jones), fix - XML serialization bugs</li> - <li>Improvements: QEmu switch to XDR-based protocol (Dan Berrange), - device attach/detach commands (Masayuki Sunou), OCaml bindings - (Richard Jones), new entry points virDomainGetConnect and - virNetworkGetConnect useful for bindings (Richard Jones), - reunitifaction of remote and qemu daemon under a single libvirtd - with a config file (Daniel Berrange)</li> - <li>Cleanups: parsing of connection URIs (Richard Jones), messages - from virsh (Saori Fukuta), Coverage files (Daniel Berrange), - Solaris fixes (Mark Johnson), avoid [r]index calls (Richard Jones), - release information in Xen backend, virsh cpupin command cleanups - (Masayuki Sunou), xen:/// support as standard Xen URI (Richard Jones and - Daniel Berrange), improve driver selection/decline mechanism (Richard - Jones), error reporting on XML dump (Richard Jones), Remove unused - virDomainKernel structure (Richard Jones), daemon event loop event - handling (Daniel Berrange), various unifications cleanup in the daemon - merging (Daniel Berrange), internal file and timer monitoring API - (Daniel Berrange), remove libsysfs dependancy, call brctl program - directly (Daniel Berrange), virBuffer functions cleanups (Richard Jones), - make init script LSB compliant, error handling on lookup functions - (Richard Jones), remove internal virGetDomainByID (Richard Jones), - revamp of xen subdrivers interfaces (Richard Jones)</li> + <li>Documentation:<br/> + remote support (Richard Jones),<br/> + description of the URI connection strings (Richard Jones),<br/> + update of virsh man page,<br/> + matrix of libvirt API/hypervisor support with version information (Richard Jones)<br/> + </li> + <li>Bug fixes:<br/> + examples Makefile.am generation (Richard Jones),<br/> + SetMem fix (Mark Johnson),<br/> + URI handling and ordering of drivers (Daniel Berrange),<br/> + fix virsh help without hypervisor (Richard Jones),<br/> + id marshalling fix (Daniel Berrange),<br/> + fix virConnectGetMaxVcpus on remote (Richard Jones),<br/> + avoid a realloc leak (Jim Meyering),<br/> + scheduler parameters handling for Xen (Richard Jones),<br/> + various early remote bug fixes (Richard Jones),<br/> + remove virsh leaks of domains references (Masayuki Sunou),<br/> + configCache refill bug (Richard Jones),<br/> + fix XML serialization bugs<br/> + </li> + <li>Improvements:<br/> + QEmu switch to XDR-based protocol (Dan Berrange),<br/> + device attach/detach commands (Masayuki Sunou),<br/> + OCaml bindings (Richard Jones),<br/> + new entry points virDomainGetConnect and virNetworkGetConnect useful for bindings (Richard Jones),<br/> + reunitifaction of remote and qemu daemon under a single libvirtd with a config file (Daniel Berrange)<br/> + </li> + <li>Cleanups:<br/> + parsing of connection URIs (Richard Jones),<br/> + messages from virsh (Saori Fukuta),<br/> + Coverage files (Daniel Berrange),<br/> + Solaris fixes (Mark Johnson),<br/> + avoid [r]index calls (Richard Jones),<br/> + release information in Xen backend,<br/> + virsh cpupin command cleanups (Masayuki Sunou),<br/> + xen:/// support as standard Xen URI (Richard Jones and Daniel Berrange),<br/> + improve driver selection/decline mechanism (Richard Jones),<br/> + error reporting on XML dump (Richard Jones),<br/> + Remove unused virDomainKernel structure (Richard Jones),<br/> + daemon event loop event handling (Daniel Berrange),<br/> + various unifications cleanup in the daemon merging (Daniel Berrange),<br/> + internal file and timer monitoring API (Daniel Berrange),<br/> + remove libsysfs dependancy,<br/> + call brctl program directly (Daniel Berrange),<br/> + virBuffer functions cleanups (Richard Jones),<br/> + make init script LSB compliant,<br/> + error handling on lookup functions (Richard Jones),<br/> + remove internal virGetDomainByID (Richard Jones),<br/> + revamp of xen subdrivers interfaces (Richard Jones)<br/> + </li> <li>Localization updates</li> </ul> <h3>0.2.3: Jun 8 2007</h3> <ul> - <li>Documentation: documentation for upcoming remote access (Richard Jones), - virConnectNumOfDefinedDomains doc (Jan Michael), virsh help messages - for dumpxml and net-dumpxml (Chris Wright), </li> - <li>Bug fixes: RelaxNG schemas regexp fix (Robin Green), RelaxNG arch bug - (Mark McLoughlin), large buffers bug fixes (Shigeki Sakamoto), error - on out of memory condition (Shigeki Sakamoto), virshStrdup fix, non-root - driver when using Xen bug (Richard Jones), use --strict-order when - running dnsmasq (Daniel Berrange), virbr0 weirdness on restart (Mark - McLoughlin), keep connection error messages (Richard Jones), increase - QEmu read buffer on help (Daniel Berrange), rpm dependance on - dnsmasq (Daniel Berrange), fix XML boot device syntax (Daniel Berrange), - QEmu memory bug (Daniel Berrange), memory leak fix (Masayuki Sunou), - fix compiler flags (Richard Jones), remove type ioemu on recent Xen - HVM for paravirt drivers (Saori Fukuta), uninitialized string bug - (Masayuki Sunou), allow init even if the daemon is not running, - XML to config fix (Daniel Berrange)</li> - <li>Improvements: add a special error class for the test module (Richard - Jones), virConnectGetCapabilities on proxy (Richard Jones), allow - network driver to decline usage (Richard Jones), extend error messages - for upcoming remote access (Richard Jones), on_reboot support for QEmu - (Daniel Berrange), save daemon output in a log file (Daniel Berrange), - xenXMDomainDefineXML can override guest config (Hugh Brock), - add attach-device and detach-device commands to virsh (Masayuki Sunou - and Mark McLoughlin and Richard Jones), make virGetVersion case - insensitive and Python bindings (Richard Jones), new scheduler API - (Atsushi SAKAI), localizations updates, add logging option for virsh - (Nobuhiro Itou), allow arguments to be passed to bootloader (Hugh Brock), - increase the test suite (Daniel Berrange and Hugh Brock)</li> - <li>Cleanups: Remove VIR_DRV_OPEN_QUIET (Richard Jones), disable xm_internal.c - for Xen > 3.0.3 (Daniel Berrange), unused fields in _virDomain (Richard - Jones), export __virGetDomain and __virGetNetwork for libvirtd only - (Richard Jones), ignore old VNC config for HVM on recent Xen (Daniel - Berrange), various code cleanups, -Werror cleanup (Hugh Brock)</li> + <li>Documentation:<br/> + documentation for upcoming remote access (Richard Jones),<br/> + virConnectNumOfDefinedDomains doc (Jan Michael),<br/> + virsh help messages for dumpxml and net-dumpxml (Chris Wright)<br/> + </li> + <li>Bug fixes:<br/> + RelaxNG schemas regexp fix (Robin Green),<br/> + RelaxNG arch bug (Mark McLoughlin),<br/> + large buffers bug fixes (Shigeki Sakamoto),<br/> + error on out of memory condition (Shigeki Sakamoto),<br/> + virshStrdup fix,<br/> + non-root driver when using Xen bug (Richard Jones),<br/> + use --strict-order when running dnsmasq (Daniel Berrange),<br/> + virbr0 weirdness on restart (Mark McLoughlin),<br/> + keep connection error messages (Richard Jones),<br/> + increase QEmu read buffer on help (Daniel Berrange),<br/> + rpm dependance on dnsmasq (Daniel Berrange),<br/> + fix XML boot device syntax (Daniel Berrange),<br/> + QEmu memory bug (Daniel Berrange),<br/> + memory leak fix (Masayuki Sunou),<br/> + fix compiler flags (Richard Jones),<br/> + remove type ioemu on recent Xen HVM for paravirt drivers (Saori Fukuta),<br/> + uninitialized string bug (Masayuki Sunou),<br/> + allow init even if the daemon is not running,<br/> + XML to config fix (Daniel Berrange)<br/> + </li> + <li>Improvements:<br/> + add a special error class for the test module (Richard Jones),<br/> + virConnectGetCapabilities on proxy (Richard Jones),<br/> + allow network driver to decline usage (Richard Jones),<br/> + extend error messages for upcoming remote access (Richard Jones),<br/> + on_reboot support for QEmu (Daniel Berrange),<br/> + save daemon output in a log file (Daniel Berrange),<br/> + xenXMDomainDefineXML can override guest config (Hugh Brock),<br/> + add attach-device and detach-device commands to virsh (Masayuki Sunou and Mark McLoughlin and Richard Jones),<br/> + make virGetVersion case insensitive and Python bindings (Richard Jones),<br/> + new scheduler API (Atsushi SAKAI),<br/> + localizations updates,<br/> + add logging option for virsh (Nobuhiro Itou),<br/> + allow arguments to be passed to bootloader (Hugh Brock),<br/> + increase the test suite (Daniel Berrange and Hugh Brock)<br/> + </li> + <li>Cleanups:<br/> + Remove VIR_DRV_OPEN_QUIET (Richard Jones),<br/> + disable xm_internal.c for Xen > 3.0.3 (Daniel Berrange),<br/> + unused fields in _virDomain (Richard Jones),<br/> + export __virGetDomain and __virGetNetwork for libvirtd only (Richard Jones),<br/> + ignore old VNC config for HVM on recent Xen (Daniel Berrange),<br/> + various code cleanups,<br/> + -Werror cleanup (Hugh Brock)<br/> + </li> </ul> <h3>0.2.2: Apr 17 2007</h3> <ul> - <li>Documentation: fix errors due to Amaya (with Simon Hernandez), - virsh uses kB not bytes (Atsushi SAKAI), add command line help to - qemud (Richard Jones), xenUnifiedRegister docs (Atsushi SAKAI), - strings typos (Nikolay Sivov), ilocalization problem raised by - Thomas Canniot</li> - <li>Bug fixes: virsh memory values test (Masayuki Sunou), operations without - libvirt_qemud (Atsushi SAKAI), fix spec file (Florian La Roche, Jeremy - Katz, Michael Schwendt), - direct hypervisor call (Atsushi SAKAI), buffer overflow on qemu - networking command (Daniel Berrange), buffer overflow in quemud (Daniel - Berrange), virsh vcpupin bug (Masayuki Sunou), host PAE detections - and strcuctures size (Richard Jones), Xen PAE flag handling (Daniel - Berrange), bridged config configuration (Daniel Berrange), erroneous - XEN_V2_OP_SETMAXMEM value (Masayuki Sunou), memory free error (Mark - McLoughlin), set VIR_CONNECT_RO on read-only connections (S.Sakamoto), - avoid memory explosion bug (Daniel Berrange), integer overflow - for qemu CPU time (Daniel Berrange), QEMU binary path check (Daniel - Berrange)</li> - <li>Cleanups: remove some global variables (Jim Meyering), printf-style - functions checks (Jim Meyering), better virsh error messages, increase - compiler checkings and security (Daniel Berrange), virBufferGrow usage - and docs, use calloc instead of malloc/memset, replace all sprintf by - snprintf, avoid configure clobbering user's CTAGS (Jim Meyering), - signal handler error cleanup (Richard Jones), iptables internal code - claenup (Mark McLoughlin), unified Xen driver (Richard Jones), - cleanup XPath libxml2 calls, IPTables rules tightening (Daniel - Berrange), </li> - <li>Improvements: more regression tests on XML (Daniel Berrange), Python - bindings now generate exception in error cases (Richard Jones), - Python bindings for vir*GetAutoStart (Daniel Berrange), - handling of CD-Rom device without device name (Nobuhiro Itou), - fix hypervisor call to work with Xen 3.0.5 (Daniel Berrange), - DomainGetOSType for inactive domains (Daniel Berrange), multiple boot - devices for HVM (Daniel Berrange), + <li>Documentation:<br/> + fix errors due to Amaya (with Simon Hernandez),<br/> + virsh uses kB not bytes (Atsushi SAKAI),<br/> + add command line help to qemud (Richard Jones),<br/> + xenUnifiedRegister docs (Atsushi SAKAI),<br/> + strings typos (Nikolay Sivov),<br/> + ilocalization problem raised by Thomas Canniot<br/> + </li> + <li>Bug fixes:<br/> + virsh memory values test (Masayuki Sunou),<br/> + operations without libvirt_qemud (Atsushi SAKAI),<br/> + fix spec file (Florian La Roche, Jeremy Katz, Michael Schwendt),<br/> + direct hypervisor call (Atsushi SAKAI),<br/> + buffer overflow on qemu networking command (Daniel Berrange),<br/> + buffer overflow in quemud (Daniel Berrange),<br/> + virsh vcpupin bug (Masayuki Sunou),<br/> + host PAE detections and strcuctures size (Richard Jones),<br/> + Xen PAE flag handling (Daniel Berrange),<br/> + bridged config configuration (Daniel Berrange),<br/> + erroneous XEN_V2_OP_SETMAXMEM value (Masayuki Sunou),<br/> + memory free error (Mark McLoughlin),<br/> + set VIR_CONNECT_RO on read-only connections (S.Sakamoto),<br/> + avoid memory explosion bug (Daniel Berrange),<br/> + integer overflow for qemu CPU time (Daniel Berrange),<br/> + QEMU binary path check (Daniel Berrange)<br/> + </li> + <li>Cleanups:<br/> + remove some global variables (Jim Meyering),<br/> + printf-style functions checks (Jim Meyering),<br/> + better virsh error messages,<br/> + increase compiler checkings and security (Daniel Berrange),<br/> + virBufferGrow usage and docs,<br/> + use calloc instead of malloc/memset,<br/> + replace all sprintf by snprintf,<br/> + avoid configure clobbering user's CTAGS (Jim Meyering),<br/> + signal handler error cleanup (Richard Jones),<br/> + iptables internal code claenup (Mark McLoughlin),<br/> + unified Xen driver (Richard Jones),<br/> + cleanup XPath libxml2 calls,<br/> + IPTables rules tightening (Daniel Berrange)<br/> + </li> + <li>Improvements:<br/> + more regression tests on XML (Daniel Berrange),<br/> + Python bindings now generate exception in error cases (Richard Jones),<br/> + Python bindings for vir*GetAutoStart (Daniel Berrange),<br/> + handling of CD-Rom device without device name (Nobuhiro Itou),<br/> + fix hypervisor call to work with Xen 3.0.5 (Daniel Berrange),<br/> + DomainGetOSType for inactive domains (Daniel Berrange),<br/> + multiple boot devices for HVM (Daniel Berrange)<br/> </li> </ul> <h3>0.2.1: Mar 16 2007</h3> <ul> <li>Various internal cleanups (Richard Jones,Daniel Berrange,Mark McLoughlin)</li> - <li>Bug fixes: libvirt_qemud daemon path (Daniel Berrange), libvirt - config directory (Daniel Berrange and Mark McLoughlin), memory leak - in qemud (Mark), various fixes on network support (Mark), avoid Xen - domain zombies on device hotplug errors (Daniel Berrange), various - fixes on qemud (Mark), args parsing (Richard Jones), virsh -t argument - (Saori Fukuta), avoid virsh crash on TAB key (Daniel Berrange), detect - xend operation failures (Kazuki Mizushima), don't listen on null socket - (Rich Jones), read-only socket cleanup (Rich Jones), use of vnc port 5900 - (Nobuhiro Itou), assorted networking fixes (Daniel Berrange), shutoff and - shutdown mismatches (Kazuki Mizushima), unlimited memory handling - (Atsushi SAKAI), python binding fixes (Tatsuro Enokura)</li> - <li>Build and portability fixes: IA64 fixes (Atsushi SAKAI), dependancies - and build (Daniel Berrange), fix xend port detection (Daniel - Berrange), icompile time warnings (Mark), avoid const related - compiler warnings (Daniel Berrange), automated builds (Daniel - Berrange), pointer/int mismatch (Richard Jones), configure time - selection of drivers, libvirt spec hacking (Daniel Berrange)</li> + <li>Bug fixes:<br/> + libvirt_qemud daemon path (Daniel Berrange),<br/> + libvirt config directory (Daniel Berrange and Mark McLoughlin),<br/> + memory leak in qemud (Mark),<br/> + various fixes on network support (Mark),<br/> + avoid Xen domain zombies on device hotplug errors (Daniel Berrange),<br/> + various fixes on qemud (Mark),<br/> + args parsing (Richard Jones),<br/> + virsh -t argument (Saori Fukuta),<br/> + avoid virsh crash on TAB key (Daniel Berrange),<br/> + detect xend operation failures (Kazuki Mizushima),<br/> + don't listen on null socket (Rich Jones),<br/> + read-only socket cleanup (Rich Jones),<br/> + use of vnc port 5900 (Nobuhiro Itou),<br/> + assorted networking fixes (Daniel Berrange),<br/> + shutoff and shutdown mismatches (Kazuki Mizushima),<br/> + unlimited memory handling (Atsushi SAKAI),<br/> + python binding fixes (Tatsuro Enokura)<br/> + </li> + <li>Build and portability fixes:<br/> + IA64 fixes (Atsushi SAKAI),<br/> + dependancies and build (Daniel Berrange),<br/> + fix xend port detection (Daniel Berrange),<br/> + icompile time warnings (Mark),<br/> + avoid const related compiler warnings (Daniel Berrange),<br/> + automated builds (Daniel Berrange),<br/> + pointer/int mismatch (Richard Jones),<br/> + configure time selection of drivers,<br/> + libvirt spec hacking (Daniel Berrange)<br/> + </li> <li>Add support for network autostart and init scripts (Mark McLoughlin)</li> <li>New API virConnectGetCapabilities() to detect the virtualization capabilities of a host (Richard Jones)</li> - <li>Minor improvements: qemud signal handling (Mark), don't shutdown or reboot - domain0 (Kazuki Mizushima), QEmu version autodetection (Daniel Berrange), - network UUIDs (Mark), speed up UUID domain lookups (Tatsuro Enokura and - Daniel Berrange), support for paused QEmu CPU (Daniel Berrange), keymap - VNC attribute support (Takahashi Tomohiro and Daniel Berrange), maximum - number of virtual CPU (Masayuki Sunou), virtsh --readonly option (Rich - Jones), python bindings for new functions (Daniel Berrange)</li> + <li>Minor improvements:<br/> + qemud signal handling (Mark),<br/> + don't shutdown or reboot domain0 (Kazuki Mizushima),<br/> + QEmu version autodetection (Daniel Berrange),<br/> + network UUIDs (Mark),<br/> + speed up UUID domain lookups (Tatsuro Enokura and Daniel Berrange),<br/> + support for paused QEmu CPU (Daniel Berrange),<br/> + keymap VNC attribute support (Takahashi Tomohiro and Daniel Berrange),<br/> + maximum number of virtual CPU (Masayuki Sunou),<br/> + virtsh --readonly option (Rich Jones),<br/> + python bindings for new functions (Daniel Berrange)<br/> + </li> <li>Documentation updates especially on the XML formats</li> </ul> <h3>0.2.0: Feb 14 2007</h3> <ul> <li>Various internal cleanups (Mark McLoughlin, Richard Jones, Daniel Berrange, Karel Zak)</li> - <li>Bug fixes: avoid a crash in connect (Daniel Berrange), virsh args - parsing (Richard Jones)</li> + <li>Bug fixes:<br/> + avoid a crash in connect (Daniel Berrange),<br/> + virsh args parsing (Richard Jones)<br/> + </li> <li>Add support for QEmu and KVM virtualization (Daniel Berrange)</li> <li>Add support for network configuration (Mark McLoughlin)</li> - <li>Minor improvements: regression testing (Daniel Berrange), - localization string updates</li> + <li>Minor improvements:<br/> + regression testing (Daniel Berrange),<br/> + localization string updates<br/> + </li> </ul> <h3>0.1.11: Jan 22 2007</h3> <ul> @@ -20265,8 +20402,16 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> <h3>0.1.10: Dec 20 2006</h3> <ul> <li>more localizations</li> - <li>bug fixes: VCPU info breakages on xen 3.0.3, xenDaemonListDomains buffer overflow (Daniel Berrange), reference count bug when creating Xen domains (Daniel Berrange).</li> - <li>improvements: support graphic framebuffer for Xen paravirt (Daniel Berrange), VNC listen IP range support (Daniel Berrange), support for default Xen config files and inactive domains of 3.0.4 (Daniel Berrange).</li> + <li>bug fixes:<br/> + VCPU info breakages on xen 3.0.3,<br/> + xenDaemonListDomains buffer overflow (Daniel Berrange),<br/> + reference count bug when creating Xen domains (Daniel Berrange)<br/> + </li> + <li>improvements:<br/> + support graphic framebuffer for Xen paravirt (Daniel Berrange),<br/> + VNC listen IP range support (Daniel Berrange),<br/> + support for default Xen config files and inactive domains of 3.0.4 (Daniel Berrange)<br/> + </li> </ul> <h3>0.1.9: Nov 29 2006</h3> <ul> @@ -20322,45 +20467,66 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> <h3>0.1.5: Sep 5 2006</h3> <ul> <li>Support for new hypercalls change in Xen changeset 86d26e6ec89b</li> - <li>bug fixes: virParseUUID() was wrong, networking for paravirt guests - (Daniel Berrange), virsh on non-existent domains (Daniel Berrange), - string cast bug when handling error in python (Pete Vetere), HTTP - 500 xend error code handling (Pete Vetere and Daniel Berrange)</li> - <li>improvements: test suite for SEXPR <-> XML format conversions (Daniel - Berrange), virsh output regression suite (Daniel Berrange), new environ - variable VIRSH_DEFAULT_CONNECT_URI for the default URI when connecting - (Daniel Berrange), graphical console support for paravirt guests - (Jeremy Katz), parsing of simple Xen config files (with Daniel Berrange), - early work on defined (not running) domains (Daniel Berrange), - virsh output improvement (Daniel Berrange</li> + <li>bug fixes:<br/> + virParseUUID() was wrong,<br/> + networking for paravirt guests (Daniel Berrange),<br/> + virsh on non-existent domains (Daniel Berrange),<br/> + string cast bug when handling error in python (Pete Vetere),<br/> + HTTP 500 xend error code handling (Pete Vetere and Daniel Berrange)<br/> + </li> + <li>improvements:<br/> + test suite for SEXPR <-> XML format conversions (Daniel Berrange),<br/> + virsh output regression suite (Daniel Berrange),<br/> + new environ variable VIRSH_DEFAULT_CONNECT_URI for the default URI when connecting (Daniel Berrange),<br/> + graphical console support for paravirt guests (Jeremy Katz),<br/> + parsing of simple Xen config files (with Daniel Berrange),<br/> + early work on defined (not running) domains (Daniel Berrange),<br/> + virsh output improvement (Daniel Berrange)<br/> + </li> </ul> <h3>0.1.4: Aug 16 2006</h3> <ul> - <li>bug fixes: spec file fix (Mark McLoughlin), error report problem (with - Hugh Brock), long integer in Python bindings (with Daniel Berrange), XML - generation bug for CDRom (Daniel Berrange), bug whem using number() XPath - function (Mark McLoughlin), fix python detection code, remove duplicate - initialization errors (Daniel Berrange)</li> - <li>improvements: UUID in XML description (Peter Vetere), proxy code - cleanup, virtual CPU and affinity support + virsh support (Michel - Ponceau, Philippe Berthault, Daniel Berrange), port and tty information - for console in XML (Daniel Berrange), added XML dump to driver and proxy - support (Daniel Berrange), extension of boot options with support for - floppy and cdrom (Daniel Berrange), features block in XML to report/ask - PAE, ACPI, APIC for HVM domains (Daniel Berrange), fail saide-effect - operations when using read-only connection, large improvements to test - driver (Daniel Berrange) </li> - <li>documentation: spelling (Daniel Berrange), test driver examples.</li> + <li>bug fixes:<br/> + spec file fix (Mark McLoughlin),<br/> + error report problem (with Hugh Brock),<br/> + long integer in Python bindings (with Daniel Berrange),<br/> + XML generation bug for CDRom (Daniel Berrange),<br/> + bug whem using number() XPath function (Mark McLoughlin),<br/> + fix python detection code,<br/> + remove duplicate initialization errors (Daniel Berrange)<br/> + </li> + <li>improvements:<br/> + UUID in XML description (Peter Vetere),<br/> + proxy code cleanup,<br/> + virtual CPU and affinity support + virsh support (Michel Ponceau, Philippe Berthault, Daniel Berrange),<br/> + port and tty information for console in XML (Daniel Berrange),<br/> + added XML dump to driver and proxy support (Daniel Berrange),<br/> + extension of boot options with support for floppy and cdrom (Daniel Berrange),<br/> + features block in XML to report/ask PAE, ACPI, APIC for HVM domains (Daniel Berrange),<br/> + fail saide-effect operations when using read-only connection,<br/> + large improvements to test driver (Daniel Berrange)<br/> + </li> + <li>documentation:<br/> + spelling (Daniel Berrange),<br/> + test driver examples<br/> + </li> </ul> <h3>0.1.3: Jul 11 2006</h3> <ul> - <li>bugfixes: build as non-root, fix xend access when root, handling of - empty XML elements (Mark McLoughlin), XML serialization and parsing fixes - (Mark McLoughlin), allow to create domains without disk (Mark - McLoughlin),</li> - <li>improvement: xenDaemonLookupByID from O(n^2) to O(n) (Daniel Berrange), - support for fully virtualized guest (Jim Fehlig, DV, Mark McLoughlin)</li> - <li>documentation: augmented to cover hvm domains</li> + <li>bugfixes:<br/> + build as non-root,<br/> + fix xend access when root,<br/> + handling of empty XML elements (Mark McLoughlin),<br/> + XML serialization and parsing fixes (Mark McLoughlin),<br/> + allow to create domains without disk (Mark McLoughlin)<br/> + </li> + <li>improvement:<br/> + xenDaemonLookupByID from O(n^2) to O(n) (Daniel Berrange),<br/> + support for fully virtualized guest (Jim Fehlig, DV, Mark McLoughlin)<br/> + </li> + <li>documentation:<br/> + augmented to cover hvm domains<br/> + </li> </ul> <h3>0.1.2: Jul 3 2006</h3> <ul> @@ -20369,38 +20535,63 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> </ul> <h3>0.1.1: Jun 21 2006</h3> <ul> - <li>building fixes: ncurses fallback (Jim Fehlig), VPATH builds (Daniel P. - Berrange)</li> - <li>driver cleanups: new entry points, cleanup of libvirt.c (with Daniel P. - Berrange)</li> + <li>building fixes:<br/> + ncurses fallback (Jim Fehlig),<br/> + VPATH builds (Daniel P. Berrange)<br/> + </li> + <li>driver cleanups:<br/> + new entry points,<br/> + cleanup of libvirt.c (with Daniel P. Berrange)<br/> + </li> <li>Cope with API change introduced in Xen changeset 10277</li> <li>new test driver for regression checks (Daniel P. Berrange)</li> - <li>improvements: added UUID to XML serialization, buffer usage (Karel - Zak), --connect argument to virsh (Daniel P. Berrange),</li> - <li>bug fixes: uninitialized memory access in error reporting, S-Expr - parsing (Jim Fehlig, Jeremy Katz), virConnectOpen bug, remove a TODO in - xs_internal.c</li> - <li>documentation: Python examples (David Lutterkort), new Perl binding - URL, man page update (Karel Zak)</li> + <li>improvements:<br/> + added UUID to XML serialization,<br/> + buffer usage (Karel Zak),<br/> + --connect argument to virsh (Daniel P. Berrange)<br/> + </li> + <li>bug fixes:<br/> + uninitialized memory access in error reporting,<br/> + S-Expr parsing (Jim Fehlig, Jeremy Katz),<br/> + virConnectOpen bug,<br/> + remove a TODO in xs_internal.c<br/> + </li> + <li>documentation:<br/> + Python examples (David Lutterkort),<br/> + new Perl binding URL,<br/> + man page update (Karel Zak)<br/> + </li> </ul> <h3>0.1.0: Apr 10 2006</h3> <ul> - <li>building fixes: --with-xen-distdir option (Ronald Aigner), out of tree - build and pkginfo cflag fix (Daniel Berrange)</li> + <li>building fixes:<br/> + --with-xen-distdir option (Ronald Aigner),<br/> + out of tree build and pkginfo cflag fix (Daniel Berrange)<br/> + </li> <li>enhancement and fixes of the XML description format (David Lutterkort and Jim Fehlig)</li> <li>new APIs: for Node information and Reboot</li> <li>internal code cleanup: refactoring internals into a driver model, more error handling, structure sharing, thread safety and ref counting</li> - <li>bug fixes: error message (Jim Meyering), error allocation in virsh (Jim - Meyering), virDomainLookupByID (Jim Fehlig),</li> - <li>documentation: updates on architecture, and format, typo fix (Jim - Meyering)</li> - <li>bindings: exception handling in examples (Jim Meyering), perl ones out - of tree (Daniel Berrange)</li> - <li>virsh: more options, create, nodeinfo (Karel Zak), renaming of some - options (Karel Zak), use stderr only for errors (Karel Zak), man page - (Andrew Puch)</li> + <li>bug fixes:<br/> + error message (Jim Meyering),<br/> + error allocation in virsh (Jim Meyering),<br/> + virDomainLookupByID (Jim Fehlig)<br/> + </li> + <li>documentation:<br/> + updates on architecture, and format,<br/> + typo fix (Jim Meyering)<br/> + </li> + <li>bindings:<br/> + exception handling in examples (Jim Meyering),<br/> + perl ones out of tree (Daniel Berrange)<br /> + </li> + <li>virsh:<br/> + more options, create, nodeinfo (Karel Zak),<br/> + renaming of some options (Karel Zak),<br/> + use stderr only for errors (Karel Zak),<br/> + man page (Andrew Puch)<br/> + </li> </ul> <h3>0.0.6: Feb 28 2006</h3> <ul> -- 2.4.3

Sort all items into the standard categories: Features, Bug Fixes, Improvements, Cleanups, etc. The sorting is somewhat arbitrary in certain instances. --- docs/news.html.in | 378 ++++++++++++++++++++++++++++++++---------------------- 1 file changed, 223 insertions(+), 155 deletions(-) diff --git a/docs/news.html.in b/docs/news.html.in index bd4e0cb..634f25b 100644 --- a/docs/news.html.in +++ b/docs/news.html.in @@ -20164,10 +20164,10 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> </ul> <h3>0.3.0: Jul 9 2007</h3> <ul> - <li>Secure Remote support (Richard Jones). - See <a href="http://libvirt.org/remote.html">the remote page</a> - of the documentation - </li> + <li>Features:<br/> + Secure Remote support (Richard Jones). + See <a href="http://libvirt.org/remote.html">the remote page</a> of the documentation<br/> + </li> <li>Documentation:<br/> remote support (Richard Jones),<br/> description of the URI connection strings (Richard Jones),<br/> @@ -20193,7 +20193,8 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> device attach/detach commands (Masayuki Sunou),<br/> OCaml bindings (Richard Jones),<br/> new entry points virDomainGetConnect and virNetworkGetConnect useful for bindings (Richard Jones),<br/> - reunitifaction of remote and qemu daemon under a single libvirtd with a config file (Daniel Berrange)<br/> + reunitifaction of remote and qemu daemon under a single libvirtd with a config file (Daniel Berrange),<br/> + Localization updates<br/> </li> <li>Cleanups:<br/> parsing of connection URIs (Richard Jones),<br/> @@ -20218,7 +20219,6 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> remove internal virGetDomainByID (Richard Jones),<br/> revamp of xen subdrivers interfaces (Richard Jones)<br/> </li> - <li>Localization updates</li> </ul> <h3>0.2.3: Jun 8 2007</h3> <ul> @@ -20329,8 +20329,25 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> </ul> <h3>0.2.1: Mar 16 2007</h3> <ul> - <li>Various internal cleanups (Richard Jones,Daniel Berrange,Mark McLoughlin)</li> - <li>Bug fixes:<br/> + <li>Features:<br/> + Add support for network autostart and init scripts (Mark McLoughlin),<br/> + New API virConnectGetCapabilities() to detect the virtualization capabilities of a host (Richard Jones)<br/> + </li> + <li>Documentation:<br/> + Documentation updates especially on the XML formats<br/> + </li> + <li>Portability:<br/> + IA64 fixes (Atsushi SAKAI),<br/> + dependancies and build (Daniel Berrange),<br/> + fix xend port detection (Daniel Berrange),<br/> + icompile time warnings (Mark),<br/> + avoid const related compiler warnings (Daniel Berrange),<br/> + automated builds (Daniel Berrange),<br/> + pointer/int mismatch (Richard Jones),<br/> + configure time selection of drivers,<br/> + libvirt spec hacking (Daniel Berrange)<br/> + </li> + <li>Bug Fixes:<br/> libvirt_qemud daemon path (Daniel Berrange),<br/> libvirt config directory (Daniel Berrange and Mark McLoughlin),<br/> memory leak in qemud (Mark),<br/> @@ -20349,21 +20366,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> unlimited memory handling (Atsushi SAKAI),<br/> python binding fixes (Tatsuro Enokura)<br/> </li> - <li>Build and portability fixes:<br/> - IA64 fixes (Atsushi SAKAI),<br/> - dependancies and build (Daniel Berrange),<br/> - fix xend port detection (Daniel Berrange),<br/> - icompile time warnings (Mark),<br/> - avoid const related compiler warnings (Daniel Berrange),<br/> - automated builds (Daniel Berrange),<br/> - pointer/int mismatch (Richard Jones),<br/> - configure time selection of drivers,<br/> - libvirt spec hacking (Daniel Berrange)<br/> - </li> - <li>Add support for network autostart and init scripts (Mark McLoughlin)</li> - <li>New API virConnectGetCapabilities() to detect the virtualization - capabilities of a host (Richard Jones)</li> - <li>Minor improvements:<br/> + <li>Improvements:<br/> qemud signal handling (Mark),<br/> don't shutdown or reboot domain0 (Kazuki Mizushima),<br/> QEmu version autodetection (Daniel Berrange),<br/> @@ -20375,39 +20378,50 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> virtsh --readonly option (Rich Jones),<br/> python bindings for new functions (Daniel Berrange)<br/> </li> - <li>Documentation updates especially on the XML formats</li> + <li>Cleanups:<br/> + Various internal cleanups (Richard Jones,Daniel Berrange,Mark McLoughlin)<br/> + </li> </ul> <h3>0.2.0: Feb 14 2007</h3> <ul> - <li>Various internal cleanups (Mark McLoughlin, Richard Jones, - Daniel Berrange, Karel Zak)</li> + <li>Features:<br/> + Add support for QEmu and KVM virtualization (Daniel Berrange),<br/> + Add support for network configuration (Mark McLoughlin)<br/> + </li> <li>Bug fixes:<br/> avoid a crash in connect (Daniel Berrange),<br/> virsh args parsing (Richard Jones)<br/> </li> - <li>Add support for QEmu and KVM virtualization (Daniel Berrange)</li> - <li>Add support for network configuration (Mark McLoughlin)</li> - <li>Minor improvements:<br/> + <li>Improvements:<br/> regression testing (Daniel Berrange),<br/> localization string updates<br/> </li> + <li>Cleanups:<br/> + Various internal cleanups (Mark McLoughlin, Richard Jones, Daniel Berrange, Karel Zak)<br/> + </li> </ul> <h3>0.1.11: Jan 22 2007</h3> <ul> - <li>Finish XML <-> XM config files support</li> - <li>Remove memory leak when freeing virConf objects</li> - <li>Finishing inactive domain support (Daniel Berrange)</li> - <li>Added a Relax-NG schemas to check XML instances</li> + <li>Features:<br/> + Added a Relax-NG schemas to check XML instances<br/> + </li> + <li>Bug Fixes:<br/> + Remove memory leak when freeing virConf objects<br/> + </li> + <li>Improvements:<br/> + Finish XML <-> XM config files support,<br/> + Finishing inactive domain support (Daniel Berrange)<br/> + </li> </ul> <h3>0.1.10: Dec 20 2006</h3> <ul> - <li>more localizations</li> - <li>bug fixes:<br/> + <li>Bug Fixes:<br/> VCPU info breakages on xen 3.0.3,<br/> xenDaemonListDomains buffer overflow (Daniel Berrange),<br/> reference count bug when creating Xen domains (Daniel Berrange)<br/> </li> - <li>improvements:<br/> + <li>Improvements:<br/> + more localizations, support graphic framebuffer for Xen paravirt (Daniel Berrange),<br/> VNC listen IP range support (Daniel Berrange),<br/> support for default Xen config files and inactive domains of 3.0.4 (Daniel Berrange)<br/> @@ -20415,66 +20429,86 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> </ul> <h3>0.1.9: Nov 29 2006</h3> <ul> - <li>python bindings: release interpeter lock when calling C (Daniel Berrange)</li> - <li>don't raise HTTP error when looking information for a domain</li> - <li>some refactoring to use the driver for all entry points</li> - <li>better error reporting (Daniel Berrange)</li> - <li>fix OS reporting when running as non-root</li> - <li>provide XML parsing errors</li> - <li>extension of the test framework (Daniel Berrange)</li> - <li>fix the reconnect regression test</li> - <li>python bindings: Domain instances now link to the Connect to avoid garbage collection and disconnect</li> - <li>separate the notion of maximum memory and current use at the XML level</li> - <li>Fix a memory leak (Daniel Berrange)</li> - <li>add support for shareable drives</li> - <li>add support for non-bridge style networking configs for guests(Daniel Berrange)</li> - <li>python bindings: fix unsigned long marshalling (Daniel Berrange)</li> - <li>new config APIs virConfNew() and virConfSetValue() to build configs from scratch</li> - <li>hot plug device support based on Michel Ponceau patch</li> - <li>added support for inactive domains, new APIs, various associated cleanup (Daniel Berrange)</li> - <li>special device model for HVM guests (Daniel Berrange)</li> - <li>add API to dump core of domains (but requires a patched xend)</li> - <li>pygrub bootloader information take over <os> information</li> - <li>updated the localization strings</li> + <li>Features:<br/> + separate the notion of maximum memory and current use at the XML level,<br/> + add support for shareable drives,<br/> + add support for non-bridge style networking configs for guests(Daniel Berrange),<br/> + new config APIs virConfNew() and virConfSetValue() to build configs from scratch,<br/> + hot plug device support based on Michel Ponceau patch,<br/> + added support for inactive domains, new APIs, various associated cleanup (Daniel Berrange),<br/> + special device model for HVM guests (Daniel Berrange),<br/> + add API to dump core of domains (but requires a patched xend),<br/> + pygrub bootloader information take over <os> information<br/> + </li> + <li>Bug Fixes:<br/> + fix OS reporting when running as non-root,<br/> + fix the reconnect regression test,<br/> + Fix a memory leak (Daniel Berrange),<br/> + python bindings: fix unsigned long marshalling (Daniel Berrange)<br/> + </li> + <li>Improvements:<br/> + python bindings: release interpeter lock when calling C (Daniel Berrange),<br/> + don't raise HTTP error when looking information for a domain,<br/> + better error reporting (Daniel Berrange),<br/> + provide XML parsing errors,<br/> + extension of the test framework (Daniel Berrange),<br/> + python bindings: Domain instances now link to the Connect to avoid garbage collection and disconnect,<br/> + updated the localization strings<br/> + </li> + <li>Cleanups:<br/> + some refactoring to use the driver for all entry points<br/> + </li> </ul> <h3>0.1.8: Oct 16 2006</h3> <ul> - <li> Bug for system with page size != 4k</li> - <li> vcpu number initialization (Philippe Berthault)</li> - <li> don't label crashed domains as shut off (Peter Vetere)</li> - <li> fix virsh man page (Noriko Mizumoto)</li> - <li> blktapdd support for alternate drivers like blktap (Daniel Berrange)</li> - <li> memory leak fixes (xend interface and XML parsing) (Daniel Berrange)</li> - <li> compile fix</li> - <li> mlock/munlock size fixes (Daniel Berrange)</li> - <li> improve error reporting</li> + <li>Documentation:<br/> + fix virsh man page (Noriko Mizumoto)<br/> + </li> + <li>Bug Fixes:<br/> + Bug for system with page size != 4k,<br/> + memory leak fixes (xend interface and XML parsing) (Daniel Berrange),<br/> + compile fix,<br/> + mlock/munlock size fixes (Daniel Berrange),<br/> + don't label crashed domains as shut off (Peter Vetere)<br/> + </li> + <li>Improvements:<br/> + vcpu number initialization (Philippe Berthault),<br/> + blktapdd support for alternate drivers like blktap (Daniel Berrange),<br/> + improve error reporting<br/> + </li> </ul> <h3>0.1.7: Sep 29 2006</h3> <ul> - <li> fix a memory bug on getting vcpu information from xend (Daniel Berrange)</li> - <li> fix another problem in the hypercalls change in Xen changeset - 86d26e6ec89b when getting domain information (Daniel Berrange)</li> + <li>Bug Fixes:<br/> + fix a memory bug on getting vcpu information from xend (Daniel Berrange),<br/> + fix another problem in the hypercalls change in Xen changeset 86d26e6ec89b when getting domain information (Daniel Berrange)<br/> + </li> </ul> <h3>0.1.6: Sep 22 2006</h3> <ul> - <li>Support for localization of strings using gettext (Daniel Berrange)</li> - <li>Support for new Xen-3.0.3 cdrom and disk configuration (Daniel Berrange)</li> - <li>Support for setting VNC port when creating domains with new - xend config files (Daniel Berrange) </li> - <li>Fix bug when running against xen-3.0.2 hypercalls (Jim Fehlig)</li> - <li>Fix reconnection problem when talking directly to http xend</li> + <li>Features:<br/> + Support for localization of strings using gettext (Daniel Berrange),<br/> + Support for new Xen-3.0.3 cdrom and disk configuration (Daniel Berrange),<br/> + Support for setting VNC port when creating domains with new xend config files (Daniel Berrange)<br/> + </li> + <li>Bug Fixes:<br/> + Fix bug when running against xen-3.0.2 hypercalls (Jim Fehlig),<br/> + Fix reconnection problem when talking directly to http xend<br/> + </li> </ul> <h3>0.1.5: Sep 5 2006</h3> <ul> - <li>Support for new hypercalls change in Xen changeset 86d26e6ec89b</li> - <li>bug fixes:<br/> + <li>Features:<br/> + Support for new hypercalls change in Xen changeset 86d26e6ec89b<br/> + </li> + <li>Bug Fixes:<br/> virParseUUID() was wrong,<br/> networking for paravirt guests (Daniel Berrange),<br/> virsh on non-existent domains (Daniel Berrange),<br/> string cast bug when handling error in python (Pete Vetere),<br/> HTTP 500 xend error code handling (Pete Vetere and Daniel Berrange)<br/> </li> - <li>improvements:<br/> + <li>Improvements:<br/> test suite for SEXPR <-> XML format conversions (Daniel Berrange),<br/> virsh output regression suite (Daniel Berrange),<br/> new environ variable VIRSH_DEFAULT_CONNECT_URI for the default URI when connecting (Daniel Berrange),<br/> @@ -20486,7 +20520,11 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> </ul> <h3>0.1.4: Aug 16 2006</h3> <ul> - <li>bug fixes:<br/> + <li>Documentation:<br/> + spelling (Daniel Berrange),<br/> + test driver examples<br/> + </li> + <li>Bug Fixes:<br/> spec file fix (Mark McLoughlin),<br/> error report problem (with Hugh Brock),<br/> long integer in Python bindings (with Daniel Berrange),<br/> @@ -20495,7 +20533,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> fix python detection code,<br/> remove duplicate initialization errors (Daniel Berrange)<br/> </li> - <li>improvements:<br/> + <li>Improvements:<br/> UUID in XML description (Peter Vetere),<br/> proxy code cleanup,<br/> virtual CPU and affinity support + virsh support (Michel Ponceau, Philippe Berthault, Daniel Berrange),<br/> @@ -20506,138 +20544,168 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> fail saide-effect operations when using read-only connection,<br/> large improvements to test driver (Daniel Berrange)<br/> </li> - <li>documentation:<br/> - spelling (Daniel Berrange),<br/> - test driver examples<br/> - </li> </ul> <h3>0.1.3: Jul 11 2006</h3> <ul> - <li>bugfixes:<br/> + <li>Documentation:<br/> + augmented to cover hvm domains<br/> + </li> + <li>Bug Fixes:<br/> build as non-root,<br/> fix xend access when root,<br/> handling of empty XML elements (Mark McLoughlin),<br/> XML serialization and parsing fixes (Mark McLoughlin),<br/> allow to create domains without disk (Mark McLoughlin)<br/> </li> - <li>improvement:<br/> + <li>Improvements:<br/> xenDaemonLookupByID from O(n^2) to O(n) (Daniel Berrange),<br/> support for fully virtualized guest (Jim Fehlig, DV, Mark McLoughlin)<br/> </li> - <li>documentation:<br/> - augmented to cover hvm domains<br/> - </li> </ul> <h3>0.1.2: Jul 3 2006</h3> <ul> - <li>headers include paths fixup</li> - <li>proxy mechanism for unprivileged read-only access by httpu</li> + <li>Features:<br/> + proxy mechanism for unprivileged read-only access by http<br/> + </li> + <li>Bug Fixes:<br/> + headers include paths fixup<br/> + </li> </ul> <h3>0.1.1: Jun 21 2006</h3> <ul> - <li>building fixes:<br/> - ncurses fallback (Jim Fehlig),<br/> - VPATH builds (Daniel P. Berrange)<br/> + <li>Features:<br/> + Cope with API change introduced in Xen changeset 10277,<br/> + new test driver for regression checks (Daniel P. Berrange)<br/> </li> - <li>driver cleanups:<br/> - new entry points,<br/> - cleanup of libvirt.c (with Daniel P. Berrange)<br/> + <li>Documentation:<br/> + Python examples (David Lutterkort),<br/> + new Perl binding URL,<br/> + man page update (Karel Zak)<br/> </li> - <li>Cope with API change introduced in Xen changeset 10277</li> - <li>new test driver for regression checks (Daniel P. Berrange)</li> - <li>improvements:<br/> - added UUID to XML serialization,<br/> - buffer usage (Karel Zak),<br/> - --connect argument to virsh (Daniel P. Berrange)<br/> + <li>Portability:<br/> + ncurses fallback (Jim Fehlig),<br/> + VPATH builds (Daniel P. Berrange)<br/> </li> - <li>bug fixes:<br/> + <li>Bug Fixes:<br/> uninitialized memory access in error reporting,<br/> S-Expr parsing (Jim Fehlig, Jeremy Katz),<br/> virConnectOpen bug,<br/> remove a TODO in xs_internal.c<br/> </li> - <li>documentation:<br/> - Python examples (David Lutterkort),<br/> - new Perl binding URL,<br/> - man page update (Karel Zak)<br/> + <li>Improvements:<br/> + added UUID to XML serialization,<br/> + buffer usage (Karel Zak),<br/> + --connect argument to virsh (Daniel P. Berrange)<br/> + </li> + <li>Cleanups:<br/> + new entry points,<br/> + cleanup of libvirt.c (with Daniel P. Berrange)<br/> </li> </ul> <h3>0.1.0: Apr 10 2006</h3> <ul> - <li>building fixes:<br/> + <li>Features:<br/> + new APIs for Node information and Reboot<br/> + </li> + <li>Documentation:<br/> + updates on architecture and format,<br/> + typo fix (Jim Meyering),<br/> + virsh: man page (Andrew Puch)<br/> + </li> + <li>Portability:<br/> --with-xen-distdir option (Ronald Aigner),<br/> out of tree build and pkginfo cflag fix (Daniel Berrange)<br/> </li> - <li>enhancement and fixes of the XML description format (David Lutterkort - and Jim Fehlig)</li> - <li>new APIs: for Node information and Reboot</li> - <li>internal code cleanup: refactoring internals into a driver model, more - error handling, structure sharing, thread safety and ref counting</li> - <li>bug fixes:<br/> + <li>Bug Fixes:<br/> error message (Jim Meyering),<br/> error allocation in virsh (Jim Meyering),<br/> virDomainLookupByID (Jim Fehlig)<br/> </li> - <li>documentation:<br/> - updates on architecture, and format,<br/> - typo fix (Jim Meyering)<br/> + <li>Improvements<br/> + enhancement and fixes of the XML description format (David Lutterkort and Jim Fehlig),<br/> + virsh: more options, create, nodeinfo (Karel Zak),<br/> + virsh: renaming of some options (Karel Zak),<br/> + virsh: use stderr only for errors (Karel Zak),<br/> + bindings: exception handling in examples (Jim Meyering),<br/> + bindings: perl ones out of tree (Daniel Berrange)<br /> </li> - <li>bindings:<br/> - exception handling in examples (Jim Meyering),<br/> - perl ones out of tree (Daniel Berrange)<br /> - </li> - <li>virsh:<br/> - more options, create, nodeinfo (Karel Zak),<br/> - renaming of some options (Karel Zak),<br/> - use stderr only for errors (Karel Zak),<br/> - man page (Andrew Puch)<br/> + <li>Cleanups:<br/> + refactoring internals into a driver model,<br/> + more error handling,<br/> + structure sharing,<br/> + thread safety and ref counting<br/> </li> </ul> <h3>0.0.6: Feb 28 2006</h3> <ul> - <li>add UUID lookup and extract API</li> - <li>add error handling APIs both synchronous and asynchronous</li> - <li>added minimal hook for error handling at the python level, improved the - python bindings</li> - <li>augment the documentation and tests to cover error handling</li> + <li>Features:<br/> + add UUID lookup and extract API,<br/> + add error handling APIs both synchronous and asynchronous,<br/> + added minimal hook for error handling at the python level<br/> + </li> + <li>Documentation:<br/> + augment the documentation and tests to cover error handling<br/> + </li> + <li>Improvements:<br/> + improved the python bindings<br/> + </li> </ul> <h3>0.0.5: Feb 23 2006</h3> <ul> - <li>Added XML description parsing, dependance to libxml2, implemented the - creation API virDomainCreateLinux()</li> - <li>new APIs to lookup and name domain by UUID</li> - <li>fixed the XML dump when using the Xend access</li> - <li>Fixed a few more problem related to the name change</li> - <li>Adding regression tests in python and examples in C</li> - <li>web site improvement, extended the documentation to cover the XML - format and Python API</li> - <li>Added devhelp help for Gnome/Gtk programmers</li> + <li>Features<br/> + Added XML description parsing, dependance to libxml2, implemented the creation API virDomainCreateLinux(),<br/> + new APIs to lookup and name domain by UUID,<br/> + Adding regression tests in python and examples in C,<br/> + Added devhelp help for Gnome/Gtk programmers,<br/> + </li> + <li>Documentation:<br/> + web site improvement, extended the documentation to cover the XML format and Python API<br/> + </li> + <li>Bug Fixes:<br/> + fixed the XML dump when using the Xend access,<br/> + Fixed a few more problem related to the name change<br/> + </li> </ul> <h3>0.0.4: Feb 10 2006</h3> <ul> - <li>Fix various bugs introduced in the name change</li> + <li>Bug Fixes:<br/> + Fix various bugs introduced in the name change<br/> + </li> </ul> <h3>0.0.3: Feb 9 2006</h3> <ul> - <li>Switch name from 'libvir' to libvirt</li> - <li>Starting infrastructure to add code examples</li> - <li>Update of python bindings for completeness</li> + <li>Features:<br/> + Switch name from 'libvir' to libvirt,<br/> + Starting infrastructure to add code examples<br/> + </li> + <li>Improvements:<br/> + Update of python bindings for completeness<br/> + </li> </ul> <h3>0.0.2: Jan 29 2006</h3> <ul> - <li>Update of the documentation, web site redesign (Diana Fong)</li> - <li>integration of HTTP xend RPC based on libxend by Anthony Liquori for - most operations</li> - <li>Adding Save and Restore APIs</li> - <li>extended the virsh command line tool (Karel Zak)</li> - <li>remove xenstore transactions (Anthony Liguori)</li> - <li>fix the Python bindings bug when domain and connections where freed</li> + <li>Features:<br/> + integration of HTTP xend RPC based on libxend by Anthony Liquori for most operations,<br/> + Adding Save and Restore APIs<br/> + </li> + <li>Documentation:<br/> + Update of the documentation, web site redesign (Diana Fong)<br/> + </li> + <li>Bug Fixes:<br/> + fix the Python bindings bug when domain and connections where freed<br/> + </li> + <li>Improvements:<br/> + extended the virsh command line tool (Karel Zak),<br/> + remove xenstore transactions (Anthony Liguori)<br/> + </li> </ul> <h3>0.0.1: Dec 19 2005</h3> <ul> - <li>First release</li> - <li>Basic management of existing Xen domains</li> - <li>Minimal autogenerated Python bindings</li> + <li>Features:<br/> + First release,<br/> + Basic management of existing Xen domains,<br/> + Minimal autogenerated Python bindings<br/> + </li> </ul> </body> </html> -- 2.4.3

On Wed, Oct 14, 2015 at 10:36:05AM +0200, Andrea Bolognani wrote:
Sort all items into the standard categories: Features, Bug Fixes, Improvements, Cleanups, etc.
The sorting is somewhat arbitrary in certain instances. --- docs/news.html.in | 378 ++++++++++++++++++++++++++++++++---------------------- 1 file changed, 223 insertions(+), 155 deletions(-)
diff --git a/docs/news.html.in b/docs/news.html.in index bd4e0cb..634f25b 100644 --- a/docs/news.html.in +++ b/docs/news.html.in @@ -20164,10 +20164,10 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> </ul> <h3>0.3.0: Jul 9 2007</h3> <ul> - <li>Secure Remote support (Richard Jones). - See <a href="http://libvirt.org/remote.html">the remote page</a> - of the documentation - </li> + <li>Features:<br/> + Secure Remote support (Richard Jones). + See <a href="http://libvirt.org/remote.html">the remote page</a> of the documentation<br/> + </li> <li>Documentation:<br/> remote support (Richard Jones),<br/> description of the URI connection strings (Richard Jones),<br/> @@ -20193,7 +20193,8 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> device attach/detach commands (Masayuki Sunou),<br/> OCaml bindings (Richard Jones),<br/> new entry points virDomainGetConnect and virNetworkGetConnect useful for bindings (Richard Jones),<br/> - reunitifaction of remote and qemu daemon under a single libvirtd with a config file (Daniel Berrange)<br/> + reunitifaction of remote and qemu daemon under a single libvirtd with a config file (Daniel Berrange),<br/> + Localization updates<br/> </li> <li>Cleanups:<br/> parsing of connection URIs (Richard Jones),<br/> @@ -20218,7 +20219,6 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> remove internal virGetDomainByID (Richard Jones),<br/> revamp of xen subdrivers interfaces (Richard Jones)<br/> </li> - <li>Localization updates</li> </ul> <h3>0.2.3: Jun 8 2007</h3> <ul> @@ -20329,8 +20329,25 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> </ul> <h3>0.2.1: Mar 16 2007</h3> <ul> - <li>Various internal cleanups (Richard Jones,Daniel Berrange,Mark McLoughlin)</li> - <li>Bug fixes:<br/> + <li>Features:<br/> + Add support for network autostart and init scripts (Mark McLoughlin),<br/> + New API virConnectGetCapabilities() to detect the virtualization capabilities of a host (Richard Jones)<br/> + </li> + <li>Documentation:<br/> + Documentation updates especially on the XML formats<br/> + </li> + <li>Portability:<br/> + IA64 fixes (Atsushi SAKAI),<br/> + dependancies and build (Daniel Berrange),<br/> + fix xend port detection (Daniel Berrange),<br/> + icompile time warnings (Mark),<br/> + avoid const related compiler warnings (Daniel Berrange),<br/> + automated builds (Daniel Berrange),<br/> + pointer/int mismatch (Richard Jones),<br/> + configure time selection of drivers,<br/> + libvirt spec hacking (Daniel Berrange)<br/> + </li> + <li>Bug Fixes:<br/> libvirt_qemud daemon path (Daniel Berrange),<br/> libvirt config directory (Daniel Berrange and Mark McLoughlin),<br/> memory leak in qemud (Mark),<br/> @@ -20349,21 +20366,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> unlimited memory handling (Atsushi SAKAI),<br/> python binding fixes (Tatsuro Enokura)<br/> </li> - <li>Build and portability fixes:<br/> - IA64 fixes (Atsushi SAKAI),<br/> - dependancies and build (Daniel Berrange),<br/> - fix xend port detection (Daniel Berrange),<br/> - icompile time warnings (Mark),<br/> - avoid const related compiler warnings (Daniel Berrange),<br/> - automated builds (Daniel Berrange),<br/> - pointer/int mismatch (Richard Jones),<br/> - configure time selection of drivers,<br/> - libvirt spec hacking (Daniel Berrange)<br/> - </li> - <li>Add support for network autostart and init scripts (Mark McLoughlin)</li> - <li>New API virConnectGetCapabilities() to detect the virtualization - capabilities of a host (Richard Jones)</li> - <li>Minor improvements:<br/> + <li>Improvements:<br/> qemud signal handling (Mark),<br/> don't shutdown or reboot domain0 (Kazuki Mizushima),<br/> QEmu version autodetection (Daniel Berrange),<br/> @@ -20375,39 +20378,50 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> virtsh --readonly option (Rich Jones),<br/> python bindings for new functions (Daniel Berrange)<br/> </li> - <li>Documentation updates especially on the XML formats</li> + <li>Cleanups:<br/> + Various internal cleanups (Richard Jones,Daniel Berrange,Mark McLoughlin)<br/> + </li> </ul> <h3>0.2.0: Feb 14 2007</h3> <ul> - <li>Various internal cleanups (Mark McLoughlin, Richard Jones, - Daniel Berrange, Karel Zak)</li> + <li>Features:<br/> + Add support for QEmu and KVM virtualization (Daniel Berrange),<br/> + Add support for network configuration (Mark McLoughlin)<br/> + </li> <li>Bug fixes:<br/> avoid a crash in connect (Daniel Berrange),<br/> virsh args parsing (Richard Jones)<br/> </li> - <li>Add support for QEmu and KVM virtualization (Daniel Berrange)</li> - <li>Add support for network configuration (Mark McLoughlin)</li> - <li>Minor improvements:<br/> + <li>Improvements:<br/> regression testing (Daniel Berrange),<br/> localization string updates<br/> </li> + <li>Cleanups:<br/> + Various internal cleanups (Mark McLoughlin, Richard Jones, Daniel Berrange, Karel Zak)<br/> + </li> </ul> <h3>0.1.11: Jan 22 2007</h3> <ul> - <li>Finish XML <-> XM config files support</li> - <li>Remove memory leak when freeing virConf objects</li> - <li>Finishing inactive domain support (Daniel Berrange)</li> - <li>Added a Relax-NG schemas to check XML instances</li> + <li>Features:<br/> + Added a Relax-NG schemas to check XML instances<br/> + </li> + <li>Bug Fixes:<br/> + Remove memory leak when freeing virConf objects<br/> + </li> + <li>Improvements:<br/> + Finish XML <-> XM config files support,<br/> + Finishing inactive domain support (Daniel Berrange)<br/> + </li> </ul> <h3>0.1.10: Dec 20 2006</h3> <ul> - <li>more localizations</li> - <li>bug fixes:<br/> + <li>Bug Fixes:<br/> VCPU info breakages on xen 3.0.3,<br/> xenDaemonListDomains buffer overflow (Daniel Berrange),<br/> reference count bug when creating Xen domains (Daniel Berrange)<br/> </li> - <li>improvements:<br/> + <li>Improvements:<br/> + more localizations,
You're missing <br/> here ^^^^ Otherwise looks fine, but my brain hurts from this. Seriously.

On Wed, 2015-10-14 at 15:01 +0200, Martin Kletzander wrote:
- <li>improvements:<br/> + <li>Improvements:<br/> + more localizations,
You're missing <br/> here ^^^^
Fixed, good catch :)
Otherwise looks fine, but my brain hurts from this. Seriously.
Sorry about that :( Cheers. -- Andrea Bolognani Software Engineer - Virtualization Team

Mostly missing space between change description and author name or spurious space before section title. Reflow the introductory paragraph as well. --- docs/news.html.in | 412 +++++++++++++++++++++++++++--------------------------- 1 file changed, 208 insertions(+), 204 deletions(-) diff --git a/docs/news.html.in b/docs/news.html.in index 634f25b..c5b4458 100644 --- a/docs/news.html.in +++ b/docs/news.html.in @@ -5,9 +5,13 @@ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> </head> <body> - <h1 >Releases</h1> - <p>Here is the list of official releases, it is also possible to just use the <a href="downloads.html">GIT version or snapshot</a>, contact the mailing list -and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> to gauge progress.</p> + <h1>Releases</h1> + <p>Here is the list of official releases, it is also possible to just use + the <a href="downloads.html">GIT version or snapshot</a>, + contact the mailing list and check + the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> + to gauge progress. + </p> <h3>v1.2.20: Oct 02 2015</h3> <ul> @@ -606,7 +610,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> <h3>1.2.17: Jul 02 2015</h3> <ul> <li>Features:<br/> - numerous improvements and refactoring of the parallels driver(Maxim Nestratov) + numerous improvements and refactoring of the parallels driver (Maxim Nestratov) hardening of vcpu code (Peter Krempa) hardening of migration code (Jiri Denemark) </li> @@ -2436,17 +2440,17 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> <h3>1.2.11: Dec 13 2014</h3> <ul> - <li> Features:<br/> + <li>Features:<br/> Implement public API for virDomainGetFSInfo (Tomoki Sekiyama),<br/> Add support for the new throttle options (Matthias Gatto)<br/> </li> - <li> Security:<br/> + <li>Security:<br/> CVE-2014-8131: Fix possible deadlock and segfault in qemuConnectGetAllDomainStats() (Martin Kletzander),<br/> CVE-2014-7823: dumpxml: security hole with migratable flag (Eric Blake)<br/> </li> - <li> Documentation:<br/> + <li>Documentation:<br/> virsh.pod: Fix typo (John Ferlan),<br/> Fix typo in path for storage pool (John Ferlan),<br/> Fix missing curly braces (Hao Liu),<br/> @@ -2478,7 +2482,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> examples: add systemtap script to ease lock debugging (Martin Kletzander)<br/> </li> - <li> Portability:<br/> + <li>Portability:<br/> Fix build on mingw (Ján Tomko),<br/> define NTF_{SELF,MASTER} if undefined (Guido Günther),<br/> build: fix mingw printing of pid (Eric Blake),<br/> @@ -2491,7 +2495,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> qemuxml2argvtest: Run some test only on Linux (Michal Privoznik)<br/> </li> - <li> Bug Fixes:<br/> + <li>Bug Fixes:<br/> Avoid getting '-1:-1' in devices cgroup list (Cédric Bosdonnat),<br/> conf: goto error when value of max_sectors is too large (Luyao Huang),<br/> Ignore CPU features without a model for host-passthrough (Ján Tomko),<br/> @@ -2585,7 +2589,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> qemu: make advice from numad available when building commandline (Martin Kletzander)<br/> </li> - <li> Improvements:<br/> + <li>Improvements:<br/> network: Bring netdevs online later (Matthew Rosato),<br/> lxc: give RW access to /proc/sys/net/ipv[46] to containers (Cédric Bosdonnat),<br/> conf: Ignore device address for guestfwd channel (Martin Kletzander),<br/> @@ -2792,19 +2796,19 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> util: Introduce virPidFileForceCleanupPath (Martin Kletzander)<br/> </li> - <li> Cleanup:<br/> + <li>Cleanup:<br/> Remove left over debug in hvsupport.pl script (Daniel P. Berrange)<br/> </li> </ul> <h3>1.2.10: Nov 3 2014</h3> <ul> - <li> Features:<br/> + <li>Features:<br/> vbox: various drivers improvements (Taowei Luo),<br/> libxl: various drivers improvements (Stefan Bader, Jim Fehlig),<br/> Internal driver refactoring (Daniel P. Berrange)<br/> </li> - <li> Documentation + <li>Documentation virsh: Adjust the text in man page regarding qemu-attach (John Ferlan),<br/> HACKING: Regenerate after recent change (Peter Krempa),<br/> fix an improper git browsable address (Chen Hanxiao),<br/> @@ -2817,7 +2821,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> fix a typo in drvlxc (Chen Hanxiao)<br/> </li> - <li> Portability:<br/> + <li>Portability:<br/> mingw: fix build failure (Pavel Hrdina),<br/> domain: fix parsing of memory tunables on 32-bit machines (Eric Blake),<br/> virnetdev: stub virNetDev{Add,Del}Multi on FreeBSD (Roman Bogorodskiy),<br/> @@ -2830,7 +2834,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> qemu: monitor: Avoid shadowing variable "devname" on FreeBSD. Again. (Peter Krempa)<br/> </li> - <li> Bug Fixes:<br/> + <li>Bug Fixes:<br/> hotplug: fix char device detach (Pavel Hrdina),<br/> vbox_storage: fix coverity issue with overwriting value (Pavel Hrdina),<br/> Relax duplicate SCSI host pool checking (Ján Tomko),<br/> @@ -2883,7 +2887,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> qemu: json: Fix missing break in error reporting function (Peter Krempa)<br/> </li> - <li> Improvements:<br/> + <li>Improvements:<br/> Match scsi_host pools by parent address first (Ján Tomko),<br/> libxl: Support user-specified <emulator> (Jim Fehlig),<br/> Spell TIOCSCTTY right in the error message (Ján Tomko),<br/> @@ -3013,26 +3017,26 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> qemu: monitor: Add helper function to fill physical/virtual image size (Peter Krempa)<br/> </li> - <li> Cleanups:<br/> + <li>Cleanups:<br/> vbox: Remove unused things in vbox_tmpl.c (Taowei Luo),<br/> Cleanup maintainers list (Jiri Denemark)<br/> </li> </ul> <h3>1.2.9: Oct 1 2014</h3> <ul> - <li> Features:<br/> + <li>Features:<br/> Introduce virNodeAllocPages (Michal Privoznik),<br/> event: introduce new event for tunable values (Pavel Hrdina),<br/> add migration support for OpenVZ driver (Hongbin Lu),<br/> Add support for fetching statistics of completed jobs (Jiri Denemark)<br/> </li> - <li> Security:<br/> + <li>Security:<br/> CVE-2014-3633: qemu: blkiotune: Use correct definition when looking up disk (Peter Krempa),<br/> CVE-2014-3657: domain_conf: fix domain deadlock (Pavel Hrdina)<br/> </li> - <li> Documentation:<br/> + <li>Documentation:<br/> LXC: emphasis uid start of idmap only accept '0' in docs (Chen Hanxiao),<br/> specify vhost-net instead of net-vhost (Jianwei Hu),<br/> LXC: add HOME environment variable docs (Chen Hanxiao),<br/> @@ -3046,7 +3050,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> fix encryption format attribute in example (Ján Tomko)<br/> </li> - <li> Portability:<br/> + <li>Portability:<br/> qemu: monitor: Avoid shadowing variable "devname" on FreeBSD (Peter Krempa),<br/> lxc_monitor_protocol: Redefine xdr_uint64_t if needed (Michal Privoznik),<br/> Fix build without polkit (Pavel Hrdina),<br/> @@ -3060,7 +3064,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> blockjob: avoid 32-bit compilation warning (Eric Blake)<br/> </li> - <li> Bug Fixes:<br/> + <li>Bug Fixes:<br/> Allow setting migration max downtime any time (Chris St. Pierre),<br/> qemu: monitor: return block stats data as a hash to avoid disk mixup (Peter Krempa),<br/> Also filter out non-migratable features out of host-passthrough (Ján Tomko),<br/> @@ -3172,7 +3176,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> Free ifname in testDomainGenerateIfnames (Ján Tomko)<br/> </li> - <li> Improvements:<br/> + <li>Improvements:<br/> Fix typo s/EMULATORIN/EMULATORPIN/ (Daniel P. Berrange),<br/> Rename tunable event constants (Daniel P. Berrange),<br/> qemu: Always re-detect backing chain (Peter Krempa),<br/> @@ -3322,7 +3326,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> util: Introduce flags field for macvtap creation (Matthew Rosato)<br/> </li> - <li> Cleanups:<br/> + <li>Cleanups:<br/> nodeinfo: fix version of nodeAllocPages (Tomoki Sekiyama),<br/> audit: remove redundant NULL assignment (Ján Tomko),<br/> qemu: Drop unused formatting of uuid (Peter Krempa),<br/> @@ -3334,7 +3338,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> <h3>1.2.8: Sep 2 2014</h3> <ul> - <li> Features:<br/> + <li>Features:<br/> blockcopy: virDomainBlockCopy with XML destination, typed params (Eric Blake),<br/> lib: Introduce API for retrieving bulk domain stats (Peter Krempa),<br/> Introduce virDomainOpenGraphicsFD API (Ján Tomko),<br/> @@ -3647,11 +3651,11 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> </ul> <h3>1.2.7: Aug 2 2014</h3> <ul> - <li> Features:<br/> + <li>Features:<br/> Introduce virConnectGetDomainCapabilities (Michal Privoznik)<br/> </li> - <li> Documentation:<br/> + <li>Documentation:<br/> bhyve: document recent changes (Roman Bogorodskiy),<br/> fix an incorrect example for memoryBacking (Chen Hanxiao),<br/> libvirt-guests: fix some typos in a comment (Martin Kletzander),<br/> @@ -3676,7 +3680,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> LXC: update comments of lxcDomainCreateXMLWithFiles() and lxcDomainCreateXML() (Yue wenyuan)<br/> </li> - <li> Portability:<br/> + <li>Portability:<br/> build: fix build on cygwin (Eric Blake),<br/> domtop: Fix build on mingw (Michal Privoznik),<br/> build: fix build without numactl (Eric Blake),<br/> @@ -3690,7 +3694,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> tests: Avoid double linking some libraries (Michal Privoznik)<br/> </li> - <li> Bug fixes:<br/> + <li>Bug fixes:<br/> network: always set disable_ipv6, even when it should be 0 (Laine Stump),<br/> Fix a crash when cloning a volume with no backing store (Ján Tomko),<br/> qemu: error out if PCI passthrough type is not supported (Hu Tao),<br/> @@ -3750,7 +3754,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> qemu: raise an error when trying to use readonly ide disks (Giuseppe Scrivano)<br/> </li> - <li> Improvements:<br/> + <li>Improvements:<br/> blockcommit: turn on active commit (Eric Blake),<br/> blockcommit: track job type in xml (Eric Blake),<br/> Domain config: write <features/> if some capabilities are set. (Cédric Bosdonnat),<br/> @@ -3951,7 +3955,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> util: unify extra asterisk in viralloc.h (Martin Kletzander)<br/> </li> - <li> Cleanups:<br/> + <li>Cleanups:<br/> tests: Remove stale scsihostdata dir (Michal Privoznik),<br/> xenapiConnectGetCapabilities: Remove unused 'cleanup' label (Michal Privoznik)<br/> </li> @@ -3959,12 +3963,12 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> <h3>1.2.6: Jul 2 2014</h3> <ul> - <li> Features:<br/> + <li>Features:<br/> libxl: add migration support and fixes (Jim Fehlig),<br/> various improvements and fixes for NUMA (Michal Privoznik)<br/> </li> - <li> Documentation:<br/> + <li>Documentation:<br/> security: manager: Document behavior of disk label manipulation funcs (Peter Krempa),<br/> fix some typos in formatdomain.html (Jincheng Miao),<br/> virsh: man: Correctly spell QEMU (Peter Krempa),<br/> @@ -3977,7 +3981,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> formatcaps: Rework and add stubs to document (Michal Privoznik)<br/> </li> - <li> Portability:<br/> + <li>Portability:<br/> build: link libvirt_conf with libxml (Martin Kletzander),<br/> vbox: fix linker error (Jim Fehlig),<br/> libxl: don't break the build on Xen>=4.5 because of libxl_vcpu_setaffinity() (Dario Faggioli),<br/> @@ -3997,7 +4001,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> Fix build on freebsd (Pavel Hrdina)<br/> </li> - <li> Bug Fixes:<br/> + <li>Bug Fixes:<br/> qemu: copy: Accept 'format' parameter when copying to a non-existing img (Peter Krempa),<br/> storage: gluster: Fix header reader function (Peter Krempa),<br/> conf: storage: Add volume feature formatter for gluster pools (Peter Krempa),<br/> @@ -4068,7 +4072,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> virsh: Check whether found volume is member of the specified storage pool (Peter Krempa)<br/> </li> - <li> Improvements:<br/> + <li>Improvements:<br/> Introduce virFileReadAllQuiet (Ján Tomko),<br/> Track privileged state in udev nodedev driver (Ján Tomko),<br/> build: fix 'make syntax-check' after commit c6cf5df3 (Jim Fehlig),<br/> @@ -4248,7 +4252,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> Add helper program to create custom leases (Nehal J Wani)<br/> </li> - <li> Cleanups:<br/> + <li>Cleanups:<br/> Remove redundant docs from libvirt.h (Jiri Denemark),<br/> conf: whitespace tweak (Chen Fan)<br/> </li> @@ -4256,16 +4260,16 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> <h3>1.2.5: Jun 2 2014</h3> <ul> - <li> Security:<br/> + <li>Security:<br/> LSN-2014-0003: Don't expand entities when parsing XML (Daniel P. Berrange)<br/> </li> - <li> Features:<br/> + <li>Features:<br/> Introduce virDomain{Get,Set}Time APIs (Michal Privoznik),<br/> Introduce virDomainFSFreeze() and virDomainFSThaw() public API (Tomoki Sekiyama)<br/> </li> - <li> Documentation:<br/> + <li>Documentation:<br/> bhyve driver documentation improvements (Roman Bogorodskiy),<br/> virsh: fix typos in virsh man page (Eric Blake),<br/> maint: fix typo in previous patch (Eric Blake),<br/> @@ -4283,7 +4287,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> datatypes: Fix comment of secret uuid (Li Yang)<br/> </li> - <li> Portability:<br/> + <li>Portability:<br/> build: avoid compiler warning on 32-bit platform (Eric Blake),<br/> build: fix build with libselinux 2.3 (Cédric Bosdonnat),<br/> qemu: Fix specifying char devs for PPC (Olivia Yin),<br/> @@ -4293,7 +4297,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> Fix build wihout macvtap or virtualport (Ján Tomko)<br/> </li> - <li> Bug Fixes:<br/> + <li>Bug Fixes:<br/> util: fix DST end date in virtimetest timezones (Laine Stump),<br/> qemu: snapshot: Improve detection of mixed snapshots (Peter Krempa),<br/> qemu: snapshot: Reject internal active snapshot without memory state (Peter Krempa),<br/> @@ -4323,7 +4327,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> Fix vlan ID detection in udev interface driver (Ján Tomko)<br/> </li> - <li> Improvements:<br/> + <li>Improvements:<br/> maint: cleanup detection of const'ness of selinux ctx (Jim Fehlig),<br/> storage: fs: Drop-in replace use of virStorageFileGetMetadataFromBuf (Peter Krempa),<br/> storage: Return backing format from virStorageFileGetMetadataFromFD (Peter Krempa),<br/> @@ -4419,13 +4423,13 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> bhyve: improve bhyve_command.c testability (Roman Bogorodskiy)<br/> </li> - <li> Cleanup:<br/> + <li>Cleanup:<br/> virSecurityDACRestoreSecurityHostdevLabel: Unmark @def as unused (Michal Privoznik)<br/> </li> </ul> <h3>1.2.4: May 4 2014</h3> <ul> - <li> Documentation:<br/> + <li>Documentation:<br/> Device{Attach,Detach}: Document S4 limitations (Michal Privoznik),<br/> Add a new example to illustrate domain migration (Sahid Orentino Ferdjaoui),<br/> update docs for setting the QEMU BIOS path (Chen Hanxiao),<br/> @@ -4436,7 +4440,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> virsh: Fix comment of vshCmdInfo (Li Yang)<br/> </li> - <li> Portability:<br/> + <li>Portability:<br/> Explicitly link virfirewalltest and virsystemdtest against dbus (Guido Günther),<br/> qemuxml2argvtest: Don't use privileged mode upfront (Guido Günther),<br/> tests: skip virfirewalltest on non-Linux systems (Roman Bogorodskiy),<br/> @@ -4460,7 +4464,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> Use the force flag for mkfs -t xfs (Ján Tomko)<br/> </li> - <li> Bug Fixes:<br/> + <li>Bug Fixes:<br/> Restore skipping of setting capacity (John Ferlan),<br/> qemu: fix crash when removing <filterref> from interface with update-device (Laine Stump),<br/> storage: Clear all data allocated about backing store before reparsing (Peter Krempa),<br/> @@ -4510,7 +4514,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> qemu: cleanup error checking on agent replies (Martin Kletzander)<br/> </li> - <li> Improvements + <li>Improvements util: new stricter unsigned int parsing (Eric Blake),<br/> util: fix uint parsing on 64-bit platforms (Eric Blake),<br/> Misc error reporting bugs in QEMU cli builder (Daniel P. Berrange),<br/> @@ -4702,7 +4706,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> storage: netfs: Split up and tidy up NFS storage pool source function (Peter Krempa)<br/> </li> - <li> Cleanups:<br/> + <li>Cleanups:<br/> tests: drop dead code from argv2xml and xml2xml (Eric Blake),<br/> qemu: remove unneeded forward declaration (Martin Kletzander)<br/> </li> @@ -5136,7 +5140,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> Bump version to 1.2.3 for new dev cycle (Michal Privoznik)<br/> </li> - <li> Cleanups:<br/> + <li>Cleanups:<br/> util: remove useless comment for virCgroupMoveTask in vircgroup.c (Hongwei Bi),<br/> Don't leave empty first line in C source files (Martin Kletzander)<br/> </li> @@ -8995,7 +8999,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> </ul> <h3>1.0.2: Jan 30 2013</h3> <ul> - <li> Features:<br/> + <li>Features:<br/> LXC improvements (Daniel P. Berrange),<br/> S390 architecture improvement (Viktor Mihajlovski),<br/> Power architecture improvement (Li Zhang),<br/> @@ -9003,7 +9007,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> virTypedParams* APIs to helps with those data structures (Jiri Denemark)<br/> </li> - <li> Documentation:<br/> + <li>Documentation:<br/> aesthetical cleanups (Martin Kletzander),<br/> fix missed documentation for virterror functions (Claudio Bley),<br/> util: Fix docs for virBitmapParse (Peter Krempa),<br/> @@ -9034,7 +9038,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> Replace </br> with <br/> in docs/news.html.in (Peter Krempa)<br/> </li> - <li> Portability:<br/> + <li>Portability:<br/> Make sure we only abort without libcurl if $with_esx = yes (Guido Günther),<br/> build: Fix RPM build errors related to libvirt-lxc API (Viktor Mihajlovski),<br/> build: fix build on BSD (Eric Blake),<br/> @@ -9052,7 +9056,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> build: Check for broken GCC -Wlogical-op in configure (Viktor Mihajlovski)<br/> </li> - <li> Bug fixes:<br/> + <li>Bug fixes:<br/> conf: Don't format cputune element when not needed (Martin Kletzander),<br/> conf: Fix cpumask leak in virDomainDefFree (Ján Tomko),<br/> qemu: Destroy domain on decompression binary error (Michal Privoznik),<br/> @@ -9179,7 +9183,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> S390: Fix virSysinfoRead memory corruption (Viktor Mihajlovski)<br/> </li> - <li> Improvements:<br/> + <li>Improvements:<br/> Ignore '.trs' files (Martin Kletzander),<br/> build: Regenerate man pages on version bump (Jiri Denemark),<br/> rng: Change the datatype for volume name for common use (Osier Yang),<br/> @@ -9455,7 +9459,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> qemu: add qemu vga devices caps and one cap to mark them usable (Guannan Ren)<br/> </li> - <li> Cleanups:<br/> + <li>Cleanups:<br/> virlog: remove old code comment (Doug Goldstein),<br/> rpc: Revert Coverity tag message (John Ferlan),<br/> rpc: Remove unnecessary calls (John Ferlan),<br/> @@ -9478,7 +9482,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> </ul> <h3>1.0.1: Dec 17 2012</h3> <ul> - <li> Features:<br/> + <li>Features:<br/> Introduce virtlockd daemon (Daniel P. Berrange),<br/> parallels: add disk and network device support (Dmitry Guryanov),<br/> Add virDomainSendProcessSignal API (Daniel P. Berrange),<br/> @@ -9488,7 +9492,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> various snapshot improvements (Peter Krempa, Eric Blake)<br/> </li> - <li> Documentation:<br/> + <li>Documentation:<br/> fix some typos in examples (Eric Blake),<br/> Fix location of libvirt.conf and auth.conf (Michał Łomnicki),<br/> Document offline migration (Jiri Denemark),<br/> @@ -9499,7 +9503,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> Fix "virsh create" example (Guido Günther)<br/> </li> - <li> Portability:<br/> + <li>Portability:<br/> build: minor build fixes for BSD (Eric Blake),<br/> Socket identity support for FreeBSD. (Roman Bogorodskiy),<br/> Require SANLK_INQ_WAIT for inq_lockspace support (Guido Günther),<br/> @@ -9521,7 +9525,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> spec: don't enable cgconfig under systemd (Eric Blake)<br/> </li> - <li> Bug Fixes:<br/> + <li>Bug Fixes:<br/> network: fix (non)update of dnsmasq config during virDomainUpdateDeviceFlags (Laine Stump),<br/> sanlock: Re-add lockspace unconditionally (Michal Privoznik),<br/> install: fix virtlockd installation (Eric Blake),<br/> @@ -9612,7 +9616,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> conf: net: Fix helper for applying new network definition (Peter Krempa)<br/> </li> - <li> Improvements:<br/> + <li>Improvements:<br/> spec: Include lockd files in libvirt-daemon package (Jiri Denemark),<br/> build: Install both qemu-lockd.conf and qemu-sanlock.conf (Jiri Denemark),<br/> build: use fewer cat processes (Eric Blake),<br/> @@ -9838,7 +9842,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> qemu: use default machine type if missing it in qemu command line (Guannan Ren)<br/> </li> - <li> Cleanups:<br/> + <li>Cleanups:<br/> storage: Remove the redundant white lines (Osier Yang),<br/> Fix the indention (Osier Yang),<br/> Do not export symbol virStateActive anymore (Osier Yang),<br/> @@ -9863,7 +9867,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> </ul> <h3>1.0.0: Nov 2 2012</h3> <ul> - <li> Features:<br/> + <li>Features:<br/> virNodeGetCPUMap: Define public API. (Viktor Mihajlovski),<br/> Add systemd journal support (Daniel P. Berrange),<br/> Add a qemu capabilities cache manager (Daniel P. Berrange),<br/> @@ -9873,7 +9877,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> Lot of localization enhancements (Transifex teams)<br/> </li> - <li> Documentation:<br/> + <li>Documentation:<br/> net-update docs: s/domain/network/ (Michal Privoznik),<br/> libvirtd no longer uses abstract namespace (Eric Blake),<br/> documentation: HTML tag fix (Philipp Hahn),<br/> @@ -9898,7 +9902,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> node_memory: Improve the docs (Osier Yang)<br/> </li> - <li> Portability:<br/> + <li>Portability:<br/> Don't assume pid_t is the same size as an int (Daniel P. Berrange),<br/> build: Fix RPM build for non-x86 platforms (Viktor Mihajlovski),<br/> build: fix linking with systemtap probes (Eric Blake),<br/> @@ -9920,7 +9924,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> build: fix detection of netcf linked with libnl1 (Christophe Fergeau)<br/> </li> - <li> Bug Fixes:<br/> + <li>Bug Fixes:<br/> qemu: QMP capabilities support starts with 1.2 (Doug Goldstein),<br/> Linux Containers are not allowed to create device nodes. (Dan Walsh),<br/> qemu: Fix name comparison in qemuMonitorJSONBlockIoThrottleInfo() (Stefan Hajnoczi),<br/> @@ -10000,7 +10004,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> Fix start of containers with custom root filesystem (Daniel P. Berrange)<br/> </li> - <li> Improvements:<br/> + <li>Improvements:<br/> cpumap: optimize for clients that don't need online count (Eric Blake),<br/> daemon: Make the default PolicyKit policy auth_admin_keep. (Richard W.M. Jones),<br/> util: Improve error reporting from absolutePathFromBaseFile helper (Peter Krempa),<br/> @@ -10203,7 +10207,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> command: Move environ-adding code to common function virCommandAddEnv. (Richard W.M. Jones)<br/> </li> - <li> Cleanups:<br/> + <li>Cleanups:<br/> gitignore: Ignore 'tags' (Michal Privoznik),<br/> build: fix syntax-check tab violation (Eric Blake),<br/> maint: consistent whitespace after 'if' (Eric Blake),<br/> @@ -10223,7 +10227,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> </ul> <h3>0.10.2: September 24 2012</h3> <ul> - <li> Features:<br/> + <li>Features:<br/> network: define new API virNetworkUpdate (Laine Stump),<br/> add support for QEmu sandbox support (Ján Tomko),<br/> blockjob: add virDomainBlockCommit (Eric Blake),<br/> @@ -10241,7 +10245,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> qemu: Support for Block Device IO Limits (Viktor Mihajlovski)<br/> </li> - <li> Documentation:<br/> + <li>Documentation:<br/> locking: Remove README file in favor of internals/locking.html (Jiri Denemark),<br/> fix typo in filesystem docs (Eric Blake),<br/> include article about libvirt+audit in relatedlinks.html (Marcelo Cerri),<br/> @@ -10257,7 +10261,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> correct dompmwakeup description (Martin Kletzander)<br/> </li> - <li> Portability:<br/> + <li>Portability:<br/> build: fix nodeinfo build on non-Linux platforms (Eric Blake),<br/> virBitmap: fix build without HAVE_NUMACTL (Ján Tomko),<br/> build: Fix build failure on non-linux platform (Osier Yang),<br/> @@ -10283,7 +10287,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> Fix mingw64 build by using intptr_t for int->void* casts (Daniel P. Berrange)<br/> </li> - <li> Bug fixes:<br/> + <li>Bug fixes:<br/> network: don't "refresh" iptables rules on rule-less networks (Laine Stump),<br/> qemu: Fix failure path in disk hotplug (Jiri Denemark),<br/> Ensure existing selinux mount is removed before mounting new one in LXC (Daniel P. Berrange),<br/> @@ -10332,7 +10336,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> schemas: Fix wwn pattern (Osier Yang)<br/> </li> - <li> Improvements:<br/> + <li>Improvements:<br/> Don't install legacy initscripts at same time as systemd ones (Daniel P. Berrange),<br/> network: log error for unknown virNetworkUpdate command codes (Laine Stump),<br/> network: make virNetworkObjUpdate error detection/recovery better (Laine Stump),<br/> @@ -10486,7 +10490,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> util: Update the inconsistent and outdated comments (Osier Yang)<br/> </li> - <li> Cleanups:<br/> + <li>Cleanups:<br/> Remove redundant lines in src/qemu/qemu_driver.c (Tang Chen),<br/> Remove a redundant line in src/qemu/qemu_driver.c (Tang Chen),<br/> maint: fix up copyright notice inconsistencies (Eric Blake),<br/> @@ -10503,7 +10507,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> <h3>0.10.1: August 31 2012</h3> <ul> - <li> Bug Fixes:<br/> + <li>Bug Fixes:<br/> conf: Avoid formatting auto-generated DAC labels (Marcelo Cerri),<br/> conf: Fix parsing of seclabels without model (Marcelo Cerri),<br/> virsh: fixed incorrect timing report (Viktor Mihajlovski),<br/> @@ -10533,25 +10537,25 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> qemu: Fix starting domains with no cpu cgroup (Jiri Denemark)<br/> </li> - <li> Documentation:<br/> + <li>Documentation:<br/> virsh: Document subdriver option of attach-disk (Jiri Denemark),<br/> update option force to subcommand change-media (Guannan Ren),<br/> Fix typo in CPU tuning (Jiri Denemark),<br/> Fix emulator pinning example in formatdomain.html (Peter Krempa)<br/> </li> - <li> Improvement:<br/> + <li>Improvement:<br/> Implement virMacAddrIsBroadcastRaw (Stefan Berger)<br/> </li> - <li> Cleanup:<br/> + <li>Cleanup:<br/> security: remove dead code from virSecurityDACGenLabel (Alex Jia)<br/> </li> </ul> <h3>0.10.0: August 29 2012</h3> <ul> - <li> Features:<br/> + <li>Features:<br/> agent: add qemuAgentArbitraryCommand() for general qemu agent command (MATSUDA Daiki),<br/> Introduce virDomainPinEmulator and virDomainGetEmulatorPinInfo functions. (Tang Chen),<br/> network: use firewalld instead of iptables, when available (Thomas Woerner),<br/> @@ -10562,7 +10566,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> Add virDomainGetHostname (Guido Günther)<br/> </li> - <li> Documentation:<br/> + <li>Documentation:<br/> CPU allocation and pinning clarification (Martin Kletzander),<br/> libssh2_transport: Add docs to remote.html (Peter Krempa),<br/> Fix some typos in messages, docs and comments. (Yuri Chornoivan),<br/> @@ -10593,7 +10597,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> virsh: Clarify documentation for virsh dompmsuspend command (Peter Krempa)<br/> </li> - <li> Portability:<br/> + <li>Portability:<br/> Don't require gawk for a simple print expression (Guido Günther),<br/> Portability fixes for non-linux or old linux platforms (Daniel Veillard),<br/> build: define 'inline' iff HAVE_LIBNL1 (Michal Privoznik),<br/> @@ -10626,7 +10630,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> build: fix typo that breaks non-Linux builds (Eric Blake)<br/> </li> - <li> BugFixes:<br/> + <li>BugFixes:<br/> nwfilter: Don't try to acquire DBus context when DBus is disabled (Peter Krempa),<br/> util: Prevent libvirtd crash (Alex Jia),<br/> security_dac: Don't return uninitialised uid and gid for image labels (Peter Krempa),<br/> @@ -10731,7 +10735,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> fix key error for qemuMonitorGetBlockStatsInfo (lvroyce)<br/> </li> - <li> Improvements:<br/> + <li>Improvements:<br/> Introduce new VIR_ERR_AGENT_UNRESPONSIVE error code (Michal Privoznik),<br/> qemu: Switch to unified func name (Michal Privoznik),<br/> snapshot: rename an enum (Eric Blake),<br/> @@ -11078,7 +11082,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> qemu: add rbd to whitelist of migration-safe formats (Josh Durgin)<br/> </li> - <li> Cleanups:<br/> + <li>Cleanups:<br/> atomic: fix whitespace in previous patch (Eric Blake),<br/> virsh: drop unused headers (Eric Blake),<br/> maint: prohibit translations in testsuite (Eric Blake),<br/> @@ -11112,7 +11116,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> </ul> <h3>0.9.13: July 2 2012</h3> <ul> - <li> Features:<br/> + <li>Features:<br/> S390: support for s390(x) (Thang Pham and Viktor Mihajlovski),<br/> snapshot: implement new APIs for esx and vbox (Eric Blake),<br/> snapshot: new query APIs and many improvements (Eric Blake),<br/> @@ -11124,7 +11128,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> sVirt support for LXC domains inprovement (Daniel P. Berrange and Daniel J Walsh)<br/> </li> - <li> Documentation:<br/> + <li>Documentation:<br/> virsh: Cleanup virsh -V output (Doug Goldstein),<br/> configure: show correct default argument in help (Marc-André Lureau),<br/> fix typo in virDomainDestroy API doc (Christophe Fergeau),<br/> @@ -11141,7 +11145,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> Improve docs about compiling libvirt from GIT (Daniel P. Berrange)<br/> </li> - <li> Portability:<br/> + <li>Portability:<br/> Fix compilation on older sanlock (Daniel Veillard),<br/> Fix unused parameters / functions in virsh on Win32 (Daniel P. Berrange),<br/> Update to latest GNULIB to fix compat with Mingw64 toolchain (Daniel P. Berrange),<br/> @@ -11159,7 +11163,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> build: really silence the 32-bit warning (Eric Blake)<br/> </li> - <li> Bug Fixes:<br/> + <li>Bug Fixes:<br/> build: use correct limit for unsigned long long (Eric Blake),<br/> nwfilter: Fix memory leak (Stefan Berger),<br/> network_conf: Don't free uninitialized pointers while parsing DNS SRV (Peter Krempa),<br/> @@ -11215,7 +11219,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> nodeinfo: avoid probing host filesystem during test (Eric Blake)<br/> </li> - <li> Improvements:<br/> + <li>Improvements:<br/> Remove sub-mounts under /dev when starting an LXC container (Daniel P. Berrange),<br/> Fix vm's outbound traffic control problem (Eiichi Tsukata),<br/> conf: Don't shadow error from virGetDomain() (Peter Krempa),<br/> @@ -11428,7 +11432,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> Use XDG Base Directories instead of storing in home directory (William Jon McCann)<br/> </li> - <li> Cleanups:<br/> + <li>Cleanups:<br/> Remove accidentally added Patch: lines from mingw-libvirt.spec.in (Daniel P. Berrange),<br/> Add /tools/libvirt-guests.service to .gitignore (Guido Günther),<br/> sanlock: Properly indent (Michal Privoznik),<br/> @@ -11444,12 +11448,12 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> </ul> <h3>0.9.12: May 14 2012</h3> <ul> - <li> Features:<br/> + <li>Features:<br/> qemu: allow snapshotting of sheepdog and rbd disks (Josh Durgin),<br/> blockjob: add new APIs (Eric Blake)<br/> </li> - <li> Documentation:<br/> + <li>Documentation:<br/> mention migration issue of which credentials are used (Eric Blake),<br/> Add 'maintenance releases' link in 'News' sidebar (Cole Robinson),<br/> Added Snooze cloud manager to the IaaS section (Eugen Feller),<br/> @@ -11465,7 +11469,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> news.html.in: Fix <br> void tag (Michal Privoznik)<br/> </li> - <li> Portability:<br/> + <li>Portability:<br/> qemu: fix build when !HAVE_NUMACTL (Eric Blake),<br/> netlink: Fix build with libnl-3 (Jiri Denemark),<br/> build: avoid link failure on Windows (Eric Blake),<br/> @@ -11485,7 +11489,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> Fix format specifiers in test cases on Win32 (Daniel P. Berrange)<br/> </li> - <li> Bug Fixes:<br/> + <li>Bug Fixes:<br/> esx: Fix memory leaks in error paths related to transferred ownership (Matthias Bolte),<br/> qemu: Don't skip detection of virtual cpu's on non KVM targets (Peter Krempa),<br/> qemu: Re-detect virtual cpu threads after cpu hot (un)plug. (Peter Krempa),<br/> @@ -11559,7 +11563,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> qemu: Don't leak temporary list of USB devices (Michal Privoznik)<br/> </li> - <li> Improvements:<br/> + <li>Improvements:<br/> qemu: Refactor qemuDomainSetVcpusFlags (Peter Krempa),<br/> numad: Update comments in libvirt.spec.in (Osier Yang),<br/> numad: Check numactl-devel if compiled with numad support (Osier Yang),<br/> @@ -11658,7 +11662,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> virsh: Clarify escape sequence (Michal Privoznik)<br/> </li> - <li> Cleanups:<br/> + <li>Cleanups:<br/> building: remove libvirt_dbus.syms from EXTRA_DIST (Wen Congyang),<br/> conf: remove redundant () (Eric Blake),<br/> util: remove dead casts (Eric Blake),<br/> @@ -11668,7 +11672,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> </ul> <h3>0.9.11: Apr 3 2012</h3> <ul> - <li> Features:<br/> + <li>Features:<br/> Add support for the suspend event (Osier Yang),<br/> Add support for event tray moved of removable disks (Osier Yang),<br/> qemu: Support numad (Osier Yang),<br/> @@ -11679,7 +11683,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> a number of snapshot improvements (Eric Blake)<br/> </li> - <li> Portability:<br/> + <li>Portability:<br/> build: fix build on cygwin (Eric Blake),<br/> build: fix mingw ssize_t, syntax check (Eric Blake),<br/> Disable build of commandhelper & ssh on Win32 (Daniel P. Berrange),<br/> @@ -11696,7 +11700,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> Fix compilation on MacOS X (Lincoln Myers)<br/> </li> - <li> Documentation:<br/> + <li>Documentation:<br/> snapshot: fix virsh docs (Eric Blake),<br/> Expand docs for timer tick policy (Daniel P. Berrange),<br/> Add documentation for new attribute tray of disk target (Osier Yang),<br/> @@ -11718,7 +11722,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> virsh: Fix docs for list command (Peter Krempa)<br/> </li> - <li> Bug fixes:<br/> + <li>Bug fixes:<br/> qemu: Start nested job in qemuDomainCheckEjectableMedia (Jiri Denemark),<br/> qemu: fix memory leak in virDomainGetVcpus (Laine Stump),<br/> conf: allow fuzz in XML with cur balloon > max (Eric Blake),<br/> @@ -11782,7 +11786,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> Fix typos in API XML file paths (Daniel P. Berrange)<br/> </li> - <li> Improvements:<br/> + <li>Improvements:<br/> Xen: Fix <clock> handling (Philipp Hahn),<br/> Support clock=variable relative to localtime (Philipp Hahn),<br/> python: improve conversion validation (Eric Blake),<br/> @@ -11984,7 +11988,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> qemu: make block io tuning smarter (Eric Blake)<br/> </li> - <li> Cleanups:<br/> + <li>Cleanups:<br/> Fix typos and spacing in messages. (Yuri Chornoivan),<br/> qemu: eliminate nested switch, simplify code (Laine Stump),<br/> Fix typo in previous patch (Daniel P. Berrange),<br/> @@ -12004,7 +12008,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> <h3>0.9.10: Feb 13 2012</h3> <ul> - <li> Features:<br/> + <li>Features:<br/> Add support for sVirt in the LXC driver (Daniel P. Berrange),<br/> block rebase: add new API virDomainBlockRebase (Eric Blake),<br/> API: Add api to set and get domain metadata (Peter Krempa),<br/> @@ -12018,7 +12022,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> QEMU guest agent support (Daniel P. Berrange)<br/> </li> - <li> Documentation:<br/> + <li>Documentation:<br/> fix typo in python bindings (Eric Blake),<br/> conf: small changes to comments in virDomainDeviceInfo (Laine Stump),<br/> Clarify the purpose of domxml-from-native (Dave Allan),<br/> @@ -12041,7 +12045,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> Document Android application using libvirt (Michal Privoznik)<br/> </li> - <li> Portability:<br/> + <li>Portability:<br/> virpidfile: replace fopen/fwrite/fscanf with more portable version (Marc-André Lureau),<br/> util: Do not use PRIx64 macro (Osier Yang),<br/> Replace truncate() with ftruncate() (Daniel P. Berrange),<br/> @@ -12069,7 +12073,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> build: avoid spurious compiler warning (Eric Blake)<br/> </li> - <li> Bug Fixes:<br/> + <li>Bug Fixes:<br/> rpc: Plug memory leaks on doRemoteOpen() failure path (Alex Jia),<br/> GetCPUStats: fix overflow test (Lai Jiangshan),<br/> python: Correct arguments number for migrateSetMaxSpeed (Osier Yang),<br/> @@ -12123,7 +12127,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> config: report error when script given for inappropriate interface type (Laine Stump)<br/> </li> - <li> Improvements:<br/> + <li>Improvements:<br/> python: make other APIs share common {get, set}PyVirTypedParameter (Guannan Ren),<br/> npiv: Auto-generate WWN if it's not specified (Osier Yang),<br/> Remove single quotes from audit records (Marcelo Cerri),<br/> @@ -12288,7 +12292,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> qemu: one more client to live/config helper (Eric Blake)<br/> </li> - <li> Cleanups:<br/> + <li>Cleanups:<br/> python: drop unused function (Eric Blake),<br/> python: drop redundant function (Eric Blake),<br/> Replace TAB with white spaces (Osier Yang),<br/> @@ -12300,14 +12304,14 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> </ul> <h3>0.9.9: Jan 7 2012</h3> <ul> - <li> Features:<br/> + <li>Features:<br/> Add new API virDomain{S,G}etInterfaceParameters (Hu Tao),<br/> Add new API virDomain{G,S}etNumaParameters (Hu Tao),<br/> Add support for ppc64 qemu (Prerna Saxena, Bharata B Rao, Michael Ellerman),<br/> Support Xen domctl v8 (Jim Fehlig)<br/> </li> - <li> Documentation:<br/> + <li>Documentation:<br/> Fix typos in messages. (Yuri Chornoivan),<br/> docs: re-fix stray / (Eric Blake),<br/> virsh: move version command to host group (Lai Jiangshan),<br/> @@ -12323,7 +12327,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> threads: Document spurious wakeups on virCondWait (Michal Privoznik)<br/> </li> - <li> Portability:<br/> + <li>Portability:<br/> build: fix mingw virCommand build (Eric Blake),<br/> tests: avoid test failure on rawhide gnutls (Eric Blake),<br/> build: drop check for ANSI compiler (Eric Blake),<br/> @@ -12335,7 +12339,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> maint: allow bootstrap in a sandbox (Eric Blake)<br/> </li> - <li> Bug Fixes:<br/> + <li>Bug Fixes:<br/> qemu: Avoid memory leaks on qemuParseRBDString (Alex Jia),<br/> qemu: fix a bug in numatune (Hu Tao),<br/> qemu: fix use-after-free regression (Eric Blake),<br/> @@ -12390,7 +12394,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> Fix installation of libvirt-guests.service (Daniel P. Berrange)<br/> </li> - <li> Improvements:<br/> + <li>Improvements:<br/> Implement DNS SRV record into the bridge driver (Michal Novotny),<br/> seclabel: honor device override in selinux (Eric Blake),<br/> seclabel: allow a seclabel override on a disk src (Eric Blake),<br/> @@ -12457,13 +12461,13 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> Use sysfs to gather host topology, in place of (Prerna Saxena)<br/> </li> - <li> Cleanups:<br/> + <li>Cleanups:<br/> network_conf: Fix whitespace to pass syntax-check (Peter Krempa)<br/> </li> </ul> <h3>0.9.8: Dec 8 2011</h3> <ul> - <li> Features:<br/> + <li>Features:<br/> Add support for QEMU 1.0 (Jiri Denemark),<br/> Add first parts of PPC cpu driver. (Prerna Saxena),<br/> Add new API virDomain{Set, Get}BlockIoTune (Lei Li),<br/> @@ -12474,7 +12478,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> Add support for STP and VLANfiltering (Stefan Berger)<br/> </li> - <li> Documentation:<br/> + <li>Documentation:<br/> Add documentation for <disk><source type="dir"> (Christophe Fergeau),<br/> Fix typo in virDomainResume API doc (Christophe Fergeau),<br/> maint: fix improper use of 'an' (Eric Blake),<br/> @@ -12486,7 +12490,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> Documentation about chains' priorities, lists of elements etc. (Stefan Berger)<br/> </li> - <li> Portability:<br/> + <li>Portability:<br/> spec: don't use chkconfig --list (Eric Blake),<br/> build: fix build with older libxml2 (Eric Blake),<br/> Conditionalize daemonPath decl for Win32 which lacks UNIX sockets (Daniel P. Berrange),<br/> @@ -12509,7 +12513,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> build: fix mingw build of gnulib openpty (Eric Blake)<br/> </li> - <li> Bug Fixes:<br/> + <li>Bug Fixes:<br/> Fix updating of haveTheBuck in RPC client to be race-free (Daniel P. Berrange),<br/> Prevent crash of libvirtd when attaching to existing qemu process (Jim Fehlig),<br/> qemu: Ignore shutdown event from destroyed domain (Jiri Denemark),<br/> @@ -12559,7 +12563,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> lxc: free 'ttyFDs' array on return from lxcVmStart (Alex Jia)<br/> </li> - <li> Improvements:<br/> + <li>Improvements:<br/> npiv: Expose fabric_name outside (Osier Yang),<br/> Improve error reporting when libvirtd is not installed (Daniel P. Berrange),<br/> spec: fix sanlock dependency (Eric Blake),<br/> @@ -12710,7 +12714,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> virsh: Add VSH_OFLAG_EMPTY_OK for attach-disk command (Xu He Jie)<br/> </li> - <li> Cleanups:<br/> + <li>Cleanups:<br/> Remove time APIs from src/util/util.h (Daniel P. Berrange),<br/> bandwidth: Fix funky identation (Michal Privoznik),<br/> qemu: fix a const-correctness issue (Eric Blake),<br/> @@ -12750,7 +12754,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> </ul> <h3>0.9.7: Nov 8 2011</h3> <ul> - <li> Features:<br/> + <li>Features:<br/> esx: support vSphere 5.x (Patrice LACHANCE),<br/> vbox: support for VirtualBox 4.1 (Matthias Bolte),<br/> Introduce the virDomainOpenGraphics API (Daniel P. Berrange),<br/> @@ -12759,7 +12763,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> api: Add public api for 'reset' (Xu He Jie)<br/> </li> - <li> Documentation:<br/> + <li>Documentation:<br/> Add <deviceboot> capability. (Philipp Hahn),<br/> API: document scheduler parameter names (Eric Blake),<br/> improve typed parameter documentation (Eric Blake),<br/> @@ -12790,7 +12794,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> virsh: Improve virsh manual for virsh memtune command (Peter Krempa)<br/> </li> - <li> Portability:<br/> + <li>Portability:<br/> build: fix build on platforms without ptsname_r (Eric Blake),<br/> build: silence compiler warning on BSD (Eric Blake),<br/> build: fix linking on BSD (Eric Blake),<br/> @@ -12814,7 +12818,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> spec: F15 still uses cgconfig, RHEL lacks hyperv (Eric Blake)<br/> </li> - <li> Bug Fixes:<br/> + <li>Bug Fixes:<br/> Fix sending/receiving of FDs when stream returns EAGAIN (Daniel P. Berrange),<br/> lxc: avoid use-after-free (Eric Blake),<br/> conf: Don't free uninitialized pointer (Jiri Denemark),<br/> @@ -12883,7 +12887,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> Fix synchronous reading of stream data (Daniel P. Berrange)<br/> </li> - <li> Improvements:<br/> + <li>Improvements:<br/> Add missing defaultConsoleTargetType callback for AppArmour (Daniel P. Berrange),<br/> Fix naming of constant for disk event (Daniel P. Berrange),<br/> lxc: use common code for process cleanup (Eric Blake),<br/> @@ -13063,7 +13067,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> qemu: Transfer inactive XML among cookie (Michal Privoznik)<br/> </li> - <li> Cleanups:<br/> + <li>Cleanups:<br/> Remove translations in socket test case (Daniel P. Berrange),<br/> test: drop redundant check (Eric Blake),<br/> startupPolicty: Minor cleanups (Michal Privoznik),<br/> @@ -13081,10 +13085,10 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> <h3>0.9.6: Sep 22 2011</h3> <ul> - <li> Portability:<br/> + <li>Portability:<br/> build: silence warning on 32-bit build (Eric Blake)<br/> </li> - <li> Bug Fixes:<br/> + <li>Bug Fixes:<br/> snapshot: fix logic bug in qemu undefine (Eric Blake),<br/> sanlock: fix memory leak (Eric Blake),<br/> virsh: fix regression in argv parsing (Eric Blake),<br/> @@ -13094,7 +13098,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> qemu: Fix shutdown regression with buggy qemu (Jiri Denemark),<br/> remote: fix crash on OOM (Eric Blake)<br/> </li> - <li> Improvements:<br/> + <li>Improvements:<br/> snapshot: also delete empty directory (Eric Blake),<br/> snapshot: remove snapshot metadata on transient exit (Eric Blake),<br/> snapshot: prepare to remove transient snapshot metadata (Eric Blake),<br/> @@ -13107,7 +13111,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> </ul> <h3>0.9.5: Sep 20 2011</h3> <ul> - <li> Features:<br/> + <li>Features:<br/> many snapshot improvements (Eric Blake),<br/> latency: Define new public API and structure (Osier Yang),<br/> USB2 and various USB improvements (Marc-André Lureau),<br/> @@ -13115,7 +13119,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> Add public API for getting migration speed (Jim Fehlig),<br/> Add basic driver for Microsoft Hyper-V (Matthias Bolte)<br/> </li> - <li> Documentation:<br/> + <li>Documentation:<br/> virsh: tweak previous domblkstat patch (Eric Blake),<br/> virsh: doc: Fix supported driver types for attach-disk command (Peter Krempa),<br/> doc: Add statment about permissions needed to do a core dump (Peter Krempa),<br/> @@ -13134,7 +13138,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> use IPv6 addresses in range reserved for documentation (Laine Stump),<br/> describe new virtual switch configuration in network XML docs (Laine Stump)<br/> </li> - <li> Portability:<br/> + <li>Portability:<br/> Update to require sanlock 1.8 for license compliance (Daniel P. Berrange),<br/> build: work around lack of MacOS fdatasync (Eric Blake),<br/> python: Fix bindings generated in VPATH build (Jiri Denemark),<br/> @@ -13151,7 +13155,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> maint: fix some compilation issues on non-linux platforms (Stefan Berger),<br/> Fix detection of GnuTLS 1.x.y (Matthias Bolte)<br/> </li> - <li> Bug Fixes:<br/> + <li>Bug Fixes:<br/> Fix crash on events due to allocation errors (Daniel Veillard),<br/> conf: Assign newDef of active domain as persistent conf if it is NULL (Osier Yang),<br/> storage: Ensure the device path exists before refreshing disk pool (Osier Yang),<br/> @@ -13244,7 +13248,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> rpc:fix sasl session relocking intead of unlocking it (Guannan Ren),<br/> daemon: Unlink unix socket paths on shutdown (Osier Yang)<br/> </li> - <li> Improvements:<br/> + <li>Improvements:<br/> Remove devname identifier from autogenerated RPC code (Peter Krempa),<br/> maint: Prefer names over email in 'git shortlog' (Eric Blake),<br/> virsh: Add more human-friendly output of domblkstat command (Peter Krempa),<br/> @@ -13461,7 +13465,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> network: eliminate lag in updating dnsmasq hosts files (Laine Stump),<br/> build: update to latest gnulib (Eric Blake)<br/> </li> - <li> Cleanups:<br/> + <li>Cleanups:<br/> maint: ignore generated files (Eric Blake),<br/> Remove two references to files not generated (Daniel Veillard),<br/> latency: fix make check for remote protocol structs and numbers (Daniel Veillard),<br/> @@ -13910,7 +13914,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> </ul> <h3>0.9.3: Jul 4 2011</h3> <ul> - <li> Features:<br/> + <li>Features:<br/> vcpupin: introduce the new libvirt API (virDomainGetVcpupinInfo) (Taku Izumi),<br/> Add TXT record support for virtual DNS service (Michal Novotny),<br/> Support reboots with the QEMU driver (Daniel P. Berrange),<br/> @@ -13922,7 +13926,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> support multifunction PCI device (Wen Congyang),<br/> lxc: various improvements (Cole Robinson) </li> - <li> Documentation:<br/> + <li>Documentation:<br/> Add documentation for configuration lock managers (Daniel P. Berrange),<br/> fix indentation of sub-elements of <ip> in network XML (Laine Stump),<br/> document correct flag name (Eric Blake),<br/> @@ -13936,7 +13940,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> Add doc for video element (Osier Yang),<br/> Make hvsupport.pl pick up the host device drivers (Matthias Bolte) </li> - <li> Portability:<br/> + <li>Portability:<br/> Explicitly invoke python for API doc generator (Daniel Veillard),<br/> fix virParseVersionString with linux 3.0 (Scott Moser),<br/> Add conditionals to allow build without SASL (Daniel P. Berrange),<br/> @@ -13962,7 +13966,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> virt-aa-helper: add missing include (Eric Blake) </li> - <li> Bug Fixes:<br/> + <li>Bug Fixes:<br/> initialize pointer to NULL (Wen Congyang),<br/> storage: avoid crash on parse error (Eric Blake),<br/> vmware: avoid null deref on failed lookup (Eric Blake),<br/> @@ -14025,7 +14029,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> storage: avoid mishandling backing store > 2GB (Eric Blake) </li> - <li> Improvements:<br/> + <li>Improvements:<br/> tests: Add a general util test (Matthias Bolte),<br/> util: choose whether to require micro in version strings (Eric Blake),<br/> build: consistently use CFLAGS (Eric Blake),<br/> @@ -14223,7 +14227,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> Use VIR_USE_CPU instead of new wheel (Osier Yang),<br/> Avoid virGetVersion failure on specific driver support configurations (Matthias Bolte) </li> - <li> Cleanups:<br/> + <li>Cleanups:<br/> cgroup: silence coverity warning (Eric Blake),<br/> rpc: silence coverity warning (Eric Blake),<br/> qemu: silence coverity warnings (Eric Blake),<br/> @@ -14247,7 +14251,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> </ul> <h3>0.9.2: Jun 6 2011</h3> <ul> - <li> Features:<br/> + <li>Features:<br/> Framework for lock manager plugins (Daniel P. Berrange),<br/> API for network config change transactions (Michal Privoznik),<br/> flags for setting memory parameters (Hu Tao),<br/> @@ -14257,7 +14261,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> Defining the Screenshot public API (Michal Privoznik),<br/> public API for NMI injection (Lai Jiangshan)<br/> </li> - <li> Documentation:<br/> + <li>Documentation:<br/> esx: Fix driver method version annotations (Matthias Bolte),<br/> vbox: Fix typo in error message (Matthias Bolte),<br/> virsh: Document nodeinfo output (Jiri Denemark),<br/> @@ -14274,7 +14278,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> updates to CA cert and client cert/key info (Doug Goldstein),<br/> node filesystem attr is 'accessmode', not 'mode' (Cole Robinson)<br/> </li> - <li> Portability:<br/> + <li>Portability:<br/> vbox: Fix version extraction on Windows for newer VirtualBox versions (Matthias Bolte),<br/> Make dlopen usage in lock manager conditional (Matthias Bolte),<br/> build: fix VPATH build break from previous patch (Eric Blake),<br/> @@ -14299,7 +14303,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> build: fix VPATH build with distributed generated files (Eric Blake),<br/> build: fix VPATH builds (Eric Blake)<br/> </li> - <li> Bug Fixes:<br/> + <li>Bug Fixes:<br/> Fix QEMU p2p v2 migration when run from a v3 client (Daniel P. Berrange),<br/> Don't raise an error if the migration cookie is NULL (Daniel P. Berrange),<br/> Fix check of virKillProcess return status (Daniel P. Berrange),<br/> @@ -14368,7 +14372,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> apparmor: Fix uninitalized variable warning in virt-aa-helper (Matthias Bolte),<br/> Fix qemuMigrationToFile nonull annotation (Daniel P. Berrange)<br/> </li> - <li> Improvements:<br/> + <li>Improvements:<br/> API: consolidate common unreleased enums (Eric Blake),<br/> uml: correct command line networking parameters (Heath Petersen),<br/> Add call to sanlock_restrict() in QEMU lock driver (Daniel P. Berrange),<br/> @@ -14630,7 +14634,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> Make QEMU hotplug use cached qemu capabilities data (Daniel P. Berrange),<br/> Persist qemu capabilities in the domain status file (Daniel P. Berrange)<br/> </li> - <li> Cleanups:<br/> + <li>Cleanups:<br/> build: silence coverity false positive (Eric Blake),<br/> build: silence coverity false positive (Eric Blake),<br/> .gitignore: Exempt a new test binary. (Eric Blake),<br/> @@ -14648,14 +14652,14 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> </ul> <h3>0.9.1: May 5 2011</h3> <ul> - <li> Features:<br/> + <li>Features:<br/> support various persistent domain updates (KAMEZAWA Hiroyuki),<br/> improvements on memory APIs (Taku Izumi),<br/> Add virDomainEventRebootNew (Matthias Bolte),<br/> various improvements to libxl driver (Markus Groß),<br/> Spice: support audio, images and stream compression (Michal Privoznik)<br/> </li> - <li> Documentation:<br/> + <li>Documentation:<br/> fix missing VLAN id for Qbg example (Gerhard Stenzel),<br/> docs: Document filesystem tag device (Cole Robinson),<br/> maint: fix comment typos (Eric Blake),<br/> @@ -14666,7 +14670,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> docs: remove "returns" word from beginning of lines (Jean-Baptiste Rouault),<br/> docs: add an IPv6 address to network XML examples (Laine Stump)<br/> </li> - <li> Portability:<br/> + <li>Portability:<br/> build: fix getcwd portability problems (Eric Blake),<br/> build: avoid test warnings on mingw (Eric Blake),<br/> virsh: avoid compiler warning on mingw (Eric Blake),<br/> @@ -14685,7 +14689,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> Fix build for older gcc (Jim Fehlig),<br/> Don't try to enable stack protector on Win32 (Daniel P. Berrange)<br/> </li> - <li> Bug Fixes:<br/> + <li>Bug Fixes:<br/> storage: avoid null deref and leak on failure (Eric Blake),<br/> esx: Avoid null dereference on error in esxDomainGetInfo (Matthias Bolte),<br/> remote: avoid null dereference on error (Eric Blake),<br/> @@ -14741,7 +14745,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> Fix typo in systemtap tapset directory name (Daniel P. Berrange),<br/> qemu: Ignore unusable binaries (Jiri Denemark)<br/> </li> - <li> Improvements:<br/> + <li>Improvements:<br/> maint: detect clang 2.9 (Eric Blake),<br/> qemu: update qemuCgroupControllerActive signature (Eric Blake),<br/> lxc: report correct error (Eric Blake),<br/> @@ -14838,7 +14842,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> Allow relative path for qemu backing file (Jesse Cook),<br/> build: detect potentential uninitialized variables (Eric Blake)<br/> </li> - <li> Cleanups:<br/> + <li>Cleanups:<br/> esx: Disable performance counter queries in esxDomainGetInfo (Matthias Bolte),<br/> esx: Remove dead store in esxUtil_ParseDatastorePath (Matthias Bolte),<br/> util: remove dead assignment (Eric Blake),<br/> @@ -14876,7 +14880,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> </ul> <h3>0.9.0: Apr 4 2011</h3> <ul> - <li> Features:<br/> + <li>Features:<br/> Support cputune cpu usage tuning (Osier Yang and Nikunj A. Dadhania),<br/> Add public APIs for storage volume upload/download (Daniel P. Berrange),<br/> Add public API for setting migration speed on the fly (Daniel P. Berrange),<br/> @@ -14888,7 +14892,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> Dump the debug buffer to libvirtd.log on fatal signal (Daniel Veillard),<br/> Audit support (Eric Blake)<br/> </li> - <li> Documentation:<br/> + <li>Documentation:<br/> fix typo (Eric Blake),<br/> correct invalid xml (Eric Blake),<br/> virsh: Fix documentation for memtune command (Jiri Denemark),<br/> @@ -14911,7 +14915,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> Fix spelling mistake: seek (Philipp Hahn),<br/> maint: fix grammar in error message (Eric Blake)<br/> </li> - <li> Portability:<br/> + <li>Portability:<br/> virsh: fix mingw failure on creating nonblocking pipe (Eric Blake),<br/> Remove iohelper on Win32 since it is not required (Daniel P. Berrange),<br/> Fix domain events C example on Win32 (Daniel P. Berrange),<br/> @@ -14927,7 +14931,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> Add check for kill() to fix build of cgroups on win32 (Daniel P. Berrange),<br/> build: fix broken mingw cross-compilation (Eric Blake)<br/> </li> - <li> Bug fixes:<br/> + <li>Bug fixes:<br/> fix memory leak in qemuProcessHandleGraphics() (Wen Congyang),<br/> do not lock vm while allocating memory (Wen Congyang),<br/> Fix libxl driver startup (Daniel Veillard),<br/> @@ -15003,7 +15007,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> virsh: freecell --all getting wrong NUMA nodes count (Michal Privoznik),<br/> remove duplicated call to reportOOMError (Christophe Fergeau)<br/> </li> - <li> Improvements:<br/> + <li>Improvements:<br/> Make check_fc_host() and check_vport_capable() usable as rvalues (Guido Günther),<br/> maint: avoid locale-sensitivity in string case comparisons (Eric Blake),<br/> extend logging to record configuration-related changes (Naoya Horiguchi),<br/> @@ -15204,7 +15208,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> build: Fix VPATH build (Jiri Denemark),<br/> storage: Allow to delete device mapper disk partition (Osier Yang)<br/> </li> - <li> Cleanups:<br/> + <li>Cleanups:<br/> The next release is 0.9.0 not 0.8.9 (Daniel Veillard),<br/> maint: use space, not tab, in remote_protocol-structs (Eric Blake),<br/> Remove the Open Nebula driver (Daniel P. Berrange),<br/> @@ -15725,7 +15729,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> </ul> <h3>0.8.6: Nov 30 2010</h3> <ul> - <li> Features:<br/> + <li>Features:<br/> new API virDomainIsUpdated (Osier Yang),<br/> Add support for iSCSI target auto-discovery (Daniel P. Berrange),<br/> QED: Basic support for QED images (Adam Litke),<br/> @@ -15734,7 +15738,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> Add a sysinfo and SMBIOS support (Daniel Veillard),<br/> Implement virsh qemu-monitor-command. (Chris Lalancette)<br/> </li> - <li> Documentation:<br/> + <li>Documentation:<br/> updated c# bindings with arnauds latest changes (Justin Clift),<br/> Fix spelling of virBufferAsprintf (Jiri Denemark),<br/> Fix broken XML entity for '>' (Philipp Hahn),<br/> @@ -15755,7 +15759,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> Fix comment for video tag in domain RNG schema (Daniel P. Berrange),<br/> fix typo (Eric Blake)<br/> </li> - <li> Portability:<br/> + <li>Portability:<br/> remote: Fix TLS transport on Windows (Matthias Bolte),<br/> Rename 'remove' param to 'toremove' to avoid clash with stdio.h (Daniel P. Berrange),<br/> virt-aa-helper: Fix several compile errors (Matthias Bolte),<br/> @@ -15772,7 +15776,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> build: cleanup declaration of xen tests. (Diego Elio Pettenò),<br/> qemu: check compression program availability of virsh save and dump (KAMEZAWA Hiroyuki)<br/> </li> - <li> Bug Fixes:<br/> + <li>Bug Fixes:<br/> correct the arguments of migrate_speed (Wen Congyang),<br/> Fix memory leaks in audit & VirtualBox code (Daniel P. Berrange),<br/> Fix host CPU counting on unusual NUMA topologies (Jiri Denemark),<br/> @@ -15813,7 +15817,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> qemu: add the USB devices to the cgroup whitelist (Diego Elio Pettenò),<br/> 802.1Qbg: use pre-associate state at beginning of inc. migr (Stefan Berger)<br/> </li> - <li> Improvements:<br/> + <li>Improvements:<br/> Log client errors in libvirtd at debug priority,<br/> maint: prohibit most uses of xmlGetProp (Eric Blake),<br/> maint: ensure syntax check exceptions are distributed (Eric Blake),<br/> @@ -15908,7 +15912,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> OpenVZ: Fix some overwritten error codes (Guido Günther),<br/> OpenVZ: take veid from vmdef-name when defining new domains (Guido Günther)<br/> </li> - <li> Cleanups:<br/> + <li>Cleanups:<br/> tests: Fix detection of expected errors (Jiri Denemark),<br/> Remove bogus check for Xen in example program (Daniel P. Berrange),<br/> build: enforce files.h usage (Eric Blake),<br/> @@ -15935,7 +15939,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> <h3>0.8.5: Oct 29 2010</h3> <ul> - <li> Features: <br/> + <li>Features:<br/> Enable JSON and netdev features in QEMU > 0.13 (Daniel P. Berrange),<br/> framework for auditing integration (Daniel P. Berrange),<br/> framework for DTrace/SystemTap integration (Daniel P. Berrange),<br/> @@ -15945,7 +15949,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> Memory parameter controls (Nikunj A. Dadhania),<br/> portability to OS-X (Justin Clift) </li> - <li> Documentation: <br/> + <li>Documentation:<br/> virsh: improve the help description for managedsave and start (Justin Clift),<br/> updated the C# bindings page with arnauds latest changes (Justin Clift),<br/> update ruby bindings maintainer to chris lalancette (Justin Clift),<br/> @@ -15980,7 +15984,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> improve wording for the dev guide (Justin Clift),<br/> add the app dev guide (Justin Clift) </li> - <li>Portability: <br/> + <li>Portability:<br/> mingw: Add body for virFork and remove double virDriverLoadModule export (Matthias Bolte),<br/> daemon: exclude requirement for probes.h on systems without systemtap (Justin Clift),<br/> build: skip xenapi driver when building for RHEL (Eric Blake),<br/> @@ -15997,7 +16001,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> virsh: change wexitstatus order to allow compilation on mac osx (Justin Clift),<br/> build: use portable sed expressions (Eric Blake) </li> - <li> Bug Fixes: <br/> + <li>Bug Fixes:<br/> eliminate possibility of a double-closed file descriptor (Stefan Berger),<br/> qemu: check for vm after starting a job (Eric Blake),<br/> Only attempt removal of the rule allowing tftp if it was added (Laine Stump),<br/> @@ -16026,7 +16030,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> nwfilter bug appearing on big endian machines (Stefan Berger),<br/> Rebuild network filter for UML guests on updates (Soren Hansen) </li> - <li> Improvements: <br/> + <li>Improvements:<br/> vbox: Stop hardcoding a single path for VBoxXPCOMC.so (Matthias Bolte),<br/> Add disk/net resource auditing to QEMU driver (Daniel P. Berrange),<br/> Add auditing of security label in QEMU driver (Daniel P. Berrange),<br/> @@ -16144,7 +16148,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> libvirtd: improve the error message displayed on tls client auth failure (Justin Clift),<br/> virsh: Use virBuffer for generating XML (Jiri Denemark) </li> - <li> Cleanups: <br/> + <li>Cleanups:<br/> audit: printf warning fix (KAMEZAWA Hiroyuki),<br/> build: use shorter file names for 'make dist' (Eric Blake),<br/> maint: fix syntax-check failure of previous patch (Eric Blake),<br/> @@ -16183,17 +16187,17 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> </ul> <h3>0.8.4: Sep 10 2010</h3> <ul> - <li> Features: + <li>Features: various improvements to UML driver (Soren Hansen) </li> - <li> Documentation:<br/> + <li>Documentation:<br/> docs: fix lxc examples (Serge Hallyn),<br/> docs: mention domain clock improvements (Eric Blake),<br/> docs: fix an incorrect keyword in updated hooks page (Justin Clift),<br/> docs: significant expansion of custom hook script information (Justin Clift) </li> - <li> Portability:<br/> + <li>Portability:<br/> cygwin: build fix (Stefan Berger),<br/> build: allow mingw VPATH build (Eric Blake),<br/> Generate libvirt_qemu.def from libvirt_qemu.syms for MinGW builds (Matthias Bolte),<br/> @@ -16201,7 +16205,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> build-sys: fix build when daemon is disabled by not installing libvirtd.8 (Diego Elio Pettenò) </li> - <li> Bug Fixes:<br/> + <li>Bug Fixes:<br/> Fix block statistics with newer versions of Xen (Guido Günther),<br/> Fix off-by-1 in QEMU boot arg array handling (Daniel P. Berrange),<br/> bridge: Fix static-only DHCP configuration (Jiri Denemark),<br/> @@ -16235,7 +16239,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> Do not use boot=on on IDE device (Daniel Veillard) </li> - <li> Improvements:<br/> + <li>Improvements:<br/> virsh: Option for overriding disk type in attach-disk (Jiri Denemark),<br/> Explicitly pass uml_dir argument to user-mode-linux (Soren Hansen),<br/> Fix dependancies for remote generated files (Daniel P. Berrange),<br/> @@ -16299,7 +16303,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> build: rerun bootstrap if po/Makevars got nuked (Eric Blake) </li> - <li> Cleanups:<br/> + <li>Cleanups:<br/> Remove hack to get static binaries in DV environment (Daniel Veillard),<br/> build: avoid uninitialized variable warning (Eric Blake),<br/> vbox: factor a large function (Eric Blake),<br/> @@ -16327,12 +16331,12 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> </ul> <h3>0.8.3: Aug 4 2010</h3> <ul> - <li> Features:<br/> + <li>Features:<br/> esx: Support vSphere 4.1 (Matthias Bolte),<br/> Qemu arbitrary monitor commands. (Chris Lalancette),<br/> Qemu Monitor API entry point. (Chris Lalancette) </li> - <li> Documentation:<br/> + <li>Documentation:<br/> docs: Link wiki FAQ to main page (Cole Robinson),<br/> Document the memory balloon device (Daniel P. Berrange),<br/> man pages: update authors and copyright notice for libvirtd and virsh (Justin Clift),<br/> @@ -16342,11 +16346,11 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> html docs: added firewall explanation page by daniel berrange (Justin Clift),<br/> libvirtd: add man page for libvirtd (Justin Clift) </li> - <li> Portability:<br/> + <li>Portability:<br/> Fix compile on i686. (Chris Lalancette),<br/> daemon: dispatch.c should include stdio.h (and stdarg.h) (Ryota Ozaki) </li> - <li> Bug fixes:<br/> + <li>Bug fixes:<br/> qemu: Fix PCI address allocation (Jiri Denemark),<br/> Don't leak delay string when freeing virInterfaceBridgeDefs (Laine Stump),<br/> qemu: don't lose error on setting monitor capabilities (Eric Blake),<br/> @@ -16396,7 +16400,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> cpuCompare: Fix comparison of two host CPUs (Jiri Denemark),<br/> Fix potential crash in QEMU monitor JSON impl (Daniel P. Berrange) </li> - <li> Improvements:<br/> + <li>Improvements:<br/> OpenVZ: implement suspend/resume driver APIs (Jean-Baptiste Rouault),<br/> esx: Set storage pool target path to host.mountInfo.path (Matthias Bolte),<br/> esx: Make storage pool lookup by name and UUID more robust (Matthias Bolte),<br/> @@ -16467,7 +16471,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> cpuBaseline: Don't mess with the CPU returned by arch driver (Jiri Denemark),<br/> Make html docs in non-srcdir build (Jiri Denemark) </li> - <li> Cleanups:<br/> + <li>Cleanups:<br/> Fix build error in virsh.c (Laine Stump)<br/> Fix virsh error message when -d arg is not numeric (Eric Blake)<br/> Fix a couple of typo in iSCSI backend (Aurelien ROUGEMONT)<br/> @@ -16495,7 +16499,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> </ul> <h3>0.8.2: Jul 5 2010</h3> <ul> - <li> Features:<br/> + <li>Features:<br/> phyp: adding support for IVM (Eduardo Otubo),<br/> libvirt: introduce domainCreateWithFlags API (Eric Blake),<br/> add 802.1Qbh and 802.1Qbg switches handling (Stefan Berger),<br/> @@ -16503,7 +16507,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> Init script for handling guests on shutdown/boot (Jiri Denemark),<br/> qemu: live migration with non-shared storage for kvm (Kenneth Nagin) </li> - <li> Documentation:<br/> + <li>Documentation:<br/> html docs: add link to PHP bindings by Radek Hladik (Justin Clift),<br/> virsh: document attach-disk better (Eric Blake),<br/> bridge_driver.c: fix file description (Alan Pevec),<br/> @@ -16524,7 +16528,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> Fix a typo in docs (Ersek Laszlo),<br/> docs: hacking: explain why using curly braces well is important (Jim Meyering) </li> - <li> Portability:<br/> + <li>Portability:<br/> cgroup: Fix compilation broken on MinGW due to dirent->d_type (Ryota Ozaki),<br/> parthelper: fix compilation without optimization (Eric Blake),<br/> build: fix some mingw issues (Eric Blake),<br/> @@ -16543,7 +16547,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> dnsmasqReload: avoid mingw link failure (Eric Blake),<br/> mingw: Fix symbol export (Matthias Bolte) </li> - <li> Bug Fixes:<br/> + <li>Bug Fixes:<br/> Avoid invoking the qemu monitor destroy callback if the constructor fails (Daniel P. Berrange),<br/> cgroup: Add missing errno == ENOENT check in virCgroupRemoveRecursively (Ryota Ozaki),<br/> Fix crash when detaching devices from qemu domains. (Chris Lalancette),<br/> @@ -16632,7 +16636,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> Fix memory leaks in cmdInterfaceEdit and cmdNWFilterEdit. (Laine Stump),<br/> lxc: Fix failure on starting a domain with multiple interfaces (Ryota Ozaki) </li> - <li> Improvements:<br/> + <li>Improvements:<br/> vbox: Let configure detect/set the XPCOMC directory (Matthias Bolte),<br/> udev: Parse PCI devices even if libpciaccess fails (Cole Robinson),<br/> qemu: Improve some qemu.conf error reporting (Cole Robinson),<br/> @@ -16779,7 +16783,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> dnsmasq.c: Fix OOM error reporting (Matthias Bolte),<br/> autobuild.sh: provide default prefix (Eric Blake) </li> - <li> Cleanups:<br/> + <li>Cleanups:<br/> lxc: Change VIR_ERROR to VIR_DEBUG for just a debugging message (Ryota Ozaki),<br/> phyp: reduce scope of driver functions (Eric Blake),<br/> Fix test case failure due to missing -nodefconfig (Daniel P. Berrange),<br/> @@ -16849,17 +16853,17 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> </ul> <h3>0.8.1: Apr 30 2010</h3> <ul> - <li> Features:<br/> + <li>Features:<br/> Add virDomainGetBlockInfo API to query disk sizing (Daniel P. Berrange),<br/> Starts dnsmasq from libvirtd with --dhcp-hostsfile option (Satoru SATOH) </li> - <li> Documentation:<br/> + <li>Documentation:<br/> cleanup the download section of the documentation (Daniel Veillard),<br/> Fix messsage as message. (Chris Lalancette),<br/> Fix up a debug typo. (Chris Lalancette),<br/> add nwfilter functions to virsh man page (Stefan Berger) </li> - <li> Portability:<br/> + <li>Portability:<br/> Fix build on Ubuntu. (Chris Lalancette),<br/> cygwin/mingw: Fix version script handling (Matthias Bolte),<br/> build: fix autogen rule for VPATH build (Eric Blake),<br/> @@ -16877,7 +16881,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> Fix build of openvz on RHEL-5. (Chris Lalancette),<br/> Fix spec file for builds without lxc (Daniel Berteaud) </li> - <li> Bug Fixes:<br/> + <li>Bug Fixes:<br/> domain: Fix PCI address decimal parsing regression (Cole Robinson),<br/> Fix virt-pki-validate's determination of CN (Dustin Kirkland),<br/> Fix detection of disk in IO events (Daniel P. Berrange),<br/> @@ -16924,7 +16928,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> esxVMX_GatherSCSIControllers: avoid NULL dereference (Jim Meyering),<br/> Fix nodeinfotest on NUMA machines (Daniel P. Berrange) </li> - <li> Improvements:<br/> + <li>Improvements:<br/> Add support for another explicit IO error event (Daniel P. Berrange),<br/> Report all errors in SELinuxRestoreSecurityFileLabel (Jiri Denemark),<br/> Prevent updates while IP address learn thread is running (Stefan Berger),<br/> @@ -16990,7 +16994,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> Consolidate interface related functions in interface.c (Stefan Berger),<br/> build: include usleep gnulib module (Eric Blake) </li> - <li> Cleanups:<br/> + <li>Cleanups:<br/> qemudDomainSaveFlag: remove dead store (Jim Meyering),<br/> Remove unused goto label from qemudDomainCreate (Daniel P. Berrange),<br/> Fix indentation for storage conf XML (David Allan),<br/> @@ -18737,7 +18741,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> Run QEMU guests as an unprivileged user (Daniel P. Berrange),<br/> Support cgroups in QEMU driver (Daniel P. Berrange),<br/> QEmu hotplug NIC support (Mark McLoughlin),<br/> - Storage cloning for LVM and Disk backends(Cole Robinson),<br/> + Storage cloning for LVM and Disk backends (Cole Robinson),<br/> Switching to GIT (Jim Meyering)<br/> </li> <li>Documentation:<br/> @@ -19005,7 +19009,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> <li>Bug fixes:<br/> forbid autostart on transcient networks,<br/> xen device removal crash (Daniel Berrange),<br/> - re-detection of transient VMs after libvirtd restart(Daniel Berrange),<br/> + re-detection of transient VMs after libvirtd restart (Daniel Berrange),<br/> bug in virFindFileInPath (Daniel Berrange),<br/> handle new availheap sysctl in Xen (Daniel Berrange),<br/> allow USB hostdev product 0 (Cole Robinson),<br/> @@ -19100,7 +19104,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> cleanups and doc on virExec (Cole Robinson),<br/> error reporting in QEmu migrations (Cole Robinson),<br/> better path and driver detection in VBox (Pritesh Kothari),<br/> - avoid caching QEMU driver capabilities(Cole Robinson),<br/> + avoid caching QEMU driver capabilities (Cole Robinson),<br/> multiple graphics elements definitions (Pritesh Kothari),<br/> LSB init header init.d improvements (Frederik Himpe),<br/> special erro code for invalid operations (Daniel Berrange),<br/> @@ -19446,7 +19450,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> <li>Improvements:<br/> use xend preferably to hypervisor call to set Xen max memory (Jim Fehlig),<br/> allow remote://hostname/ URI for automatic probe of hypervisors (Daniel Berrange),<br/> - fix daemon configuration regression testing (Jim Meyering ),<br/> + fix daemon configuration regression testing (Jim Meyering),<br/> check /usr/bin/kvm for QEmu driver init (Guido Günther),<br/> proper active vs. inactive differentiation (Guido Günther),<br/> improve MTU setting on tap interfaces (Eduardo Habkost),<br/> @@ -19623,7 +19627,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> </li> <li>Bug fixes:<br/> memory leaks and testing for OOM (Daniel Berrange),<br/> - do_open driver bug(Evgeniy Sokolov),<br/> + do_open driver bug (Evgeniy Sokolov),<br/> don't use polkit auth when running as non-root (Daniel Berrange),<br/> boot of CDRom devices in QEmu/KVM (Daniel Berrange),<br/> fix OpenVZ probe function (Evgeniy Sokolov),<br/> @@ -19909,7 +19913,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> framework for automatic code syntax checks (Jim Meyering),<br/> allow kernel+initrd setup in Xen PV (Daniel Berrange),<br/> allow change of Disk/NIC of an inactive domains (Shigeki Sakamoto),<br/> - virsh commands to manipulate and create storage(Daniel Berrange),<br/> + virsh commands to manipulate and create storage (Daniel Berrange),<br/> update use of PolicyKit APIs,<br/> better detection of fedault hypervisor,<br/> block device statistics for QEmu/KVM (Richard Jones),<br/> @@ -20097,7 +20101,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> hypervisor support page update (Richard Jones)<br/> </li> <li>Bug fixes:<br/> - remove a couple of leaks in QEmu/KVM backend(Daniel berrange),<br/> + remove a couple of leaks in QEmu/KVM backend (Daniel berrange),<br/> fix GnuTLS 1.0 compatibility (Richard Jones),<br/> --config/-f option mistake for libvirtd (Richard Jones),<br/> remove leak in QEmu backend (Jim Paris),<br/> @@ -20379,7 +20383,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> python bindings for new functions (Daniel Berrange)<br/> </li> <li>Cleanups:<br/> - Various internal cleanups (Richard Jones,Daniel Berrange,Mark McLoughlin)<br/> + Various internal cleanups (Richard Jones, Daniel Berrange, Mark McLoughlin)<br/> </li> </ul> <h3>0.2.0: Feb 14 2007</h3> @@ -20432,7 +20436,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> <li>Features:<br/> separate the notion of maximum memory and current use at the XML level,<br/> add support for shareable drives,<br/> - add support for non-bridge style networking configs for guests(Daniel Berrange),<br/> + add support for non-bridge style networking configs for guests (Daniel Berrange),<br/> new config APIs virConfNew() and virConfSetValue() to build configs from scratch,<br/> hot plug device support based on Michel Ponceau patch,<br/> added support for inactive domains, new APIs, various associated cleanup (Daniel Berrange),<br/> -- 2.4.3

On Wed, Oct 14, 2015 at 10:36:06AM +0200, Andrea Bolognani wrote:
Mostly missing space between change description and author name or spurious space before section title.
Reflow the introductory paragraph as well. --- docs/news.html.in | 412 +++++++++++++++++++++++++++--------------------------- 1 file changed, 208 insertions(+), 204 deletions(-)
diff --git a/docs/news.html.in b/docs/news.html.in index 634f25b..c5b4458 100644 --- a/docs/news.html.in +++ b/docs/news.html.in @@ -4510,7 +4514,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> qemu: cleanup error checking on agent replies (Martin Kletzander)<br/> </li>
- <li> Improvements + <li>Improvements
There's ":<br />" missing ^^

On Wed, Oct 14, 2015 at 03:03:32PM +0200, Martin Kletzander wrote:
On Wed, Oct 14, 2015 at 10:36:06AM +0200, Andrea Bolognani wrote:
Mostly missing space between change description and author name or spurious space before section title.
Reflow the introductory paragraph as well. --- docs/news.html.in | 412 +++++++++++++++++++++++++++--------------------------- 1 file changed, 208 insertions(+), 204 deletions(-)
diff --git a/docs/news.html.in b/docs/news.html.in index 634f25b..c5b4458 100644 --- a/docs/news.html.in +++ b/docs/news.html.in @@ -4510,7 +4514,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a> qemu: cleanup error checking on agent replies (Martin Kletzander)<br/> </li>
- <li> Improvements + <li>Improvements
There's ":<br />" missing ^^
Sorry, that's in the next patch. Are you planning to squash all of them into one big one later or keeping them separate?

On Wed, 2015-10-14 at 15:07 +0200, Martin Kletzander wrote:
- <li> Improvements + <li>Improvements
There's ":<br />" missing ^^
Sorry, that's in the next patch. Are you planning to squash all of them into one big one later or keeping them separate?
I'd rather keep them separate since each change is self-contained, unless of course squashing them gives us some advantage that I haven't considered? Cheers. -- Andrea Bolognani Software Engineer - Virtualization Team

On Wed, Oct 14, 2015 at 05:03:39PM +0200, Andrea Bolognani wrote:
On Wed, 2015-10-14 at 15:07 +0200, Martin Kletzander wrote:
- <li> Improvements + <li>Improvements
There's ":<br />" missing ^^
Sorry, that's in the next patch. Are you planning to squash all of them into one big one later or keeping them separate?
I'd rather keep them separate since each change is self-contained, unless of course squashing them gives us some advantage that I haven't considered?
Well, less changes, some lines would not be fixed twice, but I was just curious, I don't care either way.
Cheers.
-- Andrea Bolognani Software Engineer - Virtualization Team

Some <br/> tags were missing from the end of the corresponding line, some of there were in the middle of the line instead. --- docs/news.html.in | 199 +++++++++++++++++++++++++++--------------------------- 1 file changed, 99 insertions(+), 100 deletions(-) diff --git a/docs/news.html.in b/docs/news.html.in index c5b4458..4b8f80f 100644 --- a/docs/news.html.in +++ b/docs/news.html.in @@ -610,9 +610,9 @@ <h3>1.2.17: Jul 02 2015</h3> <ul> <li>Features:<br/> - numerous improvements and refactoring of the parallels driver (Maxim Nestratov) - hardening of vcpu code (Peter Krempa) - hardening of migration code (Jiri Denemark) + numerous improvements and refactoring of the parallels driver (Maxim Nestratov),<br/> + hardening of vcpu code (Peter Krempa),<br/> + hardening of migration code (Jiri Denemark)<br/> </li> <li>Documentation:<br/> @@ -2808,7 +2808,7 @@ Internal driver refactoring (Daniel P. Berrange)<br/> </li> - <li>Documentation + <li>Documentation:<br/> virsh: Adjust the text in man page regarding qemu-attach (John Ferlan),<br/> HACKING: Regenerate after recent change (Peter Krempa),<br/> fix an improper git browsable address (Chen Hanxiao),<br/> @@ -4514,7 +4514,7 @@ qemu: cleanup error checking on agent replies (Martin Kletzander)<br/> </li> - <li>Improvements + <li>Improvements:<br/> util: new stricter unsigned int parsing (Eric Blake),<br/> util: fix uint parsing on 64-bit platforms (Eric Blake),<br/> Misc error reporting bugs in QEMU cli builder (Daniel P. Berrange),<br/> @@ -9872,7 +9872,7 @@ Add systemd journal support (Daniel P. Berrange),<br/> Add a qemu capabilities cache manager (Daniel P. Berrange),<br/> USB migration support (Jiri Denemark),<br/> - various improvement and fixes when using QMP QEmu interface + various improvement and fixes when using QMP QEmu interface<br/> Support for Xen 4.2 (Jim Fehlig),<br/> Lot of localization enhancements (Transifex teams)<br/> </li> @@ -13494,7 +13494,7 @@ new API virDomainUndefineFlags (Osier Yang),<br/> Implement code to attach to external QEMU instances. (Daniel P. Berrange),<br/> various missing python binding (Hu Tao and Lai Jiangshan),<br/> - bios: Add support for SGA (Michal Privoznik) + bios: Add support for SGA (Michal Privoznik)<br/> </li> <li>Documentation:<br/> @@ -13522,7 +13522,7 @@ Fix virsh inject-nmi man page (KAMEZAWA Hiroyuki),<br/> virsh: make destroy sound less scary (Eric Blake),<br/> minor whitespace cleanups (Eric Blake),<br/> - Add documentation for the seclabel XML element (Daniel P. Berrange) + Add documentation for the seclabel XML element (Daniel P. Berrange)<br/> </li> <li>Portability:<br/> @@ -13542,7 +13542,7 @@ build: fix virBufferVasprintf on mingw (Eric Blake),<br/> Fix compilation of statstest.c during make check (Jim Fehlig),<br/> Fix compilation error when SASL support is disabled (Jean-Baptiste Rouault),<br/> - tests: Disable networkxml2argvtest when configured without network (Matthias Bolte) + tests: Disable networkxml2argvtest when configured without network (Matthias Bolte)<br/> </li> <li>Bug Fixes:<br/> @@ -13632,7 +13632,7 @@ util: close the ioctl socket at the end of if(Get|Set)MacAddress (Laine Stump),<br/> pci: initialize state values on reattach (Guannan Ren),<br/> qemu: Fix virFileMakePath error handling in snapshot creation (Matthias Bolte),<br/> - storage: Do not override the exact error of createRawFile (Osier Yang) + storage: Do not override the exact error of createRawFile (Osier Yang)<br/> </li> <li>Improvements:<br/> @@ -13890,7 +13890,7 @@ conf: fix domain parse flags (Laine Stump),<br/> conf: Fix declaration of virNetworkDNS(Hosts)Def struct (Matthias Bolte),<br/> Allow for resource relabelling with static labels (Daniel P. Berrange),<br/> - Allow a base label to be specified in dynamic labelling mode (Daniel P. Berrange) + Allow a base label to be specified in dynamic labelling mode (Daniel P. Berrange)<br/> </li> <li>Cleanups:<br/> @@ -13909,7 +13909,7 @@ maint: fix typos on guaranteed (Eric Blake),<br/> build: fix broken build (Eric Blake),<br/> maint: fix spelling of Red Hat (Eric Blake),<br/> - tests: Fix virshtest failure after dominfo changed (Osier Yang) + tests: Fix virshtest failure after dominfo changed (Osier Yang)<br/> </li> </ul> <h3>0.9.3: Jul 4 2011</h3> @@ -13924,7 +13924,7 @@ send-key: Defining the public API (Lai Jiangshan),<br/> vcpupin: introduce a new libvirt API (virDomainPinVcpuFlags) (Taku Izumi),<br/> support multifunction PCI device (Wen Congyang),<br/> - lxc: various improvements (Cole Robinson) + lxc: various improvements (Cole Robinson)<br/> </li> <li>Documentation:<br/> Add documentation for configuration lock managers (Daniel P. Berrange),<br/> @@ -13938,7 +13938,7 @@ updated list of applications using libvirt. (Ohad Levy),<br/> improve VIR_DOMAIN_AFFECT_CURRENT description (Eric Blake),<br/> Add doc for video element (Osier Yang),<br/> - Make hvsupport.pl pick up the host device drivers (Matthias Bolte) + Make hvsupport.pl pick up the host device drivers (Matthias Bolte)<br/> </li> <li>Portability:<br/> Explicitly invoke python for API doc generator (Daniel Veillard),<br/> @@ -13963,7 +13963,7 @@ build: fix building error when building without libvirtd (Wen Congyang),<br/> Skip nodeinfo test on non intel architectures (Guido Günther),<br/> Fix dlopen dependency (Matthias Bolte),<br/> - virt-aa-helper: add missing include (Eric Blake) + virt-aa-helper: add missing include (Eric Blake)<br/> </li> <li>Bug Fixes:<br/> @@ -14026,7 +14026,7 @@ vcpupin: Fix cpu affinity setting bug of qemu driver (Taku Izumi),<br/> daemon: plug memory leak (Eric Blake),<br/> qemu: add missing break statement (Eric Blake),<br/> - storage: avoid mishandling backing store > 2GB (Eric Blake) + storage: avoid mishandling backing store > 2GB (Eric Blake)<br/> </li> <li>Improvements:<br/> @@ -14225,7 +14225,7 @@ util: Implement virRun as a wrapper around virCommand (Cole Robinson),<br/> qemu: Convert virExec usage to virCommand (Cole Robinson),<br/> Use VIR_USE_CPU instead of new wheel (Osier Yang),<br/> - Avoid virGetVersion failure on specific driver support configurations (Matthias Bolte) + Avoid virGetVersion failure on specific driver support configurations (Matthias Bolte)<br/> </li> <li>Cleanups:<br/> cgroup: silence coverity warning (Eric Blake),<br/> @@ -14246,7 +14246,7 @@ build: silence coverity false positive (Eric Blake),<br/> Move virRun, virExec*, virFork to util/command (Cole Robinson),<br/> util: Remove unused virExec wrapper (Cole Robinson),<br/> - esx: Remove duplicated invalid-argument checks (Matthias Bolte) + esx: Remove duplicated invalid-argument checks (Matthias Bolte)<br/> </li> </ul> <h3>0.9.2: Jun 6 2011</h3> @@ -15548,7 +15548,7 @@ build: allow mingw compilation with virCommand (Eric Blake),<br/> build: quote AC_LANG_PROGRAM to avoid warnings with autoconf 2.68 (Diego Elio Pettenò),<br/> build: properly handle ./configure --with-libpcap (Diego Elio Pettenò),<br/> - build: avoid shadowing devname(),<br/> on BSD systems (Eric Blake) + build: avoid shadowing devname() on BSD systems (Eric Blake)<br/> Fix undefined symbol errors when macvtap support is disabled (Matthias Bolte),<br/> Fix warning when macvtap support is disabled (Jean-Baptiste Rouault)<br/> </li> @@ -15620,8 +15620,8 @@ Utility functions to produce an IPv4 broadcast address (Laine Stump),<br/> qemu: add -incoming fd:n capability checking (Eric Blake),<br/> spec: Automatically turn on cgconfig service (Daniel P. Berrange),<br/> - Replace setuid/setgid/initgroups with virSetUIDGID(),<br/> (Laine Stump) - new virSetUIDGID(),<br/> utility function (Laine Stump) + Replace setuid/setgid/initgroups with virSetUIDGID() (Laine Stump)<br/> + new virSetUIDGID() utility function (Laine Stump)<br/> Preserve errno across calls to error reporting functions & VIR_FREE (Laine Stump),<br/> Run radvd for virtual networks with IPv6 addresses (Laine Stump),<br/> Turn on IPv6 support in the bridge_driver.c virtual network driver (Laine Stump),<br/> @@ -15681,7 +15681,7 @@ Add a new function doCoreDump (Hu Tao),<br/> threadpool impl (Hu Tao),<br/> qemu: Distinguish between domain shutdown and crash (Jiri Denemark),<br/> - qemu: Only build devstr when needs (attach PCI controller),<br/> (Osier Yang) + qemu: Only build devstr when needs (attach PCI controller) (Osier Yang)<br/> configure: improve misleading libnl missing error message (Justin Clift),<br/> maint: update to latest gnulib (Eric Blake),<br/> openvz: convert popen to virCommand (Eric Blake),<br/> @@ -15691,14 +15691,14 @@ command: improve allocation failure reporting (Eric Blake),<br/> tests: Fix detection of expected error (Jiri Denemark),<br/> tests: Fix code formating in commandtest (Jiri Denemark),<br/> - smbios: allow (),<br/> in smbios strings (Eric Blake) + smbios: allow () in smbios strings (Eric Blake)<br/> smbios: support system family (Eric Blake),<br/> threads: add virThreadID for debugging use (Eric Blake),<br/> - tests: Don't ignore return value of getcwd(),<br/> (Jiri Denemark) + tests: Don't ignore return value of getcwd(), (Jiri Denemark),<br/> build: Fix internal docs generation in VPATH builds (Jiri Denemark),<br/> Change return value of VIR_DRV_SUPPORTS_FEATURE to bool (Jiri Denemark),<br/> Implement virVMOperationType{To|From}String independent from WITH_MACVTAP (Matthias Bolte),<br/> - Create file in virFileWriteStr(),<br/> if it doesn't exist (Jean-Baptiste Rouault) + Create file in virFileWriteStr() if it doesn't exist (Jean-Baptiste Rouault)<br/> Remove bogus includes (Daniel P. Berrange),<br/> uml: convert to virCommand (Daniel P. Berrange),<br/> qemu: convert to virCommand (Eric Blake),<br/> @@ -15947,7 +15947,7 @@ Enable support for nested SVM (Daniel P. Berrange),<br/> Virtio plan9fs filesystem QEMU (Daniel P. Berrange),<br/> Memory parameter controls (Nikunj A. Dadhania),<br/> - portability to OS-X (Justin Clift) + portability to OS-X (Justin Clift)<br/> </li> <li>Documentation:<br/> virsh: improve the help description for managedsave and start (Justin Clift),<br/> @@ -15982,7 +15982,7 @@ reworked the policykit patch submitted by Patrick Dignan (Justin Clift),<br/> fix the xml validity errors regarding name and id (Justin Clift),<br/> improve wording for the dev guide (Justin Clift),<br/> - add the app dev guide (Justin Clift) + add the app dev guide (Justin Clift)<br/> </li> <li>Portability:<br/> mingw: Add body for virFork and remove double virDriverLoadModule export (Matthias Bolte),<br/> @@ -15999,7 +15999,7 @@ nwfilter: add a missing define, so libvirtd builds on macos x (Justin Clift),<br/> build: avoid non-portable IPv6 struct member, for MacOS X (Eric Blake),<br/> virsh: change wexitstatus order to allow compilation on mac osx (Justin Clift),<br/> - build: use portable sed expressions (Eric Blake) + build: use portable sed expressions (Eric Blake)<br/> </li> <li>Bug Fixes:<br/> eliminate possibility of a double-closed file descriptor (Stefan Berger),<br/> @@ -16028,7 +16028,7 @@ phyp: Checking for NULL values when building new guest (Eduardo Otubo),<br/> libvirt-guests: start late and stop early (Jiri Denemark),<br/> nwfilter bug appearing on big endian machines (Stefan Berger),<br/> - Rebuild network filter for UML guests on updates (Soren Hansen) + Rebuild network filter for UML guests on updates (Soren Hansen)<br/> </li> <li>Improvements:<br/> vbox: Stop hardcoding a single path for VBoxXPCOMC.so (Matthias Bolte),<br/> @@ -16146,7 +16146,7 @@ Refactor some daemon code to facilitate introduction of static probes (Daniel P. Berrange),<br/> nodeinfo: work when hot-plugging is disabled (Eric Blake),<br/> libvirtd: improve the error message displayed on tls client auth failure (Justin Clift),<br/> - virsh: Use virBuffer for generating XML (Jiri Denemark) + virsh: Use virBuffer for generating XML (Jiri Denemark)<br/> </li> <li>Cleanups:<br/> audit: printf warning fix (KAMEZAWA Hiroyuki),<br/> @@ -16182,19 +16182,19 @@ tests: silence qemuargv2xmltest noise (Eric Blake),<br/> tests: clean up qemuargv2xmltest (Eric Blake),<br/> maint: silence warning from libtool (Eric Blake),<br/> - tests: Fix preprocessor indentation (Jiri Denemark) + tests: Fix preprocessor indentation (Jiri Denemark)<br/> </li> </ul> <h3>0.8.4: Sep 10 2010</h3> <ul> - <li>Features: - various improvements to UML driver (Soren Hansen) + <li>Features:<br/> + various improvements to UML driver (Soren Hansen)<br/> </li> <li>Documentation:<br/> docs: fix lxc examples (Serge Hallyn),<br/> docs: mention domain clock improvements (Eric Blake),<br/> docs: fix an incorrect keyword in updated hooks page (Justin Clift),<br/> - docs: significant expansion of custom hook script information (Justin Clift) + docs: significant expansion of custom hook script information (Justin Clift)<br/> </li> <li>Portability:<br/> @@ -16202,7 +16202,7 @@ build: allow mingw VPATH build (Eric Blake),<br/> Generate libvirt_qemu.def from libvirt_qemu.syms for MinGW builds (Matthias Bolte),<br/> Only require XDR when building libvirtd or the remote driver (Matthias Bolte),<br/> - build-sys: fix build when daemon is disabled by not installing libvirtd.8 (Diego Elio Pettenò) + build-sys: fix build when daemon is disabled by not installing libvirtd.8 (Diego Elio Pettenò)<br/> </li> <li>Bug Fixes:<br/> @@ -16236,7 +16236,7 @@ bridge: Fix potential segfault when preparing dnsmasq arguments (Jiri Denemark),<br/> Fix return value usage (Doug Goldstein),<br/> nodeinfo: skip offline CPUs (Eric Blake),<br/> - Do not use boot=on on IDE device (Daniel Veillard) + Do not use boot=on on IDE device (Daniel Veillard)<br/> </li> <li>Improvements:<br/> @@ -16300,7 +16300,7 @@ bootloader_args is named bootargs in xen-xm (Philipp Hahn),<br/> Fix return value usage (Doug Goldstein),<br/> qemu: improve error if tun device is missing (Doug Goldstein),<br/> - build: rerun bootstrap if po/Makevars got nuked (Eric Blake) + build: rerun bootstrap if po/Makevars got nuked (Eric Blake)<br/> </li> <li>Cleanups:<br/> @@ -16326,7 +16326,7 @@ build: fix AppArmor compilation (Jamie Strandboge),<br/> Avoid unnecessary bootstrap runs in VPATH builds (Jiri Denemark),<br/> maint: update an email address preference (Eric Blake),<br/> - phyp: refactor phypListDomainsGeneric to eliminate buffer overflow (Eduardo Otubo) + phyp: refactor phypListDomainsGeneric to eliminate buffer overflow (Eduardo Otubo)<br/> </li> </ul> <h3>0.8.3: Aug 4 2010</h3> @@ -16334,7 +16334,7 @@ <li>Features:<br/> esx: Support vSphere 4.1 (Matthias Bolte),<br/> Qemu arbitrary monitor commands. (Chris Lalancette),<br/> - Qemu Monitor API entry point. (Chris Lalancette) + Qemu Monitor API entry point. (Chris Lalancette)<br/> </li> <li>Documentation:<br/> docs: Link wiki FAQ to main page (Cole Robinson),<br/> @@ -16344,11 +16344,11 @@ docs: fix so generated .html files are removed with make clean (Justin Clift),<br/> virsh: Fix man page syntax (Jiri Denemark),<br/> html docs: added firewall explanation page by daniel berrange (Justin Clift),<br/> - libvirtd: add man page for libvirtd (Justin Clift) + libvirtd: add man page for libvirtd (Justin Clift)<br/> </li> <li>Portability:<br/> Fix compile on i686. (Chris Lalancette),<br/> - daemon: dispatch.c should include stdio.h (and stdarg.h) (Ryota Ozaki) + daemon: dispatch.c should include stdio.h (and stdarg.h) (Ryota Ozaki)<br/> </li> <li>Bug fixes:<br/> qemu: Fix PCI address allocation (Jiri Denemark),<br/> @@ -16398,7 +16398,7 @@ cpuCompare: Fix crash on unexpected CPU XML (Jiri Denemark),<br/> cpu: Fail when CPU type cannot be detected from XML (Jiri Denemark),<br/> cpuCompare: Fix comparison of two host CPUs (Jiri Denemark),<br/> - Fix potential crash in QEMU monitor JSON impl (Daniel P. Berrange) + Fix potential crash in QEMU monitor JSON impl (Daniel P. Berrange)<br/> </li> <li>Improvements:<br/> OpenVZ: implement suspend/resume driver APIs (Jean-Baptiste Rouault),<br/> @@ -16469,7 +16469,7 @@ cpu: Add support for CPU vendor (Jiri Denemark),<br/> cpuBaseline: Detect empty set of common features (Jiri Denemark),<br/> cpuBaseline: Don't mess with the CPU returned by arch driver (Jiri Denemark),<br/> - Make html docs in non-srcdir build (Jiri Denemark) + Make html docs in non-srcdir build (Jiri Denemark)<br/> </li> <li>Cleanups:<br/> Fix build error in virsh.c (Laine Stump)<br/> @@ -16494,7 +16494,7 @@ Remove error checking after using vshMalloc. (Chris Lalancette)<br/> Remove the "showerror" parameter from vshConnectionUsability. (Chris Lalancette)<br/> Eliminate compiler warning due to gettext string with no format args (Laine Stump)<br/> - Fix build by removing unknown pod2man flag (Daniel P. Berrange) + Fix build by removing unknown pod2man flag (Daniel P. Berrange)<br/> </li> </ul> <h3>0.8.2: Jul 5 2010</h3> @@ -16505,7 +16505,7 @@ add 802.1Qbh and 802.1Qbg switches handling (Stefan Berger),<br/> Support for VirtualBox version 3.2 (Jean-Baptiste Rouault),<br/> Init script for handling guests on shutdown/boot (Jiri Denemark),<br/> - qemu: live migration with non-shared storage for kvm (Kenneth Nagin) + qemu: live migration with non-shared storage for kvm (Kenneth Nagin)<br/> </li> <li>Documentation:<br/> html docs: add link to PHP bindings by Radek Hladik (Justin Clift),<br/> @@ -16526,7 +16526,7 @@ note a typo: VIR_MIGRATE_TUNNELLED should be VIR_MIGRATE_TUNNELED, (Jim Meyering),<br/> datatypes: fix comment typo (Eric Blake),<br/> Fix a typo in docs (Ersek Laszlo),<br/> - docs: hacking: explain why using curly braces well is important (Jim Meyering) + docs: hacking: explain why using curly braces well is important (Jim Meyering)<br/> </li> <li>Portability:<br/> cgroup: Fix compilation broken on MinGW due to dirent->d_type (Ryota Ozaki),<br/> @@ -16545,7 +16545,7 @@ build: avoid compiler warning (Eric Blake),<br/> build: prefer WIN32 over __MINGW32__ checks (Eric Blake),<br/> dnsmasqReload: avoid mingw link failure (Eric Blake),<br/> - mingw: Fix symbol export (Matthias Bolte) + mingw: Fix symbol export (Matthias Bolte)<br/> </li> <li>Bug Fixes:<br/> Avoid invoking the qemu monitor destroy callback if the constructor fails (Daniel P. Berrange),<br/> @@ -16634,7 +16634,7 @@ lxc: Make SetMemory work for active domains only (Jiri Denemark),<br/> cgroup: Fix possible memory leak in virCgroupMakeGroup (Ryota Ozaki),<br/> Fix memory leaks in cmdInterfaceEdit and cmdNWFilterEdit. (Laine Stump),<br/> - lxc: Fix failure on starting a domain with multiple interfaces (Ryota Ozaki) + lxc: Fix failure on starting a domain with multiple interfaces (Ryota Ozaki)<br/> </li> <li>Improvements:<br/> vbox: Let configure detect/set the XPCOMC directory (Matthias Bolte),<br/> @@ -16781,7 +16781,7 @@ nwfilter: skip some interfaces on filter update (Stefan Berger),<br/> pass info where request stems from to have rules applied (Stefan Berger),<br/> dnsmasq.c: Fix OOM error reporting (Matthias Bolte),<br/> - autobuild.sh: provide default prefix (Eric Blake) + autobuild.sh: provide default prefix (Eric Blake)<br/> </li> <li>Cleanups:<br/> lxc: Change VIR_ERROR to VIR_DEBUG for just a debugging message (Ryota Ozaki),<br/> @@ -16848,20 +16848,20 @@ maint: whitespace cleanups (Eric Blake),<br/> qemu: Fix warning about a non-literal format string (Matthias Bolte),<br/> build: drop more redundant configure checks (Eric Blake),<br/> - build: silence a clang false positive (Eric Blake) + build: silence a clang false positive (Eric Blake)<br/> </li> </ul> <h3>0.8.1: Apr 30 2010</h3> <ul> <li>Features:<br/> Add virDomainGetBlockInfo API to query disk sizing (Daniel P. Berrange),<br/> - Starts dnsmasq from libvirtd with --dhcp-hostsfile option (Satoru SATOH) + Starts dnsmasq from libvirtd with --dhcp-hostsfile option (Satoru SATOH)<br/> </li> <li>Documentation:<br/> cleanup the download section of the documentation (Daniel Veillard),<br/> Fix messsage as message. (Chris Lalancette),<br/> Fix up a debug typo. (Chris Lalancette),<br/> - add nwfilter functions to virsh man page (Stefan Berger) + add nwfilter functions to virsh man page (Stefan Berger)<br/> </li> <li>Portability:<br/> Fix build on Ubuntu. (Chris Lalancette),<br/> @@ -16879,7 +16879,7 @@ virt-aa-helper-test: avoid non-portable echo -n (Eric Blake),<br/> schematestutils.sh: improve shell portability: avoid "echo -e" (Jim Meyering),<br/> Fix build of openvz on RHEL-5. (Chris Lalancette),<br/> - Fix spec file for builds without lxc (Daniel Berteaud) + Fix spec file for builds without lxc (Daniel Berteaud)<br/> </li> <li>Bug Fixes:<br/> domain: Fix PCI address decimal parsing regression (Cole Robinson),<br/> @@ -16926,7 +16926,7 @@ virGetHostnameLocalhost: avoid FP NULL-ptr-deref from clang (Jim Meyering),<br/> nwfilter_ebiptables_driver.c: avoid NULL dereference (Jim Meyering),<br/> esxVMX_GatherSCSIControllers: avoid NULL dereference (Jim Meyering),<br/> - Fix nodeinfotest on NUMA machines (Daniel P. Berrange) + Fix nodeinfotest on NUMA machines (Daniel P. Berrange)<br/> </li> <li>Improvements:<br/> Add support for another explicit IO error event (Daniel P. Berrange),<br/> @@ -16992,7 +16992,7 @@ nwfilter: use virFindFileInPath for needed CLI tools (Stefan Berger),<br/> esx: Extend esx_vi_generator.py to cover methods too (Matthias Bolte),<br/> Consolidate interface related functions in interface.c (Stefan Berger),<br/> - build: include usleep gnulib module (Eric Blake) + build: include usleep gnulib module (Eric Blake)<br/> </li> <li>Cleanups:<br/> qemudDomainSaveFlag: remove dead store (Jim Meyering),<br/> @@ -17023,7 +17023,7 @@ vshCommandRun: avoid used-uninitialized timing-related report from clang (Jim Meyering),<br/> Fix up formatting of remote protocol stuff. (Chris Lalancette),<br/> Remove some debugging leftovers. (Chris Lalancette),<br/> - build: fix syntax-check problems (Eric Blake) + build: fix syntax-check problems (Eric Blake)<br/> </li> </ul> <h3>0.8.0: Apr 12 2010</h3> @@ -17040,7 +17040,7 @@ Introduce a new public API for domain events (Daniel P. Berrange),<br/> Public virDomainMigrateSetMaxDowntime API (Jiri Denemark),<br/> Add public API for volume wiping (David Allan),<br/> - xenapi: Initial commit of the new driver (Sharadha Prabhakar) + xenapi: Initial commit of the new driver (Sharadha Prabhakar)<br/> </li> <li>Documentation:<br/> @@ -17060,7 +17060,7 @@ doc: fix more typos in HACKING (Jim Meyering),<br/> hacking: add a section on preprocessor conventions (Eric Blake),<br/> hacking: fix typos (Eric Blake),<br/> - Update hacking.html.in (David Allan) + Update hacking.html.in (David Allan)<br/> </li> <li>Portability:<br/> @@ -17073,7 +17073,7 @@ bootstrap: Remove rsync from buildreq list (Matthias Bolte),<br/> Make sure virtTestCaptureProgramOutput has a body on Windows (Matthias Bolte),<br/> Fix export of virConnectAuthPtrDefault for MinGW builds (Matthias Bolte),<br/> - Make sure uid_t and gid_t are available (Matthias Bolte) + Make sure uid_t and gid_t are available (Matthias Bolte)<br/> </li> <li>Bug Fixes:<br/> @@ -17144,7 +17144,7 @@ Fix locking in qemudDomainMemoryStats (Adam Litke),<br/> qemu restore: don't let corrupt input provoke unwarranted OOM (Jim Meyering),<br/> virFileReadLimFD: diagnose maxlen <= 0, rather than passing it on... (Jim Meyering),<br/> - xen: don't let bogus packets trigger over-allocation and segfault (Jim Meyering) + xen: don't let bogus packets trigger over-allocation and segfault (Jim Meyering)<br/> </li> <li>Improvements:<br/> @@ -17284,7 +17284,7 @@ virsh: fix existing N_ uses (Eric Blake),<br/> Get thread and socket information in virsh nodeinfo. (Chris Lalancette),<br/> Eliminate large stack buffer in doTunnelSendAll (Laine Stump),<br/> - build: consistently use C99 varargs macros (Eric Blake) + build: consistently use C99 varargs macros (Eric Blake)<br/> </li> <li>Cleanups:<br/> @@ -17380,7 +17380,7 @@ ebtablesAddRemoveRule: avoid dead store (Jim Meyering),<br/> virInterfaceDefParseBond: avoid dead stores (Jim Meyering),<br/> xenXMDomainConfigParse: avoid dead store (Jim Meyering),<br/> - qemuMonitorTextGetMemoryStats: decrease risk of false positive in parsing (Jim Meyering) + qemuMonitorTextGetMemoryStats: decrease risk of false positive in parsing (Jim Meyering)<br/> </li> </ul> @@ -17392,7 +17392,7 @@ Add QEMU support for virtio channel (Matthew Booth),<br/> Add persistence of PCI addresses to QEMU (Daniel P. Berrange),<br/> Functions for computing baseline CPU from a set of host CPUs (Jiri Denemark),<br/> - Public API for virDomain{Attach,Detach}DeviceFlags (Jim Fehlig) + Public API for virDomain{Attach,Detach}DeviceFlags (Jim Fehlig)<br/> </li> <li>Documentation:<br/> @@ -17413,14 +17413,14 @@ Fix up a misspelled comment. (Chris Lalancette),<br/> doc: restrict virDomain{Attach,Detach}Device to active domains (Jim Fehlig),<br/> docs: Refer to virReportOOMError in the HACKING file (Matthias Bolte),<br/> - docs: Emphasize that devices have to be inside the <devices> element (Matthias Bolte) + docs: Emphasize that devices have to be inside the <devices> element (Matthias Bolte)<br/> </li> <li>Portability:<br/> build: vbox: avoid build failure when linking with --no-add-needed (Diego Elio Pettenò),<br/> build: avoid dlopen-related link failure on rawhide/F13 (Diego Elio Pettenò),<br/> Add a define for NFS_SUPER_MAGIC (Chris Lalancette),<br/> - Fix compliation of AppArmor related code (Matthias Bolte) + Fix compliation of AppArmor related code (Matthias Bolte)<br/> </li> <li>Bug Fixes:<br/> @@ -17477,7 +17477,7 @@ virExecWithHook: avoid leak on OOM error path (Jim Meyering),<br/> cgroup.c: don't leak mem+FD upon OOM (Jim Meyering),<br/> cgroup.c: avoid unconditional leaks (Jim Meyering),<br/> - virt-pki-validate contains unexpanded SYSCONFDIR variable (Doug Goldstein) + virt-pki-validate contains unexpanded SYSCONFDIR variable (Doug Goldstein)<br/> </li> <li>Improvements:<br/> @@ -17571,7 +17571,7 @@ Server side dispatcher (Jim Fehlig),<br/> Remote driver (Jim Fehlig),<br/> Wire protocol format (Jim Fehlig),<br/> - Public API Implementation (Jim Fehlig) + Public API Implementation (Jim Fehlig)<br/> </li> <li>Cleanups:<br/> @@ -17642,7 +17642,7 @@ opennebula: Remove unnecessary casts (Matthias Bolte),<br/> esx: Remove unnecessary casts (Matthias Bolte),<br/> cpu conf: Use virBufferFreeAndReset instead of virBufferContentAndReset and VIR_FREE (Matthias Bolte),<br/> - esx: Cleanup preprocessing structure in esxVI_EnsureSession (Matthias Bolte) + esx: Cleanup preprocessing structure in esxVI_EnsureSession (Matthias Bolte)<br/> </li> </ul> <h3>0.7.6: Feb 3 2010</h3> @@ -17651,7 +17651,7 @@ Implement support for multi IQN (David Allan),<br/> Implement CPU topology support for QEMU driver (Jiri Denemark),<br/> Use QEmu new device addressing when possible (Daniel P. Berrange),<br/> - Implement SCSI controller hotplug/unplug for QEMU (Wolfgang Mauerer) + Implement SCSI controller hotplug/unplug for QEMU (Wolfgang Mauerer)<br/> </li> <li>Documentation:<br/> @@ -17664,7 +17664,7 @@ Minor fixes for API extension doc (Jim Fehlig),<br/> cpu_shares parameter limit documented (David Jorm),<br/> Document the domain XML cache attribute for disk devices (Matthias Bolte),<br/> - Replace old CVS references with GIT (Matthias Bolte) + Replace old CVS references with GIT (Matthias Bolte)<br/> </li> <li>Portability:<br/> @@ -17672,7 +17672,7 @@ Add some missing include files which break build in certain platforms (Daniel P. Berrange),<br/> Remove AppArmor compile warnings (Jamie Strandboge),<br/> Fix compilation of virt-aa-helper.c (Matthias Bolte),<br/> - Fix linkage of virt-aa-helper to libgnu.a (Matthias Bolte) + Fix linkage of virt-aa-helper to libgnu.a (Matthias Bolte)<br/> </li> <li>Bug Fixes:<br/> @@ -17736,7 +17736,7 @@ vbox_tmpl.c: avoid NULL deref upon vboxDomainCreateXML failure (Jim Meyering),<br/> qemu_driver.c: avoid NULL dereference upon disk-op failure (Jim Meyering),<br/> openvz_conf.c: don't dereference NULL upon failure (Jim Meyering),<br/> - Distribute vmx2xml and xml2vmx test data files (Matthias Bolte) + Distribute vmx2xml and xml2vmx test data files (Matthias Bolte)<br/> </li> <li>Improvements:<br/> @@ -17833,7 +17833,7 @@ esx: Also allow virtualHW version 4 for ESX 4.0 (Matthias Bolte),<br/> qemu: Always enable the virtio balloon driver (Adam Litke),<br/> Disable building of static Python module (Diego Elio Pettenò),<br/> - Fix parsing of 'info chardev' line endings (Matthew Booth) + Fix parsing of 'info chardev' line endings (Matthew Booth)<br/> </li> <li>Cleanups:<br/> @@ -17889,7 +17889,7 @@ fix 7 "make check" test failures in non-srcdir build (Jim Meyering),<br/> virsh: Use VIR_FREE instead of free (Matthias Bolte),<br/> esx: Don't warn about an empty URI path (Matthias Bolte),<br/> - qemu_driver.c: remove useless, warning-provoking test (Jim Meyering) + qemu_driver.c: remove useless, warning-provoking test (Jim Meyering)<br/> </li> </ul> @@ -17902,7 +17902,7 @@ Support for JSON mode monitor [deactivated] (Daniel P. Berrange),<br/> Support for interface model='netfront' (Jiri Denemark),<br/> vbox: Add support for version 3.1 (Pritesh Kothari),<br/> - Support QEMU's virtual FAT block device driver (Daniel P. Berrange) + Support QEMU's virtual FAT block device driver (Daniel P. Berrange)<br/> </li> <li>Documentation:<br/> @@ -17916,7 +17916,7 @@ Update location of C# bindings. (Richard Jones),<br/> Fix typo in QEMU driver webpage (Daniel P. Berrange),<br/> Clarify documentation for private symbols (Wolfgang Mauerer),<br/> - Fix news.html validation (Dan Kenigsberg) + Fix news.html validation (Dan Kenigsberg)<br/> </li> <li>Portability:<br/> @@ -17931,7 +17931,7 @@ Fix install location for Python bindings (Matthias Bolte),<br/> Use AM_PATH_PYTHON and python-config to detect Python configuration (Matthias Bolte),<br/> Fix a compilation failure if yajl not avail (Daniel Veillard),<br/> - Fix compilation for configure --disable-nls (Matthias Bolte) + Fix compilation for configure --disable-nls (Matthias Bolte)<br/> </li> <li>Bug fixes:<br/> @@ -17980,7 +17980,7 @@ Free cgroup device ACL list on driver shutdown (Daniel P. Berrange),<br/> xen: Fix unconditional freeing in xenDaemonListDefinedDomains() (Matthias Bolte),<br/> Fix default disk type when parsing QEMU argv (Daniel P. Berrange),<br/> - remove port filter when network device is detached (Gerhard Stenzel) + remove port filter when network device is detached (Gerhard Stenzel)<br/> </li> <li>Improvements:<br/> @@ -18022,7 +18022,7 @@ Add virIndexToDiskName and fix mapping gap (Matthias Bolte),<br/> Add another SENTINEL attribute (Paolo Bonzini),<br/> Fix help message (Wolfgang Mauerer),<br/> - Alternate CPU affinity impl to cope with NR_CPUS > 1024 (Daniel P. Berrange) + Alternate CPU affinity impl to cope with NR_CPUS > 1024 (Daniel P. Berrange)<br/> </li> <li>Cleanups:<br/> @@ -18057,7 +18057,7 @@ Fix ReprotError vs ReportError typo in JSON code (Daniel P. Berrange),<br/> Fix inverted conditional test in configure.ac check for yajl (Daniel P. Berrange),<br/> Pull schedular affinity code out into a separate module (Daniel P. Berrange),<br/> - Ignore docs/ directory for strcmp() syntax check (Daniel P. Berrange) + Ignore docs/ directory for strcmp() syntax check (Daniel P. Berrange)<br/> </li> </ul> @@ -18068,7 +18068,7 @@ New APIs for checking some object properties (Daniel P. Berrange),<br/> Fully asynchronous monitor I/O processing (Daniel P. Berrange),<br/> add MAC address based port filtering to qemu (Gerhard Stenzel),<br/> - Support for IPv6 / multiple addresses per interfaces (Laine Stump) + Support for IPv6 / multiple addresses per interfaces (Laine Stump)<br/> </li> <li>Documentation:<br/> @@ -18083,7 +18083,7 @@ LXC fix wrong or out-of-date function descriptions (Ryota Ozaki),<br/> docs: <clock> property is 'offset', not 'sync' (Cole Robinson),<br/> Update the documentation for virDomainMigrateToURI (Chris Lalancette),<br/> - fix virDomainMigrateToURI doc (Dan Kenigsberg) + fix virDomainMigrateToURI doc (Dan Kenigsberg)<br/> </li> <li>Bug fixes:<br/> @@ -18136,7 +18136,7 @@ node device: Fix locking issue in virNodeDeviceDestroy (Cole Robinson),<br/> LXC fix virCgroupGetValueStr problem with \n (Ryota Ozaki),<br/> Avoid crash in virBufferEscapeString (Laine Stump),<br/> - LXC complement PATH environment variable (Ryota Ozaki) + LXC complement PATH environment variable (Ryota Ozaki)<br/> </li> <li>Improvements:<br/> @@ -18216,7 +18216,7 @@ tests: Break out duplicate schema verification functionality. (Cole Robinson),<br/> tests: Fix text output for interface XML 2 XML (Cole Robinson),<br/> Add ocfs2 to list of fs pool types (Jim Fehlig),<br/> - Finer grained migration control (Chris Lalancette) + Finer grained migration control (Chris Lalancette)<br/> </li> <li>Cleanups:<br/> @@ -18293,12 +18293,12 @@ tests: Centralize VIR_TEST_DEBUG lookup, and document it (Cole Robinson),<br/> Remove bogus const annotations to hash iterator (Daniel P. Berrange),<br/> Remove bashisms from schema tests. (Matthias Bolte),<br/> - Don't copy old machines from a domain which has none (Mark McLoughlin) + Don't copy old machines from a domain which has none (Mark McLoughlin)<br/> </li> </ul> <h3>0.7.3: Nov 20 2009</h3> <ul> - <li>Broken release, use 0.7.4 + <li>Broken release, use 0.7.4<br/> </li> </ul> @@ -18309,7 +18309,7 @@ Add public API definition for data stream handling (Daniel P. Berrange),<br/> ESX add esxDomainDefineXML() (Matthias Bolte),<br/> LXC: suspend/resume support (Ryota Ozaki),<br/> - Big code tree cleanup (Daniel P. Berrange) + Big code tree cleanup (Daniel P. Berrange)<br/> </li> <li>Documentation:<br/> @@ -18324,7 +18324,7 @@ Fix up comments for domainXML{To,From}Native. (Chris Lalancette),<br/> Simple fix of a comment in qemuStringToArgvEnv. (Chris Lalancette),<br/> Add a README file to src/ explaining the directory structure (Daniel P. Berrange),<br/> - doc: don't emit trailing blanks into generated and VC'd NEWS file (Jim Meyering) + doc: don't emit trailing blanks into generated and VC'd NEWS file (Jim Meyering)<br/> </li> <li>Portability:<br/> @@ -18367,7 +18367,7 @@ Don't do virSetConnError when virDrvSupportsFeature is successful. (Chris Lalancette),<br/> Fix a double-free in qemudRunLoop() (Chris Lalancette),<br/> Fix leak in PCI hostdev hot-unplug (Mark McLoughlin),<br/> - Fix net/disk hot-unplug segfault (Mark McLoughlin) + Fix net/disk hot-unplug segfault (Mark McLoughlin)<br/> </li> <li>Improvements:<br/> @@ -18408,7 +18408,7 @@ network: add 'bootp' and 'tftp' config (Paolo Bonzini),<br/> OpenVZ Fix a restriction about domain names (Yuji NISHIDA),<br/> Make pki_check.sh into an installed & supported tool (Daniel P. Berrange),<br/> - ESX add support for vmxnet3 virtual device (Shahar Klein) + ESX add support for vmxnet3 virtual device (Shahar Klein)<br/> </li> <li>Cleanups:<br/> @@ -18496,7 +18496,7 @@ Move LXC driver into src/lxc/ (Daniel P. Berrange),<br/> Move xen driver code into src/xen/ directory (Daniel P. Berrange),<br/> Rename qemud/ directory to daemon/ (Daniel P. Berrange),<br/> - Refactor libvirt.spec to allow client-only builds (Daniel P. Berrange) + Refactor libvirt.spec to allow client-only builds (Daniel P. Berrange)<br/> </li> </ul> @@ -18509,9 +18509,8 @@ VBox add Storage Volume support (Pritesh Kothari),<br/> Support configuration of huge pages in guests (Daniel P. Berrange),<br/> Support new PolicyKit 1.0 API (Daniel P. Berrange),<br/> - Compressed save image format for Qemu (Chris Lalancette, Charles Duffy - and Jim Meyering),<br/> - QEmu add host PCI device hotplug support (Mark McLoughlin) + Compressed save image format for Qemu (Chris Lalancette, Charles Duffy and Jim Meyering),<br/> + QEmu add host PCI device hotplug support (Mark McLoughlin)<br/> </li> <li>Documentation:<br/> Minor comment changes (Laine Stump),<br/> @@ -18521,10 +18520,10 @@ Remove 'the-the' typo in docs (Daniel P. Berrange),<br/> Fix some URLs in virsh manpage (Mark McLoughlin),<br/> Add link to AbiCloud web management system (Daniel P. Berrange),<br/> - Update logging documentation (Amy Griffis) + Update logging documentation (Amy Griffis)<br/> </li> <li>Portability:<br/> - Fix win32 platform build (Daniel P. Berrange) + Fix win32 platform build (Daniel P. Berrange)<br/> </li> <li>Bug fixes:<br/> VBox bug when starting machine from old versions (Pritesh Kothari),<br/> @@ -18574,7 +18573,7 @@ Set perms on /var/lib/libvirt/boot to 0711 (Mark McLoughlin),<br/> chown kernel/initrd before spawning qemu (Mark McLoughlin),<br/> Several fixes to libvirtd's log setup (Amy Griffis),<br/> - Fix memleak if esxOpen fails (Matthias Bolte) + Fix memleak if esxOpen fails (Matthias Bolte)<br/> </li> <li>Improvement:<br/> support lzop save compression for qemu (Charles Duffy),<br/> @@ -18640,7 +18639,7 @@ Allow PM reset on multi-function PCI devices (Mark McLoughlin),<br/> Detect KVM's PCI device assignment support (Mark McLoughlin),<br/> Split virDomainMigrate into functions. (Chris Lalancette),<br/> - Consolidate code for parsing the logging env (Amy Griffis) + Consolidate code for parsing the logging env (Amy Griffis)<br/> </li> <li>Cleanups:<br/> Remove accidentally added UUID re-definition in storage schema (Daniel P. Berrange),<br/> @@ -18727,7 +18726,7 @@ Cleanup VIR_LOG_DEBUG parsing in eventtest (Amy Griffis),<br/> Tighten libvirt's parsing of logging env (Amy Griffis),<br/> Cleanup structure name naming (Matthias Bolte),<br/> - Add proper OOM reporting for esxDomainGetOSType (Matthias Bolte) + Add proper OOM reporting for esxDomainGetOSType (Matthias Bolte)<br/> </li> </ul> <h3>0.7.0: Aug 5 2009</h3> @@ -20425,7 +20424,7 @@ reference count bug when creating Xen domains (Daniel Berrange)<br/> </li> <li>Improvements:<br/> - more localizations, + more localizations,<br/> support graphic framebuffer for Xen paravirt (Daniel Berrange),<br/> VNC listen IP range support (Daniel Berrange),<br/> support for default Xen config files and inactive domains of 3.0.4 (Daniel Berrange)<br/> -- 2.4.3

On Wed, Oct 14, 2015 at 10:36:07AM +0200, Andrea Bolognani wrote:
Some <br/> tags were missing from the end of the corresponding line, some of there were in the middle of the line instead. --- docs/news.html.in | 199 +++++++++++++++++++++++++++--------------------------- 1 file changed, 99 insertions(+), 100 deletions(-)
This one got me thinking. Can't we get rid of all those line breaks and add them in the XSLT? That'd be great. Mainly those that are being fixed in the first hunk, I don't care either way about those in the second hunk (although they would follow the same rule anyways.
diff --git a/docs/news.html.in b/docs/news.html.in index c5b4458..4b8f80f 100644 --- a/docs/news.html.in +++ b/docs/news.html.in @@ -610,9 +610,9 @@ <h3>1.2.17: Jul 02 2015</h3> <ul> <li>Features:<br/> - numerous improvements and refactoring of the parallels driver (Maxim Nestratov) - hardening of vcpu code (Peter Krempa) - hardening of migration code (Jiri Denemark) + numerous improvements and refactoring of the parallels driver (Maxim Nestratov),<br/> + hardening of vcpu code (Peter Krempa),<br/> + hardening of migration code (Jiri Denemark)<br/> </li>
<li>Documentation:<br/> @@ -2808,7 +2808,7 @@ Internal driver refactoring (Daniel P. Berrange)<br/> </li>
- <li>Documentation + <li>Documentation:<br/> virsh: Adjust the text in man page regarding qemu-attach (John Ferlan),<br/> HACKING: Regenerate after recent change (Peter Krempa),<br/> fix an improper git browsable address (Chen Hanxiao),<br/>

On Wed, 2015-10-14 at 15:09 +0200, Martin Kletzander wrote:
On Wed, Oct 14, 2015 at 10:36:07AM +0200, Andrea Bolognani wrote:
Some <br/> tags were missing from the end of the corresponding line, some of there were in the middle of the line instead. --- docs/news.html.in | 199 +++++++++++++++++++++++++++---------------- ----------- 1 file changed, 99 insertions(+), 100 deletions(-)
This one got me thinking. Can't we get rid of all those line breaks and add them in the XSLT? That'd be great. Mainly those that are being fixed in the first hunk, I don't care either way about those in the second hunk (although they would follow the same rule anyways.
Not sure I'm following you... We can of course add newlines to the plain text NEWS file using the XSLT stylesheet, but we still need the <br/> tags for the newlines to appear in the HTML version... Cheers. -- Andrea Bolognani Software Engineer - Virtualization Team

On Wed, Oct 14, 2015 at 05:06:47PM +0200, Andrea Bolognani wrote:
On Wed, 2015-10-14 at 15:09 +0200, Martin Kletzander wrote:
On Wed, Oct 14, 2015 at 10:36:07AM +0200, Andrea Bolognani wrote:
Some <br/> tags were missing from the end of the corresponding line, some of there were in the middle of the line instead. --- docs/news.html.in | 199 +++++++++++++++++++++++++++---------------- ----------- 1 file changed, 99 insertions(+), 100 deletions(-)
This one got me thinking. Can't we get rid of all those line breaks and add them in the XSLT? That'd be great. Mainly those that are being fixed in the first hunk, I don't care either way about those in the second hunk (although they would follow the same rule anyways.
Not sure I'm following you... We can of course add newlines to the plain text NEWS file using the XSLT stylesheet, but we still need the <br/> tags for the newlines to appear in the HTML version...
Well, news.html.in is transformed into news.html by site.xsl (iirc), and I was wondering whether we can add <br/> for each one of these newlines. Maybe with different xsl file. But now I'm thinking what if we translate simple news file into news.html.in and that way we don't need to deal with any of these, even DV would have it easier when creating new release. Anyway, that's just a hint.
Cheers.
-- Andrea Bolognani Software Engineer - Virtualization Team

Some of the paragraphs were not properly indented: while this was not a problem in the HTML version, you could tell the difference in the plain text version. --- docs/news.html.in | 1916 ++++++++++++++++++++++++++--------------------------- 1 file changed, 958 insertions(+), 958 deletions(-) diff --git a/docs/news.html.in b/docs/news.html.in index 4b8f80f..88dcf9c 100644 --- a/docs/news.html.in +++ b/docs/news.html.in @@ -13,7 +13,7 @@ to gauge progress. </p> - <h3>v1.2.20: Oct 02 2015</h3> + <h3>v1.2.20: Oct 02 2015</h3> <ul> <li>Security:<br/> storage: Handle failure from refreshVol (John Ferlan),<br/> @@ -175,7 +175,7 @@ vmx: Some whitespace cleanup (Matthias Bolte)<br/> </li> </ul> - <h3>1.2.19: Sep 02 2015</h3> + <h3>1.2.19: Sep 02 2015</h3> <ul> <li>Features:<br/> Big improvements on ppc64 support (Andrea Bolognani),<br/> @@ -404,7 +404,7 @@ cpu: Remove ISA information from CPU map XML (Andrea Bolognani)<br/> </li> </ul> - <h3>v1.2.18: Aug 03 2015</h3> + <h3>v1.2.18: Aug 03 2015</h3> <ul> <li>Features:<br/> libxl: support dom0 (Jim Fehlig),<br/> @@ -607,7 +607,7 @@ cpu_map.xml: Sort features in x86 CPU models (Jiri Denemark)<br/> </li> </ul> - <h3>1.2.17: Jul 02 2015</h3> + <h3>1.2.17: Jul 02 2015</h3> <ul> <li>Features:<br/> numerous improvements and refactoring of the parallels driver (Maxim Nestratov),<br/> @@ -8075,352 +8075,352 @@ <h3>1.0.5: May 2 2013</h3> <ul> <li>Features:<br/> - Add NVRAM device (Li Zhang),<br/> - Add XML config for resource partitions (Daniel P. Berrange),<br/> - Add support for TPM (Stefan Berger),<br/> - NPIV storage migration support (Osier Yang)<br/> + Add NVRAM device (Li Zhang),<br/> + Add XML config for resource partitions (Daniel P. Berrange),<br/> + Add support for TPM (Stefan Berger),<br/> + NPIV storage migration support (Osier Yang)<br/> </li> <li>Documentation:<br/> - Fix closing tag in snapshot documentation (Christophe Fergeau),<br/> - Fix typo in augeas comment (Martin Kletzander),<br/> - Fix VIR_DOMAIN_EVENT_ID_PMSUSPEND capitalization in API doc (Christophe Fergeau),<br/> - Improve /domainsnapshot/disks/disk@snapshot doc (Christophe Fergeau),<br/> - fix memballoon examples (Ján Tomko),<br/> - Clarify usage of SELinux baselabel (Peter Krempa),<br/> - fix usage of 'onto' (Eric Blake),<br/> - Update HACKING (Osier Yang),<br/> - conf: fix comment about parsing graphics listen address (Ján Tomko),<br/> - lib: Fix docs about return value of virDomainGetVcpusFlags() (Peter Krempa),<br/> - virsh: Document that using incomplete XML files may have unexpected results (Peter Krempa),<br/> - fix typo when using Kerberos principals (Eric Blake),<br/> - use MiB/s instead of Mbps for migration speed (Ján Tomko),<br/> - Add the missed <pre> tag (Osier Yang),<br/> - virsh: Fix typo in docs (Peter Krempa),<br/> - manual: Fix copy-paste errors (Martin Kletzander),<br/> - manual: Add info about migrateuri in virsh manual (Martin Kletzander)<br/> + Fix closing tag in snapshot documentation (Christophe Fergeau),<br/> + Fix typo in augeas comment (Martin Kletzander),<br/> + Fix VIR_DOMAIN_EVENT_ID_PMSUSPEND capitalization in API doc (Christophe Fergeau),<br/> + Improve /domainsnapshot/disks/disk@snapshot doc (Christophe Fergeau),<br/> + fix memballoon examples (Ján Tomko),<br/> + Clarify usage of SELinux baselabel (Peter Krempa),<br/> + fix usage of 'onto' (Eric Blake),<br/> + Update HACKING (Osier Yang),<br/> + conf: fix comment about parsing graphics listen address (Ján Tomko),<br/> + lib: Fix docs about return value of virDomainGetVcpusFlags() (Peter Krempa),<br/> + virsh: Document that using incomplete XML files may have unexpected results (Peter Krempa),<br/> + fix typo when using Kerberos principals (Eric Blake),<br/> + use MiB/s instead of Mbps for migration speed (Ján Tomko),<br/> + Add the missed <pre> tag (Osier Yang),<br/> + virsh: Fix typo in docs (Peter Krempa),<br/> + manual: Fix copy-paste errors (Martin Kletzander),<br/> + manual: Add info about migrateuri in virsh manual (Martin Kletzander)<br/> </li> <li>Portability:<br/> - S390: Do not generate a default USB controller (Viktor Mihajlovski),<br/> - S390: Mention changed USB behavior (Viktor Mihajlovski),<br/> - build: fix cygwin build in virnetdev (Eric Blake),<br/> - portability: handle ifreq differences in virnetdev (Roman Bogorodskiy),<br/> - qemu: fix build error with older platforms (Eric Blake),<br/> - Fix compilation error in util/vircgroup.c (Stefan Berger),<br/> - Conditionally compile storagevolxml2argvtest (Daniel P. Berrange),<br/> - Fix signature of dummy virNetlinkCommand stub (Daniel P. Berrange),<br/> - Add empty stub for virThreadCancel on Win32 (Daniel P. Berrange),<br/> - Don't enable -fPIE on Win32 platforms (Daniel P. Berrange),<br/> - spec: Require pod2man when running autoreconf (Jiri Denemark),<br/> - Avoid cast alignment warnings in port allocator test (Daniel P. Berrange)<br/> + S390: Do not generate a default USB controller (Viktor Mihajlovski),<br/> + S390: Mention changed USB behavior (Viktor Mihajlovski),<br/> + build: fix cygwin build in virnetdev (Eric Blake),<br/> + portability: handle ifreq differences in virnetdev (Roman Bogorodskiy),<br/> + qemu: fix build error with older platforms (Eric Blake),<br/> + Fix compilation error in util/vircgroup.c (Stefan Berger),<br/> + Conditionally compile storagevolxml2argvtest (Daniel P. Berrange),<br/> + Fix signature of dummy virNetlinkCommand stub (Daniel P. Berrange),<br/> + Add empty stub for virThreadCancel on Win32 (Daniel P. Berrange),<br/> + Don't enable -fPIE on Win32 platforms (Daniel P. Berrange),<br/> + spec: Require pod2man when running autoreconf (Jiri Denemark),<br/> + Avoid cast alignment warnings in port allocator test (Daniel P. Berrange)<br/> </li> <li>Bug Fixes:<br/> - pci: autolearn name of stub driver, remove from arglist (Laine Stump),<br/> - ESX: Fix DISPATCH_FREE generation code to free all extended objects (Ata E Husain Bohra),<br/> - qemu: fix failure to start with spice graphics and no tls (Laine Stump),<br/> - Need to call virFreeError after virSaveLastError (John Ferlan),<br/> - libvirt-guests: status: return non-zero when stopped (Ján Tomko),<br/> - security driver: eliminate memory leaks in failure paths (Laine Stump),<br/> - libxl: Fix double-dispose of libxl domain config (Jim Fehlig),<br/> - virsh: fix incorrect argument errors for long options (Ján Tomko),<br/> - network: Don't remove transient network if creating of config file fails (Peter Krempa),<br/> - qemu: prevent invalid reads in qemuAssignDevicePCISlots (Ján Tomko),<br/> - qemu: don't assign a PCI address to 'none' USB controller (Ján Tomko),<br/> - fix segfault during virsh save in pv guest (Bamvor Jian Zhang),<br/> - conf: reject controllers with duplicate indexes (Ján Tomko),<br/> - fix typo introduced by 90430791 (Bamvor Jian Zhang),<br/> - Fix usb master startport parsing (Martin Kletzander),<br/> - qemu_conf: Don't discard strdup OOM error (Michal Privoznik),<br/> - util: Error out if the numa nodeset is out of range (Osier Yang),<br/> - selinux: Don't mask errors of virSecuritySELinuxGenNewContext (Peter Krempa),<br/> - qemu: Fix the wrong expression (Osier Yang),<br/> - audit: properly encode device path in cgroup audit (Eric Blake),<br/> - network: bridge_driver: don't lose transient networks on daemon restart (Peter Krempa),<br/> - qemu: fix default spice password setting (Ján Tomko),<br/> - Fix build breaker with ATTRIBUTE_NONNULL defs (John Ferlan),<br/> - Resolve valgrind error (John Ferlan),<br/> - Do more complete initialization of libgcrypt (Daniel P. Berrange),<br/> - qemu: Set correct migrate host in client_migrate_info (Michal Privoznik),<br/> - qemu: fix crash in qemuOpen (Ján Tomko),<br/> - conf: fix error for parallel port mismatch (Ján Tomko),<br/> - conf: fix a memory leak when parsing nat port XML nodes (Guannan Ren),<br/> - conf: Fix race between looking up a domain object and freeing it (Peter Krempa),<br/> - Fix crash in virNetDevGetVirtualFunctions (Laine Stump),<br/> - schemas: Move PortNumber and sourceinfoadapter to basictypes.rng (Han Cheng),<br/> - virsh: Unregister the connection close notifier upon termination (Viktor Mihajlovski),<br/> - libvirt: Increase connection reference count for callbacks (Viktor Mihajlovski),<br/> - storage: Fix volume cloning for logical volume. (Atsushi Kumagai),<br/> - security_manager: fix comparison (Guido Günther),<br/> - qemu: fix memory leak on -machine usage error (Eric Blake),<br/> - qemu-blockjob: Fix limit of bandwidth for block jobs to supported value (Peter Krempa),<br/> - sec_manager: Refuse to start domain with unsupported seclabel (Michal Privoznik),<br/> - qemu: Fix crash when updating media with shared device (Peter Krempa),<br/> - virsh: Call virDomainFree in cmdDomFSTrim (Michal Privoznik),<br/> - smartcard: spell ccid-card-emulated qemu property correctly (Eric Blake),<br/> - Resolve valgrind failure (John Ferlan)<br/> + pci: autolearn name of stub driver, remove from arglist (Laine Stump),<br/> + ESX: Fix DISPATCH_FREE generation code to free all extended objects (Ata E Husain Bohra),<br/> + qemu: fix failure to start with spice graphics and no tls (Laine Stump),<br/> + Need to call virFreeError after virSaveLastError (John Ferlan),<br/> + libvirt-guests: status: return non-zero when stopped (Ján Tomko),<br/> + security driver: eliminate memory leaks in failure paths (Laine Stump),<br/> + libxl: Fix double-dispose of libxl domain config (Jim Fehlig),<br/> + virsh: fix incorrect argument errors for long options (Ján Tomko),<br/> + network: Don't remove transient network if creating of config file fails (Peter Krempa),<br/> + qemu: prevent invalid reads in qemuAssignDevicePCISlots (Ján Tomko),<br/> + qemu: don't assign a PCI address to 'none' USB controller (Ján Tomko),<br/> + fix segfault during virsh save in pv guest (Bamvor Jian Zhang),<br/> + conf: reject controllers with duplicate indexes (Ján Tomko),<br/> + fix typo introduced by 90430791 (Bamvor Jian Zhang),<br/> + Fix usb master startport parsing (Martin Kletzander),<br/> + qemu_conf: Don't discard strdup OOM error (Michal Privoznik),<br/> + util: Error out if the numa nodeset is out of range (Osier Yang),<br/> + selinux: Don't mask errors of virSecuritySELinuxGenNewContext (Peter Krempa),<br/> + qemu: Fix the wrong expression (Osier Yang),<br/> + audit: properly encode device path in cgroup audit (Eric Blake),<br/> + network: bridge_driver: don't lose transient networks on daemon restart (Peter Krempa),<br/> + qemu: fix default spice password setting (Ján Tomko),<br/> + Fix build breaker with ATTRIBUTE_NONNULL defs (John Ferlan),<br/> + Resolve valgrind error (John Ferlan),<br/> + Do more complete initialization of libgcrypt (Daniel P. Berrange),<br/> + qemu: Set correct migrate host in client_migrate_info (Michal Privoznik),<br/> + qemu: fix crash in qemuOpen (Ján Tomko),<br/> + conf: fix error for parallel port mismatch (Ján Tomko),<br/> + conf: fix a memory leak when parsing nat port XML nodes (Guannan Ren),<br/> + conf: Fix race between looking up a domain object and freeing it (Peter Krempa),<br/> + Fix crash in virNetDevGetVirtualFunctions (Laine Stump),<br/> + schemas: Move PortNumber and sourceinfoadapter to basictypes.rng (Han Cheng),<br/> + virsh: Unregister the connection close notifier upon termination (Viktor Mihajlovski),<br/> + libvirt: Increase connection reference count for callbacks (Viktor Mihajlovski),<br/> + storage: Fix volume cloning for logical volume. (Atsushi Kumagai),<br/> + security_manager: fix comparison (Guido Günther),<br/> + qemu: fix memory leak on -machine usage error (Eric Blake),<br/> + qemu-blockjob: Fix limit of bandwidth for block jobs to supported value (Peter Krempa),<br/> + sec_manager: Refuse to start domain with unsupported seclabel (Michal Privoznik),<br/> + qemu: Fix crash when updating media with shared device (Peter Krempa),<br/> + virsh: Call virDomainFree in cmdDomFSTrim (Michal Privoznik),<br/> + smartcard: spell ccid-card-emulated qemu property correctly (Eric Blake),<br/> + Resolve valgrind failure (John Ferlan)<br/> </li> <li>Improvements:<br/> - spec: collect all BuildRequires into one area (Eric Blake),<br/> - Resolve valgrind error (John Ferlan),<br/> - esx: Support virtualHW version 9 (Martin Kletzander),<br/> - build: mark conditionally unused variables (Eric Blake),<br/> - virsh: clarify vol-{down,up}load description (Ján Tomko),<br/> - qemu: report an error if memballoon has wrong address type (Ján Tomko),<br/> - qemu: assign addresses when converting xml to native (Ján Tomko),<br/> - qemu: Error out if spice port autoallocation is requested, but disabled (Peter Krempa),<br/> - qemu: put usb cgroup setup in common function (Laine Stump),<br/> - qemu: add vfio devices to cgroup ACL when appropriate (Laine Stump),<br/> - qemu: honor allowDiskFormatProbing when parsing command line (Ján Tomko),<br/> - conf: add missing error on OOM (Ján Tomko),<br/> - qemu: don't always reserve PCI addresses for implicit controllers (Ján Tomko),<br/> - conf: remove extraneous _TYPE from driver backend enums (Laine Stump),<br/> - network: support <driver name='vfio'/> in network definitions (Laine Stump),<br/> - qemu: launch bridge helper from libvirtd (Paolo Bonzini),<br/> - virnetdevtap: add virNetDevTapGetName (Paolo Bonzini),<br/> - qemu: set qemu process' RLIMIT_MEMLOCK when VFIO is used (Laine Stump),<br/> - qemu: use new virCommandSetMax(Processes|Files) (Laine Stump),<br/> - util: new virCommandSetMax(MemLock|Processes|Files) (Laine Stump),<br/> - Do proper escaping of cgroup resource partitions (Daniel P. Berrange),<br/> - Ensure all cgroup partitions have a suffix of ".partition" (Daniel P. Berrange),<br/> - Change VM cgroup suffix from '{lxc,qemu}.libvirt' to 'libvirt-{lxc,qemu}' (Daniel P. Berrange),<br/> - test: Add JSON test for query-tpm-types (Stefan Berger),<br/> - virsh: suppress aliases in group help (Eric Blake),<br/> - security: update hostdev labelling functions for VFIO (Laine Stump),<br/> - util: new function virPCIDeviceGetVFIOGroupDev (Laine Stump),<br/> - virsh: use new virNodeDeviceDetachFlags (Laine Stump),<br/> - xen: implement virNodeDeviceDetachFlags backend (Laine Stump),<br/> - qemu: implement virNodeDeviceDetachFlags backend (Laine Stump),<br/> - hypervisor api: implement RPC calls for virNodeDeviceDetachFlags (Laine Stump),<br/> - hypervisor api: new virNodeDeviceDetachFlags (Laine Stump),<br/> - qemu: bind/unbind stub driver according to config <driver name='x'/> (Laine Stump),<br/> - pci: keep a stubDriver in each virPCIDevice (Laine Stump),<br/> - qemu: use vfio-pci on commandline when appropriate (Laine Stump),<br/> - conf: formatter/parser/RNG/docs for hostdev <driver name='kvm|vfio'/> (Laine Stump),<br/> - conf: put hostdev pci address in a struct (Laine Stump),<br/> - qemu: detect vfio-pci device and its bootindex parameter (Laine Stump),<br/> - build: avoid unsafe functions in libgen.h (Eric Blake),<br/> - qemu: auto-add pci-root to 'pc-i440*' machines too (Ján Tomko),<br/> - qemu: auto-add bridges and allow using them (Ján Tomko),<br/> - qemu: auto-add pci-root controller for pc machine types (Ján Tomko),<br/> - qemu: build command line for pci-bridge device (liguang),<br/> - conf: add PCI controllers (Ján Tomko),<br/> - qemu: call post-parse callbacks when parsing command line too (Ján Tomko),<br/> - qemu: Add command line builder and parser for NVRAM. (Li Zhang),<br/> - qemuBuildCommandLine: Don't overwrite errors with NWFilter's one (Michal Privoznik),<br/> - Introduce a sub-element <driver> for controller (Osier Yang),<br/> - qemu: Don't require a block or file when looking for an alias (Wido den Hollander),<br/> - Change the tag name "num_queues" into "queues" (Osier Yang),<br/> - qemu: Improve handling of channels when generating SPICE command line (Peter Krempa),<br/> - qemu: Do sensible auto allocation of SPICE port numbers (Peter Krempa),<br/> - Make driver method names consistent with public APIs (Daniel P. Berrange),<br/> - Dedicated name for sub-driver open/close methods (Daniel P. Berrange),<br/> - Rename 'DeviceMonitor' to 'NodeDeviceDriver' (Daniel P. Berrange),<br/> - Extend previous check to validate driver struct field names (Daniel P. Berrange),<br/> - Ensure driver method names match public API names (Daniel P. Berrange),<br/> - Make naming of remote procedures match API names exactly (Daniel P. Berrange),<br/> - Cleanup command line options in gendispatch.pl (Daniel P. Berrange),<br/> - qemu: Split out SPICE port allocation into a separate function (Peter Krempa),<br/> - qemu: Use switch instead of ifs in qemuBuildGraphicsCommandLine (Peter Krempa),<br/> - qemu: Split out code to generate VNC command line (Peter Krempa),<br/> - qemu: Split out code to generate SPICE command line (Peter Krempa),<br/> - qemu: Use -machine accel=tcg|kvm when available (Jiri Denemark),<br/> - qemu: Move -enable-kvm and friends earlier in the command line (Jiri Denemark),<br/> - Switch to a more extensible annotation system for RPC protocols (Daniel P. Berrange),<br/> - qemu: Fix setting of memory tunables (Peter Krempa),<br/> - logging: Make log regexp more compact (and readable) (Jiri Denemark),<br/> - qemu: Ignore libvirt logs when reading QEMU error output (Jiri Denemark),<br/> - qemu: Move QEMU log reading into a separate function (Jiri Denemark),<br/> - update input ip processing (Gene Czarcinski),<br/> - create virSocketAddrGetIpPrefix utility function (Gene Czarcinski),<br/> - Replace more cases of /system with /machine (Daniel P. Berrange),<br/> - Change default resource partition to /machine (Daniel P. Berrange),<br/> - qemu: rename CheckSlot to SlotInUse (Ján Tomko),<br/> - qemu: switch PCI address set from hash table to an array (Ján Tomko),<br/> - conf: add model attribute to virDomainDefMaybeAddController (Ján Tomko),<br/> - qemu: move PCI address check out of qemuPCIAddressAsString (Ján Tomko),<br/> - qemu: QEMU_PCI constant consistency (Ján Tomko),<br/> - qemu: print PCI address hexadecimally in errors (Ján Tomko),<br/> - qemu: make qemuComparePCIDevice aware of multiple buses (Ján Tomko),<br/> - conf: Reword error message to be more universal (Peter Krempa),<br/> - cpu: Rename PowerPCUpdate and PowerPCDataFree functions (Jiri Denemark),<br/> - cpu: Remove hardcoded list of PowerPC models (Jiri Denemark),<br/> - cpu: Reimplement PowerPCDecode (Jiri Denemark),<br/> - cpu: Reimplement PowerPCBaseline (Jiri Denemark),<br/> - cpu: Fix loading PowerPC vendor from cpu_map.xml (Jiri Denemark),<br/> - cpu: Fix PowerPCNodeData (Jiri Denemark),<br/> - cpu: Make comparing PowerPC CPUs easier to read (Jiri Denemark),<br/> - cpu: Introduce cpuModelIsAllowed internal API (Jiri Denemark),<br/> - virsh-domain: Refactor cmdVcpucount and fix output on inactive domains (Peter Krempa),<br/> - Set legacy USB option with default for ppc64. (Li Zhang),<br/> - qemu_conf: add new configuration key bridge_helper (Paolo Bonzini),<br/> - util: allow using virCommandAllowCap with setuid helpers (Paolo Bonzini),<br/> - util: simplify virSetUIDGIDWithCaps (Paolo Bonzini),<br/> - virsh-domain: Report errors on invalid --holdtime value for cmdSendKey (Peter Krempa),<br/> - virsh-domain: Clean up cmdSendKey (Peter Krempa),<br/> - qemu: simplify use of virArchFromHost (Tal Kain),<br/> - rng: tighten up domain <controller> schema (Laine Stump),<br/> - network: remove autostart flag from network when undefining it (Peter Krempa),<br/> - syntax-check: Only allows to include public headers in external tools (Osier Yang),<br/> - syntax-check: Don't include public headers in internal source (Osier Yang),<br/> - syntax-check: Don't include duplicate header (Osier Yang),<br/> - qemu: Allow the disk wwn to have "0x" prefix (Osier Yang),<br/> - cleanup: Don't include libvirt/virterror.h (Osier Yang),<br/> - cleanup: Don't include libvirt/libvirt.h (Osier Yang),<br/> - cleanup: Remove the duplicate header (Osier Yang),<br/> - cleanup: Only include testutils.h once (Osier Yang),<br/> - Check for unsupported QMP command (Stefan Berger),<br/> - qemu_agent: Add support for appending arrays to commands (Peter Krempa),<br/> - Add support for perf_event and net_cls cgroup controllers (Daniel P. Berrange),<br/> - Replace LXC cgroup mount code with call to virCgroupIsolateMount (Daniel P. Berrange),<br/> - Add an API for re-mounting cgroups, to isolate the process location (Daniel P. Berrange),<br/> - Track symlinks for co-mounted cgroup controllers (Daniel P. Berrange),<br/> - Remove non-functional code for setting up non-root cgroups (Daniel P. Berrange),<br/> - Change default cgroup layout for QEMU/LXC and honour XML config (Daniel P. Berrange),<br/> - Add a new virCgroupNewPartition for setting up resource partitions (Daniel P. Berrange),<br/> - Cleanup if creating cgroup directories fails (Daniel P. Berrange),<br/> - Add misc extra debugging into cgroups code (Daniel P. Berrange),<br/> - Refactor cgroups internal data structures (Daniel P. Berrange),<br/> - Add a test suite for cgroups functionality (Daniel P. Berrange),<br/> - Rename virCgroupForXXX to virCgroupNewXXX (Daniel P. Berrange),<br/> - Pull definition of structs out of vircgroup.c to vircgrouppriv.h (Daniel P. Berrange),<br/> - Store a virCgroupPtr instance in virLXCDomainObjPrivatePtr (Daniel P. Berrange),<br/> - Store a virCgroupPtr instance in qemuDomainObjPrivatePtr (Daniel P. Berrange),<br/> - Add missing param to virCgroupForDriver stub (Daniel P. Berrange),<br/> - Introduce a virFileDeleteTree method (Daniel P. Berrange),<br/> - Conditionalize use of symlink() function in test suite (Daniel P. Berrange),<br/> - maint: update to latest gnulib (Eric Blake),<br/> - Use unsigned int instead of unsigned (Osier Yang),<br/> - qemu: Report also domain name in error message when domain object wasn't found (Peter Krempa),<br/> - qemu: Refactor lookup of domain object (Peter Krempa),<br/> - cleanup: Change datatype of net->stp to boolean (Osier Yang),<br/> - cleanup: Change datatype of usbdev->allow to boolean (Osier Yang),<br/> - cleanup: Change datatype of graphic's members to boolean (Osier Yang),<br/> - cleanup: Change datatype of accel's members to boolean (Osier Yang),<br/> - Add test case for TPM passthrough (Stefan Berger),<br/> - TPM support for QEMU command line (Stefan Berger),<br/> - QEMU Cgroup support for TPM passthrough (Stefan Berger),<br/> - Audit the starting of a guest using TPM passthrough (Stefan Berger),<br/> - Add SELinux and DAC labeling support for TPM passthrough (Stefan Berger),<br/> - Convert QMP strings into QEMU capability bits (Stefan Berger),<br/> - Parse TPM passthrough XML in the domain XML (Stefan Berger),<br/> - Helper functions for host TPM support (Stefan Berger),<br/> - Add documentation and schema for TPM passthrough (Stefan Berger),<br/> - Add function to find a needle in a string array (Stefan Berger),<br/> - Add QMP probing for TPM (Stefan Berger),<br/> - conf: Allow for non-contiguous device boot orders (Peter Krempa),<br/> - Tweak EOF handling of streams (Daniel P. Berrange),<br/> - Add USB option capability (Li Zhang),<br/> - Add error handling to optional arguments in cmdCPUStats (John Ferlan),<br/> - qemu: Do not report unsafe migration for local files (Jiri Denemark),<br/> - qemu: Try to use QMP for send-key if supported (Peter Krempa),<br/> - virsh: Update list of shutdown/reboot modes (Michal Privoznik),<br/> - cleanup: Change datatype of secret->private to boolean (Osier Yang),<br/> - cleanup: Change datatype of secret->ephemeral to boolean (Osier Yang),<br/> - cleanup: Change datatype of fs->readonly to boolean (Osier Yang),<br/> - cleanup: Change datatype of disk->readonly to boolean (Osier Yang),<br/> - cleanup: Change datatype of disk->transient to boolean (Osier Yang),<br/> - cleanup: Change datatype of disk->shared to boolean (Osier Yang),<br/> - cleanup: Change datatype of auth->expires to boolean (Osier Yang),<br/> - cleanup: Change datatype of hostdev->missing to boolean (Osier Yang),<br/> - Cleanup: Change datatype of origstate's members to boolean (Osier Yang),<br/> - Cleanup: Change datatype of hostdev->managed to boolean (Osier Yang),<br/> - conf: Change help function (Han Cheng),<br/> - qemu: Remove now obsolete assignment of default network card model for s390 hosts (Peter Krempa),<br/> - qemu: Clean up network device CLI generator (Peter Krempa),<br/> - qemu: Use correct default model on s390 (Viktor Mihajlovski),<br/> - sanlock: add missing test command in virt-sanlock-cleanup.in (Alex Jia),<br/> - Generate RFC4122 compliant UUIDs (Milos Vyletel),<br/> - Unmount existing filesystems under user specified mounts in LXC (Daniel P. Berrange),<br/> - Move lxcContainerUnmountSubtree further up in file (Daniel P. Berrange),<br/> - Implement support for <hostdev caps=net> (Bogdan Purcareata),<br/> - Update structure & XML definitions to support <hostdev caps=net> (Bogdan Purcareata),<br/> - Rename virCgroupMounted to virCgroupHasController & make it more robust (Daniel P. Berrange),<br/> - qemu: Allow volume type disk for device 'lun' (Osier Yang),<br/> - qemu: Support sgio setting for volume type disk (Osier Yang),<br/> - qemu: Support shareable volume type disk (Osier Yang),<br/> - qemu: Translate the pool disk source earlier (Osier Yang),<br/> - Support seclabels for volume type disk (Osier Yang),<br/> - Support startupPolicy for 'volume' disk (Osier Yang),<br/> - qemu: Translate the pool disk source when building drive string (Osier Yang),<br/> - Introduce new XMLs to specify disk source using libvirt storage (Osier Yang),<br/> - conf: New helper virDomainDiskSourceDefFormat to format the disk source (Osier Yang),<br/> - storage: Guess the parent if it's not specified for vHBA (Osier Yang),<br/> - storage: Add startPool and stopPool for scsi backend (Osier Yang),<br/> - util: Add helper to get the scsi host name by iterating over sysfs (Osier Yang),<br/> - phyp: Prohibit fc_host adapter for phyp driver (Osier Yang),<br/> - storage: Move virStorageBackendSCSIGetHostNumber into iscsi backend (Osier Yang),<br/> - storage: Make the adapter name be consistent with node device driver (Osier Yang),<br/> - New XML attributes for storage pool source adapter (Osier Yang),<br/> - Disable cast-align warnings in various places (Daniel P. Berrange),<br/> - Copy struct inotify_event entries to avoid alignment problems (Daniel P. Berrange),<br/> - Use VIR_ALLOC_VAR instead of VIR_ALLOC_N for creating virObject (Daniel P. Berrange),<br/> - Avoid casts between unsigned char * and struct nlmsghdr (Daniel P. Berrange),<br/> - Rewrite keycode map to avoid a struct (Daniel P. Berrange),<br/> - Add a test suite for keycode mapping functions (Daniel P. Berrange),<br/> - qemu: Error out if the bitmap for pinning is all clear (Osier Yang),<br/> - util: Add a helper to check if all bits of a bitmap are clear (Osier Yang),<br/> - qemu: Support multiple queue virtio-scsi (Osier Yang),<br/> - build: check correct protocol.o file (Eric Blake),<br/> - build: use proper pod for nested bulleted VIRSH_DEBUG list (Eric Blake),<br/> - qemu: Remove maximum cpu limit when setting processor count using the API (Peter Krempa),<br/> - Don't create dirs in cgroup controllers we don't want to use (Daniel P. Berrange),<br/> - Rename virCgroupGetAppRoot to virCgroupForSelf (Daniel P. Berrange),<br/> - Ensure LD_PRELOAD exists before running test case (Daniel P. Berrange),<br/> - Refactor RNG schema for resource tuning (Daniel P. Berrange),<br/> - rpc: Fix connection close callback race condition and memory corruption/crash (Peter Krempa),<br/> - virsh: Register and unregister the close callback also in cmdConnect (Peter Krempa),<br/> - virsh: Move cmdConnect from virsh-host.c to virsh.c (Peter Krempa),<br/> - virCaps: get rid of defaultConsoleTargetType callback (Peter Krempa),<br/> - virCaps: get rid of macPrefix field (Peter Krempa),<br/> - virCaps: get rid of hasWideScsiBus (Peter Krempa),<br/> - virCaps: get rid of defaultDiskDriverType (Peter Krempa),<br/> - virCaps: get rid of emulatorRequired (Peter Krempa),<br/> - virCaps: get rid of defaultDiskDriverName (Peter Krempa),<br/> - virCaps: get rid of "defaultInitPath" value in the virCaps struct (Peter Krempa),<br/> - qemu: Record the default NIC model in the domain XML (Peter Krempa),<br/> - conf callback: Rearrange function parameters (Peter Krempa),<br/> - conf: Add post XML parse callbacks and prepare for cleaning of virCaps (Peter Krempa),<br/> - maint: Rename xmlconf to xmlopt and virDomainXMLConfig to virDomainXMLOption (Peter Krempa),<br/> - Create fake NUMA info if libnuma isn't available (Daniel P. Berrange),<br/> - Cope with missing /sys/devices/system/cpu/cpu0/topology files (Daniel P. Berrange),<br/> - Add armv6l architecture to list of valid arches (Daniel P. Berrange),<br/> - Implement minimal sysinfo for ARM platforms (Daniel P. Berrange),<br/> - Disable of unused sysinfotest functions (Daniel P. Berrange),<br/> - Wire up sysinfo for LXC driver (Daniel P. Berrange),<br/> - Add support for SD cards in nodedev driver (Daniel P. Berrange),<br/> - Auto-add a root <filesystem> element to LXC containers on startup (Daniel P. Berrange),<br/> - Remove support for old kernels lacking private devpts (Daniel P. Berrange),<br/> - Enable full RELRO mode (Daniel P. Berrange),<br/> - Build all binaries with PIE (Daniel P. Berrange),<br/> - rng: Add definition for network disk source (Osier Yang),<br/> - Disable static libraries by default (Daniel P. Berrange),<br/> - Allow multiple parameters for schedinfo (Martin Kletzander),<br/> - virsh-domain: Add --live, --config, --current logic to cmdDetachDisk (Peter Krempa),<br/> - virsh-domain: Add --live, --config, --current logic to cmdDetachDevice (Peter Krempa),<br/> - virsh-domain: Add --live, --config, --current logic to cmdDetachInterface (Peter Krempa),<br/> - virsh: Fix semantics of --config for "update-device" command (Peter Krempa),<br/> - virsh-domain: Fix declarations of flag variables in cmdChangeMedia (Peter Krempa),<br/> - virsh-domain: Simplify usage of --current, --live and --config flags (Peter Krempa),<br/> - virsh-domain-monitor: Refactor cmdDomIfGetLink (Peter Krempa),<br/> - Use virMacAddrFormat instead of manual mac address formatting (Peter Krempa),<br/> - util: Change virMacAddrFormat to lowercase hex characters (Peter Krempa),<br/> - Optimize machine option to set more options with it (Li Zhang),<br/> - conf: Enforce ranges on cputune variables (Peter Krempa),<br/> - test: Return Libvirt logo as domain screenshot (Michal Privoznik),<br/> - qemu: Allow migration over IPv6 (Ján Tomko),<br/> - virsh: Add a helper to parse cpulist (Osier Yang)<br/> + spec: collect all BuildRequires into one area (Eric Blake),<br/> + Resolve valgrind error (John Ferlan),<br/> + esx: Support virtualHW version 9 (Martin Kletzander),<br/> + build: mark conditionally unused variables (Eric Blake),<br/> + virsh: clarify vol-{down,up}load description (Ján Tomko),<br/> + qemu: report an error if memballoon has wrong address type (Ján Tomko),<br/> + qemu: assign addresses when converting xml to native (Ján Tomko),<br/> + qemu: Error out if spice port autoallocation is requested, but disabled (Peter Krempa),<br/> + qemu: put usb cgroup setup in common function (Laine Stump),<br/> + qemu: add vfio devices to cgroup ACL when appropriate (Laine Stump),<br/> + qemu: honor allowDiskFormatProbing when parsing command line (Ján Tomko),<br/> + conf: add missing error on OOM (Ján Tomko),<br/> + qemu: don't always reserve PCI addresses for implicit controllers (Ján Tomko),<br/> + conf: remove extraneous _TYPE from driver backend enums (Laine Stump),<br/> + network: support <driver name='vfio'/> in network definitions (Laine Stump),<br/> + qemu: launch bridge helper from libvirtd (Paolo Bonzini),<br/> + virnetdevtap: add virNetDevTapGetName (Paolo Bonzini),<br/> + qemu: set qemu process' RLIMIT_MEMLOCK when VFIO is used (Laine Stump),<br/> + qemu: use new virCommandSetMax(Processes|Files) (Laine Stump),<br/> + util: new virCommandSetMax(MemLock|Processes|Files) (Laine Stump),<br/> + Do proper escaping of cgroup resource partitions (Daniel P. Berrange),<br/> + Ensure all cgroup partitions have a suffix of ".partition" (Daniel P. Berrange),<br/> + Change VM cgroup suffix from '{lxc,qemu}.libvirt' to 'libvirt-{lxc,qemu}' (Daniel P. Berrange),<br/> + test: Add JSON test for query-tpm-types (Stefan Berger),<br/> + virsh: suppress aliases in group help (Eric Blake),<br/> + security: update hostdev labelling functions for VFIO (Laine Stump),<br/> + util: new function virPCIDeviceGetVFIOGroupDev (Laine Stump),<br/> + virsh: use new virNodeDeviceDetachFlags (Laine Stump),<br/> + xen: implement virNodeDeviceDetachFlags backend (Laine Stump),<br/> + qemu: implement virNodeDeviceDetachFlags backend (Laine Stump),<br/> + hypervisor api: implement RPC calls for virNodeDeviceDetachFlags (Laine Stump),<br/> + hypervisor api: new virNodeDeviceDetachFlags (Laine Stump),<br/> + qemu: bind/unbind stub driver according to config <driver name='x'/> (Laine Stump),<br/> + pci: keep a stubDriver in each virPCIDevice (Laine Stump),<br/> + qemu: use vfio-pci on commandline when appropriate (Laine Stump),<br/> + conf: formatter/parser/RNG/docs for hostdev <driver name='kvm|vfio'/> (Laine Stump),<br/> + conf: put hostdev pci address in a struct (Laine Stump),<br/> + qemu: detect vfio-pci device and its bootindex parameter (Laine Stump),<br/> + build: avoid unsafe functions in libgen.h (Eric Blake),<br/> + qemu: auto-add pci-root to 'pc-i440*' machines too (Ján Tomko),<br/> + qemu: auto-add bridges and allow using them (Ján Tomko),<br/> + qemu: auto-add pci-root controller for pc machine types (Ján Tomko),<br/> + qemu: build command line for pci-bridge device (liguang),<br/> + conf: add PCI controllers (Ján Tomko),<br/> + qemu: call post-parse callbacks when parsing command line too (Ján Tomko),<br/> + qemu: Add command line builder and parser for NVRAM. (Li Zhang),<br/> + qemuBuildCommandLine: Don't overwrite errors with NWFilter's one (Michal Privoznik),<br/> + Introduce a sub-element <driver> for controller (Osier Yang),<br/> + qemu: Don't require a block or file when looking for an alias (Wido den Hollander),<br/> + Change the tag name "num_queues" into "queues" (Osier Yang),<br/> + qemu: Improve handling of channels when generating SPICE command line (Peter Krempa),<br/> + qemu: Do sensible auto allocation of SPICE port numbers (Peter Krempa),<br/> + Make driver method names consistent with public APIs (Daniel P. Berrange),<br/> + Dedicated name for sub-driver open/close methods (Daniel P. Berrange),<br/> + Rename 'DeviceMonitor' to 'NodeDeviceDriver' (Daniel P. Berrange),<br/> + Extend previous check to validate driver struct field names (Daniel P. Berrange),<br/> + Ensure driver method names match public API names (Daniel P. Berrange),<br/> + Make naming of remote procedures match API names exactly (Daniel P. Berrange),<br/> + Cleanup command line options in gendispatch.pl (Daniel P. Berrange),<br/> + qemu: Split out SPICE port allocation into a separate function (Peter Krempa),<br/> + qemu: Use switch instead of ifs in qemuBuildGraphicsCommandLine (Peter Krempa),<br/> + qemu: Split out code to generate VNC command line (Peter Krempa),<br/> + qemu: Split out code to generate SPICE command line (Peter Krempa),<br/> + qemu: Use -machine accel=tcg|kvm when available (Jiri Denemark),<br/> + qemu: Move -enable-kvm and friends earlier in the command line (Jiri Denemark),<br/> + Switch to a more extensible annotation system for RPC protocols (Daniel P. Berrange),<br/> + qemu: Fix setting of memory tunables (Peter Krempa),<br/> + logging: Make log regexp more compact (and readable) (Jiri Denemark),<br/> + qemu: Ignore libvirt logs when reading QEMU error output (Jiri Denemark),<br/> + qemu: Move QEMU log reading into a separate function (Jiri Denemark),<br/> + update input ip processing (Gene Czarcinski),<br/> + create virSocketAddrGetIpPrefix utility function (Gene Czarcinski),<br/> + Replace more cases of /system with /machine (Daniel P. Berrange),<br/> + Change default resource partition to /machine (Daniel P. Berrange),<br/> + qemu: rename CheckSlot to SlotInUse (Ján Tomko),<br/> + qemu: switch PCI address set from hash table to an array (Ján Tomko),<br/> + conf: add model attribute to virDomainDefMaybeAddController (Ján Tomko),<br/> + qemu: move PCI address check out of qemuPCIAddressAsString (Ján Tomko),<br/> + qemu: QEMU_PCI constant consistency (Ján Tomko),<br/> + qemu: print PCI address hexadecimally in errors (Ján Tomko),<br/> + qemu: make qemuComparePCIDevice aware of multiple buses (Ján Tomko),<br/> + conf: Reword error message to be more universal (Peter Krempa),<br/> + cpu: Rename PowerPCUpdate and PowerPCDataFree functions (Jiri Denemark),<br/> + cpu: Remove hardcoded list of PowerPC models (Jiri Denemark),<br/> + cpu: Reimplement PowerPCDecode (Jiri Denemark),<br/> + cpu: Reimplement PowerPCBaseline (Jiri Denemark),<br/> + cpu: Fix loading PowerPC vendor from cpu_map.xml (Jiri Denemark),<br/> + cpu: Fix PowerPCNodeData (Jiri Denemark),<br/> + cpu: Make comparing PowerPC CPUs easier to read (Jiri Denemark),<br/> + cpu: Introduce cpuModelIsAllowed internal API (Jiri Denemark),<br/> + virsh-domain: Refactor cmdVcpucount and fix output on inactive domains (Peter Krempa),<br/> + Set legacy USB option with default for ppc64. (Li Zhang),<br/> + qemu_conf: add new configuration key bridge_helper (Paolo Bonzini),<br/> + util: allow using virCommandAllowCap with setuid helpers (Paolo Bonzini),<br/> + util: simplify virSetUIDGIDWithCaps (Paolo Bonzini),<br/> + virsh-domain: Report errors on invalid --holdtime value for cmdSendKey (Peter Krempa),<br/> + virsh-domain: Clean up cmdSendKey (Peter Krempa),<br/> + qemu: simplify use of virArchFromHost (Tal Kain),<br/> + rng: tighten up domain <controller> schema (Laine Stump),<br/> + network: remove autostart flag from network when undefining it (Peter Krempa),<br/> + syntax-check: Only allows to include public headers in external tools (Osier Yang),<br/> + syntax-check: Don't include public headers in internal source (Osier Yang),<br/> + syntax-check: Don't include duplicate header (Osier Yang),<br/> + qemu: Allow the disk wwn to have "0x" prefix (Osier Yang),<br/> + cleanup: Don't include libvirt/virterror.h (Osier Yang),<br/> + cleanup: Don't include libvirt/libvirt.h (Osier Yang),<br/> + cleanup: Remove the duplicate header (Osier Yang),<br/> + cleanup: Only include testutils.h once (Osier Yang),<br/> + Check for unsupported QMP command (Stefan Berger),<br/> + qemu_agent: Add support for appending arrays to commands (Peter Krempa),<br/> + Add support for perf_event and net_cls cgroup controllers (Daniel P. Berrange),<br/> + Replace LXC cgroup mount code with call to virCgroupIsolateMount (Daniel P. Berrange),<br/> + Add an API for re-mounting cgroups, to isolate the process location (Daniel P. Berrange),<br/> + Track symlinks for co-mounted cgroup controllers (Daniel P. Berrange),<br/> + Remove non-functional code for setting up non-root cgroups (Daniel P. Berrange),<br/> + Change default cgroup layout for QEMU/LXC and honour XML config (Daniel P. Berrange),<br/> + Add a new virCgroupNewPartition for setting up resource partitions (Daniel P. Berrange),<br/> + Cleanup if creating cgroup directories fails (Daniel P. Berrange),<br/> + Add misc extra debugging into cgroups code (Daniel P. Berrange),<br/> + Refactor cgroups internal data structures (Daniel P. Berrange),<br/> + Add a test suite for cgroups functionality (Daniel P. Berrange),<br/> + Rename virCgroupForXXX to virCgroupNewXXX (Daniel P. Berrange),<br/> + Pull definition of structs out of vircgroup.c to vircgrouppriv.h (Daniel P. Berrange),<br/> + Store a virCgroupPtr instance in virLXCDomainObjPrivatePtr (Daniel P. Berrange),<br/> + Store a virCgroupPtr instance in qemuDomainObjPrivatePtr (Daniel P. Berrange),<br/> + Add missing param to virCgroupForDriver stub (Daniel P. Berrange),<br/> + Introduce a virFileDeleteTree method (Daniel P. Berrange),<br/> + Conditionalize use of symlink() function in test suite (Daniel P. Berrange),<br/> + maint: update to latest gnulib (Eric Blake),<br/> + Use unsigned int instead of unsigned (Osier Yang),<br/> + qemu: Report also domain name in error message when domain object wasn't found (Peter Krempa),<br/> + qemu: Refactor lookup of domain object (Peter Krempa),<br/> + cleanup: Change datatype of net->stp to boolean (Osier Yang),<br/> + cleanup: Change datatype of usbdev->allow to boolean (Osier Yang),<br/> + cleanup: Change datatype of graphic's members to boolean (Osier Yang),<br/> + cleanup: Change datatype of accel's members to boolean (Osier Yang),<br/> + Add test case for TPM passthrough (Stefan Berger),<br/> + TPM support for QEMU command line (Stefan Berger),<br/> + QEMU Cgroup support for TPM passthrough (Stefan Berger),<br/> + Audit the starting of a guest using TPM passthrough (Stefan Berger),<br/> + Add SELinux and DAC labeling support for TPM passthrough (Stefan Berger),<br/> + Convert QMP strings into QEMU capability bits (Stefan Berger),<br/> + Parse TPM passthrough XML in the domain XML (Stefan Berger),<br/> + Helper functions for host TPM support (Stefan Berger),<br/> + Add documentation and schema for TPM passthrough (Stefan Berger),<br/> + Add function to find a needle in a string array (Stefan Berger),<br/> + Add QMP probing for TPM (Stefan Berger),<br/> + conf: Allow for non-contiguous device boot orders (Peter Krempa),<br/> + Tweak EOF handling of streams (Daniel P. Berrange),<br/> + Add USB option capability (Li Zhang),<br/> + Add error handling to optional arguments in cmdCPUStats (John Ferlan),<br/> + qemu: Do not report unsafe migration for local files (Jiri Denemark),<br/> + qemu: Try to use QMP for send-key if supported (Peter Krempa),<br/> + virsh: Update list of shutdown/reboot modes (Michal Privoznik),<br/> + cleanup: Change datatype of secret->private to boolean (Osier Yang),<br/> + cleanup: Change datatype of secret->ephemeral to boolean (Osier Yang),<br/> + cleanup: Change datatype of fs->readonly to boolean (Osier Yang),<br/> + cleanup: Change datatype of disk->readonly to boolean (Osier Yang),<br/> + cleanup: Change datatype of disk->transient to boolean (Osier Yang),<br/> + cleanup: Change datatype of disk->shared to boolean (Osier Yang),<br/> + cleanup: Change datatype of auth->expires to boolean (Osier Yang),<br/> + cleanup: Change datatype of hostdev->missing to boolean (Osier Yang),<br/> + Cleanup: Change datatype of origstate's members to boolean (Osier Yang),<br/> + Cleanup: Change datatype of hostdev->managed to boolean (Osier Yang),<br/> + conf: Change help function (Han Cheng),<br/> + qemu: Remove now obsolete assignment of default network card model for s390 hosts (Peter Krempa),<br/> + qemu: Clean up network device CLI generator (Peter Krempa),<br/> + qemu: Use correct default model on s390 (Viktor Mihajlovski),<br/> + sanlock: add missing test command in virt-sanlock-cleanup.in (Alex Jia),<br/> + Generate RFC4122 compliant UUIDs (Milos Vyletel),<br/> + Unmount existing filesystems under user specified mounts in LXC (Daniel P. Berrange),<br/> + Move lxcContainerUnmountSubtree further up in file (Daniel P. Berrange),<br/> + Implement support for <hostdev caps=net> (Bogdan Purcareata),<br/> + Update structure & XML definitions to support <hostdev caps=net> (Bogdan Purcareata),<br/> + Rename virCgroupMounted to virCgroupHasController & make it more robust (Daniel P. Berrange),<br/> + qemu: Allow volume type disk for device 'lun' (Osier Yang),<br/> + qemu: Support sgio setting for volume type disk (Osier Yang),<br/> + qemu: Support shareable volume type disk (Osier Yang),<br/> + qemu: Translate the pool disk source earlier (Osier Yang),<br/> + Support seclabels for volume type disk (Osier Yang),<br/> + Support startupPolicy for 'volume' disk (Osier Yang),<br/> + qemu: Translate the pool disk source when building drive string (Osier Yang),<br/> + Introduce new XMLs to specify disk source using libvirt storage (Osier Yang),<br/> + conf: New helper virDomainDiskSourceDefFormat to format the disk source (Osier Yang),<br/> + storage: Guess the parent if it's not specified for vHBA (Osier Yang),<br/> + storage: Add startPool and stopPool for scsi backend (Osier Yang),<br/> + util: Add helper to get the scsi host name by iterating over sysfs (Osier Yang),<br/> + phyp: Prohibit fc_host adapter for phyp driver (Osier Yang),<br/> + storage: Move virStorageBackendSCSIGetHostNumber into iscsi backend (Osier Yang),<br/> + storage: Make the adapter name be consistent with node device driver (Osier Yang),<br/> + New XML attributes for storage pool source adapter (Osier Yang),<br/> + Disable cast-align warnings in various places (Daniel P. Berrange),<br/> + Copy struct inotify_event entries to avoid alignment problems (Daniel P. Berrange),<br/> + Use VIR_ALLOC_VAR instead of VIR_ALLOC_N for creating virObject (Daniel P. Berrange),<br/> + Avoid casts between unsigned char * and struct nlmsghdr (Daniel P. Berrange),<br/> + Rewrite keycode map to avoid a struct (Daniel P. Berrange),<br/> + Add a test suite for keycode mapping functions (Daniel P. Berrange),<br/> + qemu: Error out if the bitmap for pinning is all clear (Osier Yang),<br/> + util: Add a helper to check if all bits of a bitmap are clear (Osier Yang),<br/> + qemu: Support multiple queue virtio-scsi (Osier Yang),<br/> + build: check correct protocol.o file (Eric Blake),<br/> + build: use proper pod for nested bulleted VIRSH_DEBUG list (Eric Blake),<br/> + qemu: Remove maximum cpu limit when setting processor count using the API (Peter Krempa),<br/> + Don't create dirs in cgroup controllers we don't want to use (Daniel P. Berrange),<br/> + Rename virCgroupGetAppRoot to virCgroupForSelf (Daniel P. Berrange),<br/> + Ensure LD_PRELOAD exists before running test case (Daniel P. Berrange),<br/> + Refactor RNG schema for resource tuning (Daniel P. Berrange),<br/> + rpc: Fix connection close callback race condition and memory corruption/crash (Peter Krempa),<br/> + virsh: Register and unregister the close callback also in cmdConnect (Peter Krempa),<br/> + virsh: Move cmdConnect from virsh-host.c to virsh.c (Peter Krempa),<br/> + virCaps: get rid of defaultConsoleTargetType callback (Peter Krempa),<br/> + virCaps: get rid of macPrefix field (Peter Krempa),<br/> + virCaps: get rid of hasWideScsiBus (Peter Krempa),<br/> + virCaps: get rid of defaultDiskDriverType (Peter Krempa),<br/> + virCaps: get rid of emulatorRequired (Peter Krempa),<br/> + virCaps: get rid of defaultDiskDriverName (Peter Krempa),<br/> + virCaps: get rid of "defaultInitPath" value in the virCaps struct (Peter Krempa),<br/> + qemu: Record the default NIC model in the domain XML (Peter Krempa),<br/> + conf callback: Rearrange function parameters (Peter Krempa),<br/> + conf: Add post XML parse callbacks and prepare for cleaning of virCaps (Peter Krempa),<br/> + maint: Rename xmlconf to xmlopt and virDomainXMLConfig to virDomainXMLOption (Peter Krempa),<br/> + Create fake NUMA info if libnuma isn't available (Daniel P. Berrange),<br/> + Cope with missing /sys/devices/system/cpu/cpu0/topology files (Daniel P. Berrange),<br/> + Add armv6l architecture to list of valid arches (Daniel P. Berrange),<br/> + Implement minimal sysinfo for ARM platforms (Daniel P. Berrange),<br/> + Disable of unused sysinfotest functions (Daniel P. Berrange),<br/> + Wire up sysinfo for LXC driver (Daniel P. Berrange),<br/> + Add support for SD cards in nodedev driver (Daniel P. Berrange),<br/> + Auto-add a root <filesystem> element to LXC containers on startup (Daniel P. Berrange),<br/> + Remove support for old kernels lacking private devpts (Daniel P. Berrange),<br/> + Enable full RELRO mode (Daniel P. Berrange),<br/> + Build all binaries with PIE (Daniel P. Berrange),<br/> + rng: Add definition for network disk source (Osier Yang),<br/> + Disable static libraries by default (Daniel P. Berrange),<br/> + Allow multiple parameters for schedinfo (Martin Kletzander),<br/> + virsh-domain: Add --live, --config, --current logic to cmdDetachDisk (Peter Krempa),<br/> + virsh-domain: Add --live, --config, --current logic to cmdDetachDevice (Peter Krempa),<br/> + virsh-domain: Add --live, --config, --current logic to cmdDetachInterface (Peter Krempa),<br/> + virsh: Fix semantics of --config for "update-device" command (Peter Krempa),<br/> + virsh-domain: Fix declarations of flag variables in cmdChangeMedia (Peter Krempa),<br/> + virsh-domain: Simplify usage of --current, --live and --config flags (Peter Krempa),<br/> + virsh-domain-monitor: Refactor cmdDomIfGetLink (Peter Krempa),<br/> + Use virMacAddrFormat instead of manual mac address formatting (Peter Krempa),<br/> + util: Change virMacAddrFormat to lowercase hex characters (Peter Krempa),<br/> + Optimize machine option to set more options with it (Li Zhang),<br/> + conf: Enforce ranges on cputune variables (Peter Krempa),<br/> + test: Return Libvirt logo as domain screenshot (Michal Privoznik),<br/> + qemu: Allow migration over IPv6 (Ján Tomko),<br/> + virsh: Add a helper to parse cpulist (Osier Yang)<br/> </li> <li>Cleanups:<br/> - qemu_command.c: Fix whitespacing within for() (Michal Privoznik),<br/> - qemu: Fix the indention (Osier Yang),<br/> - Sanitize whitespace in driver.h (Daniel P. Berrange),<br/> - sheepdog: Omit braces with a single-line body (Harry Wei),<br/> - storage: Fix the indention (Osier Yang),<br/> - Remove extraneous comma in info_cpu_stats and opts_cpu_stats (John Ferlan)<br/> + qemu_command.c: Fix whitespacing within for() (Michal Privoznik),<br/> + qemu: Fix the indention (Osier Yang),<br/> + Sanitize whitespace in driver.h (Daniel P. Berrange),<br/> + sheepdog: Omit braces with a single-line body (Harry Wei),<br/> + storage: Fix the indention (Osier Yang),<br/> + Remove extraneous comma in info_cpu_stats and opts_cpu_stats (John Ferlan)<br/> </li> </ul> <h3>1.0.4: Apr 1 2013</h3> @@ -14653,229 +14653,229 @@ <h3>0.9.1: May 5 2011</h3> <ul> <li>Features:<br/> - support various persistent domain updates (KAMEZAWA Hiroyuki),<br/> - improvements on memory APIs (Taku Izumi),<br/> - Add virDomainEventRebootNew (Matthias Bolte),<br/> - various improvements to libxl driver (Markus Groß),<br/> - Spice: support audio, images and stream compression (Michal Privoznik)<br/> + support various persistent domain updates (KAMEZAWA Hiroyuki),<br/> + improvements on memory APIs (Taku Izumi),<br/> + Add virDomainEventRebootNew (Matthias Bolte),<br/> + various improvements to libxl driver (Markus Groß),<br/> + Spice: support audio, images and stream compression (Michal Privoznik)<br/> </li> <li>Documentation:<br/> - fix missing VLAN id for Qbg example (Gerhard Stenzel),<br/> - docs: Document filesystem tag device (Cole Robinson),<br/> - maint: fix comment typos (Eric Blake),<br/> - Fix two out-of-date comments in LVM backend (Richard Laager),<br/> - docs: Serial and parallel device target ports actually start from 0 (Matthias Bolte),<br/> - maint: fix grammar errors (Eric Blake),<br/> - docs: document freecell --all (Eric Blake),<br/> - docs: remove "returns" word from beginning of lines (Jean-Baptiste Rouault),<br/> - docs: add an IPv6 address to network XML examples (Laine Stump)<br/> + fix missing VLAN id for Qbg example (Gerhard Stenzel),<br/> + docs: Document filesystem tag device (Cole Robinson),<br/> + maint: fix comment typos (Eric Blake),<br/> + Fix two out-of-date comments in LVM backend (Richard Laager),<br/> + docs: Serial and parallel device target ports actually start from 0 (Matthias Bolte),<br/> + maint: fix grammar errors (Eric Blake),<br/> + docs: document freecell --all (Eric Blake),<br/> + docs: remove "returns" word from beginning of lines (Jean-Baptiste Rouault),<br/> + docs: add an IPv6 address to network XML examples (Laine Stump)<br/> </li> <li>Portability:<br/> - build: fix getcwd portability problems (Eric Blake),<br/> - build: avoid test warnings on mingw (Eric Blake),<br/> - virsh: avoid compiler warning on mingw (Eric Blake),<br/> - build: Use pkg-config for libssh2 check (Jiri Denemark),<br/> - build: Ignore old audit library (Jiri Denemark),<br/> - build: fix 32-bit test failure (Eric Blake),<br/> - build: Fix problem of building Python bindings (Osier Yang),<br/> - build: fix 32-bit test failure (Eric Blake),<br/> - ppc: Enable starting of Qemu VMs on ppc host (Stefan Berger),<br/> - Migrate VMs between different-endianess hosts (Stefan Berger),<br/> - build: really fix mingw startup (Eric Blake),<br/> - build: fix mingw build (Eric Blake),<br/> - do not build libvirt_iohelper when building without libvirtd (Wen Congyang),<br/> - virsh: fix mingw startup (Eric Blake),<br/> - build: avoid compiler warning on cygwin (Eric Blake),<br/> - Fix build for older gcc (Jim Fehlig),<br/> - Don't try to enable stack protector on Win32 (Daniel P. Berrange)<br/> + build: fix getcwd portability problems (Eric Blake),<br/> + build: avoid test warnings on mingw (Eric Blake),<br/> + virsh: avoid compiler warning on mingw (Eric Blake),<br/> + build: Use pkg-config for libssh2 check (Jiri Denemark),<br/> + build: Ignore old audit library (Jiri Denemark),<br/> + build: fix 32-bit test failure (Eric Blake),<br/> + build: Fix problem of building Python bindings (Osier Yang),<br/> + build: fix 32-bit test failure (Eric Blake),<br/> + ppc: Enable starting of Qemu VMs on ppc host (Stefan Berger),<br/> + Migrate VMs between different-endianess hosts (Stefan Berger),<br/> + build: really fix mingw startup (Eric Blake),<br/> + build: fix mingw build (Eric Blake),<br/> + do not build libvirt_iohelper when building without libvirtd (Wen Congyang),<br/> + virsh: fix mingw startup (Eric Blake),<br/> + build: avoid compiler warning on cygwin (Eric Blake),<br/> + Fix build for older gcc (Jim Fehlig),<br/> + Don't try to enable stack protector on Win32 (Daniel P. Berrange)<br/> </li> <li>Bug Fixes:<br/> - storage: avoid null deref and leak on failure (Eric Blake),<br/> - esx: Avoid null dereference on error in esxDomainGetInfo (Matthias Bolte),<br/> - remote: avoid null dereference on error (Eric Blake),<br/> - cgroup: avoid leaking a file (Eric Blake),<br/> - virsh: avoid null pointer dereference (Eric Blake),<br/> - pci: fix null pointer dereference (Eric Blake),<br/> - qemu: avoid null pointer dereference (Eric Blake),<br/> - tests: avoid null pointer dereference (Eric Blake),<br/> - Fix disability to run on systems with no PCI bus (Michal Privoznik),<br/> - virsh: fix regression in log to file (Supriya Kannery),<br/> - nwfilter: Fix memory leak in the ebtables subdriver (Matthias Bolte),<br/> - qemu: Fix qemuDomainModifyDeviceFlags leaking the caps bitmap (Matthias Bolte),<br/> - Fix memory leak in __virExec (Matthias Bolte),<br/> - hash: fix memory leak regression (Eric Blake),<br/> - Xen: Do not generate net ifname if domain is inactive (Jim Fehlig),<br/> - xen: check if device is assigned to guest before reattaching (Yufang Zhang),<br/> - util: Initialize hooks at daemon shutdown if no hooks defined (Osier Yang),<br/> - fix virsh's regression (Wen Congyang),<br/> - release PCI address only when we have ensured it successfully (Wen Congyang),<br/> - free memory properly in cleanup patch (Hu Tao),<br/> - free buf content when vsnprintf() failed (Wen Congyang),<br/> - esx: Fix dynamic dispatch for CastFromAnyType functions (Matthias Bolte),<br/> - Make crash and live flags mutually exclusive in virDomainCoreDump (Mark Wu),<br/> - Fix small memory leaks in config parsing related functions (Matthias Bolte),<br/> - daemon: Don't try to free an unsigned int in error paths (Matthias Bolte),<br/> - Fix QEMU tunnelled migration FD handling (Daniel P. Berrange),<br/> - Remove artificial minimum limit for guest memory (Jiri Denemark),<br/> - fix tunnelled migration's regression (Wen Congyang),<br/> - qemu: fix the check of virDomainObjUnref()'s return value (Wen Congyang),<br/> - Fix checking of return codes in dispatcher (Daniel P. Berrange),<br/> - qemu: avoid qemu_driver being unlocked twice when virThreadPoolNew() failed (Wen Congyang),<br/> - virsh: fix regression in parsing optional integer (Eric Blake),<br/> - phyp: avoid memory leaks in command values (Eric Blake),<br/> - phyp: avoid memory leak on failure (Eric Blake),<br/> - phyp: avoid a logic bug (Eric Blake),<br/> - free cpumask of vcpupinDef (Hu Tao),<br/> - network: Fix NULL dereference during error recovery (Michal Privoznik),<br/> - Add missing checks for QEMU domain state in tunables APIs (Daniel P. Berrange),<br/> - phyp: Fix too small buffer allocation in phypAttachDevice (Matthias Bolte),<br/> - phyp: Don't overwrite error from virDomainDeviceDefParse by OOM error (Matthias Bolte),<br/> - phyp: Don't try to use a string from a failed virAsprintf (Matthias Bolte),<br/> - phyp: Remove stack allocating a 4kb volume key and fix related memory leaks (Matthias Bolte),<br/> - qemu: fix a dead-lock problem (Hu Tao),<br/> - util: Fix crash when removing entries during hash iteration (Jiri Denemark),<br/> - Fix possible infinite loop in remote driver (Michal Privoznik),<br/> - qemu: Remove the managed state file only if restoring succeeded (Osier Yang),<br/> - reattach pci devices when qemuPrepareHostdevPCIDevices() failed (Wen Congyang),<br/> - reattach pci device when pciBindDeviceToStub() failed (Wen Congyang),<br/> - remove devices from driver activePciHostdevs when qemuPrepareHostdevPCIDevices() failed (Wen Congyang),<br/> - pci: avoid invalid free, init path to NULL (Wen Congyang),<br/> - qemu: Support for overriding NPROC limit (Jiri Denemark),<br/> - qemu: Always reserves slot 0x02 for primary VGA. (Osier Yang),<br/> - Fix typo in systemtap tapset directory name (Daniel P. Berrange),<br/> - qemu: Ignore unusable binaries (Jiri Denemark)<br/> + storage: avoid null deref and leak on failure (Eric Blake),<br/> + esx: Avoid null dereference on error in esxDomainGetInfo (Matthias Bolte),<br/> + remote: avoid null dereference on error (Eric Blake),<br/> + cgroup: avoid leaking a file (Eric Blake),<br/> + virsh: avoid null pointer dereference (Eric Blake),<br/> + pci: fix null pointer dereference (Eric Blake),<br/> + qemu: avoid null pointer dereference (Eric Blake),<br/> + tests: avoid null pointer dereference (Eric Blake),<br/> + Fix disability to run on systems with no PCI bus (Michal Privoznik),<br/> + virsh: fix regression in log to file (Supriya Kannery),<br/> + nwfilter: Fix memory leak in the ebtables subdriver (Matthias Bolte),<br/> + qemu: Fix qemuDomainModifyDeviceFlags leaking the caps bitmap (Matthias Bolte),<br/> + Fix memory leak in __virExec (Matthias Bolte),<br/> + hash: fix memory leak regression (Eric Blake),<br/> + Xen: Do not generate net ifname if domain is inactive (Jim Fehlig),<br/> + xen: check if device is assigned to guest before reattaching (Yufang Zhang),<br/> + util: Initialize hooks at daemon shutdown if no hooks defined (Osier Yang),<br/> + fix virsh's regression (Wen Congyang),<br/> + release PCI address only when we have ensured it successfully (Wen Congyang),<br/> + free memory properly in cleanup patch (Hu Tao),<br/> + free buf content when vsnprintf() failed (Wen Congyang),<br/> + esx: Fix dynamic dispatch for CastFromAnyType functions (Matthias Bolte),<br/> + Make crash and live flags mutually exclusive in virDomainCoreDump (Mark Wu),<br/> + Fix small memory leaks in config parsing related functions (Matthias Bolte),<br/> + daemon: Don't try to free an unsigned int in error paths (Matthias Bolte),<br/> + Fix QEMU tunnelled migration FD handling (Daniel P. Berrange),<br/> + Remove artificial minimum limit for guest memory (Jiri Denemark),<br/> + fix tunnelled migration's regression (Wen Congyang),<br/> + qemu: fix the check of virDomainObjUnref()'s return value (Wen Congyang),<br/> + Fix checking of return codes in dispatcher (Daniel P. Berrange),<br/> + qemu: avoid qemu_driver being unlocked twice when virThreadPoolNew() failed (Wen Congyang),<br/> + virsh: fix regression in parsing optional integer (Eric Blake),<br/> + phyp: avoid memory leaks in command values (Eric Blake),<br/> + phyp: avoid memory leak on failure (Eric Blake),<br/> + phyp: avoid a logic bug (Eric Blake),<br/> + free cpumask of vcpupinDef (Hu Tao),<br/> + network: Fix NULL dereference during error recovery (Michal Privoznik),<br/> + Add missing checks for QEMU domain state in tunables APIs (Daniel P. Berrange),<br/> + phyp: Fix too small buffer allocation in phypAttachDevice (Matthias Bolte),<br/> + phyp: Don't overwrite error from virDomainDeviceDefParse by OOM error (Matthias Bolte),<br/> + phyp: Don't try to use a string from a failed virAsprintf (Matthias Bolte),<br/> + phyp: Remove stack allocating a 4kb volume key and fix related memory leaks (Matthias Bolte),<br/> + qemu: fix a dead-lock problem (Hu Tao),<br/> + util: Fix crash when removing entries during hash iteration (Jiri Denemark),<br/> + Fix possible infinite loop in remote driver (Michal Privoznik),<br/> + qemu: Remove the managed state file only if restoring succeeded (Osier Yang),<br/> + reattach pci devices when qemuPrepareHostdevPCIDevices() failed (Wen Congyang),<br/> + reattach pci device when pciBindDeviceToStub() failed (Wen Congyang),<br/> + remove devices from driver activePciHostdevs when qemuPrepareHostdevPCIDevices() failed (Wen Congyang),<br/> + pci: avoid invalid free, init path to NULL (Wen Congyang),<br/> + qemu: Support for overriding NPROC limit (Jiri Denemark),<br/> + qemu: Always reserves slot 0x02 for primary VGA. (Osier Yang),<br/> + Fix typo in systemtap tapset directory name (Daniel P. Berrange),<br/> + qemu: Ignore unusable binaries (Jiri Denemark)<br/> </li> <li>Improvements:<br/> - maint: detect clang 2.9 (Eric Blake),<br/> - qemu: update qemuCgroupControllerActive signature (Eric Blake),<br/> - lxc: report correct error (Eric Blake),<br/> - libxl: avoid compiler warning (Eric Blake),<br/> - storage: use virCommand to avoid compiler warning (Eric Blake),<br/> - tests: Lower stack usage below 4096 bytes (Matthias Bolte),<br/> - tests: Update valgrind suppressions file (Matthias Bolte),<br/> - tests: simplify common setup (Eric Blake),<br/> - network: fix return value of hostsFileWrite (Laine Stump),<br/> - libvirt/qemu - support persistent attach/detach disks (KAMEZAWA Hiroyuki),<br/> - libvirt/qemu - support persistent modification of devices (KAMEZAWA Hiroyuki),<br/> - util: Simplify hash implementation (Jiri Denemark),<br/> - tests: More unit tests for internal hash APIs (Jiri Denemark),<br/> - Move call to virReportOOMError into virFileBuildPath (Matthias Bolte),<br/> - build: use gnulib passfd for simpler SCM_RIGHTS code (Eric Blake),<br/> - qemu: Add flags checking in DomainCoreDump (Jiri Denemark),<br/> - Make sure DNSMASQ_STATE_DIR exists (Guido Günther),<br/> - build: make VIR_FREE do some type checking (Eric Blake),<br/> - threads: add one-time initialization support (Eric Blake),<br/> - esx: Add a wrapper for shared CURL handles (Matthias Bolte),<br/> - esx: Move CURL handling code to it's own type (Matthias Bolte),<br/> - daemon: Honor error variable name change in the generator (Matthias Bolte),<br/> - libvirt/qemu - clean up UpdateDevice for consolidation. (KAMEZAWA Hiroyuki),<br/> - libvirt/qemu - clean up At(De)tachDeviceFlags() for consolidation. (KAMEZAWA Hiroyuki),<br/> - libvirt/qemu - Centralize device modification in the more flexible APIs (KAMEZAWA Hiroyuki),<br/> - Add support for s390(x) cpu options parsing (Michal Privoznik),<br/> - PHYP: Adding reboot domain function (Eduardo Otubo),<br/> - nwfilter: no support for direct type of interface (Stefan Berger),<br/> - Add cputune support to libxl driver (Markus Groß),<br/> - Update and sort msg_gen_function list and mark unmarked messages (Matthias Bolte),<br/> - Write error check conditionals in more compact form for dispatcher (Daniel P. Berrange),<br/> - Merge all returns paths from dispatcher into single path (Daniel P. Berrange),<br/> - Experimental libvirtd upstart job (Alan Pevec),<br/> - enhance processWatchdogEvent() (Wen Congyang),<br/> - xen: Replace statsErrorFunc with a macro (Matthias Bolte),<br/> - tests: Unit tests for internal hash APIs (Jiri Denemark),<br/> - build: include esx_vi.generated.* into dist file (Wen Congyang),<br/> - tests: test recent virsh option parsing changes (Eric Blake),<br/> - virsh: list required options first (Eric Blake),<br/> - phyp: use consistent return string handling (Eric Blake),<br/> - maint: use lighter-weight function for straight appends (Eric Blake),<br/> - libvirt-guests: implement START_DELAY (Alexander Todorov),<br/> - network: truncate bridges' dummy tap device names to IFNAMSIZ (15) chars (Laine Stump),<br/> - Introduce virDomainChrDefNew() (Michal Novotny),<br/> - esx: Make the parsed URI part of the private connection data (Matthias Bolte),<br/> - esx: Mark error message in macros for translation (Matthias Bolte),<br/> - esx: Extend VI generator to cover managed object types (Matthias Bolte),<br/> - esx: Cleanup and refactor CastFromAnyType macros (Matthias Bolte),<br/> - esx: Cleanup VI generator code (Matthias Bolte),<br/> - phyp: Reduce code duplication in error and success paths (Matthias Bolte),<br/> - Replace REMOTE_DEBUG with VIR_DEBUG in daemon dispatcher (Daniel P. Berrange),<br/> - Add missing checks for whether the connection is open in dispatcher (Daniel P. Berrange),<br/> - PHYP: Adding network interface (Eduardo Otubo),<br/> - xen: Remove PATH_MAX sized stack allocation from block stats code (Matthias Bolte),<br/> - setmaxmem: add the new options to "virsh setmaxmem" command (Taku Izumi),<br/> - maxmem: implement virDomainSetMaxMemory API of the qemu driver (Taku Izumi),<br/> - maxmem: introduces VIR_DOMAIN_MEM_MAXIMUM flag (Taku Izumi),<br/> - nwfilters: support for TCP flags evaluation (Stefan Berger),<br/> - setmem: add --current option to virsh setmem command (Taku Izumi),<br/> - setmem: add VIR_DOMAIN_MEM_CURRENT support to qemu (Taku Izumi),<br/> - setmem: introduce VIR_DOMAIN_MEM_CURRENT flag (Taku Izumi),<br/> - build: Install libxenlight log dir (Jim Fehlig),<br/> - Add domainSet/GetSchedulerParameters to libxl driver (Markus Groß),<br/> - rename pciUnBindDeviceFromStub() to pciUnbindDeviceFromStub() and float it up (Wen Congyang),<br/> - Add domainIsUpdated to libxl driver (Markus Groß),<br/> - Change locking for udev monitor and callbacks (Serge Hallyn),<br/> - Improve SCSI volume key generation (Daniel P. Berrange),<br/> - qemu: Rewrite LOOKUP_PTYS macro into a function (Jiri Denemark),<br/> - Enable use of -Wold-style-definition compiler flag (Daniel P. Berrange),<br/> - Enable use of -Wmissing-noreturn (Daniel P. Berrange),<br/> - Enable -Wmissing-format-attribute warning (Daniel P. Berrange),<br/> - Use gnulib's manywarnings and warnings modules (Daniel P. Berrange),<br/> - Use virBufferPtr for sexpr2string instead of manual buffer handling (Matthias Bolte),<br/> - xend: Remove 4kb stack allocation (Matthias Bolte),<br/> - uml: Remove PATH_MAX sized stack allocation from /proc parsing code (Matthias Bolte),<br/> - storage: Remove PATH_MAX sized stack allocation from iSCSI backend (Matthias Bolte),<br/> - qemu: Remove PATH_MAX sized stack allocation used in commandline building (Matthias Bolte),<br/> - Remove PATH_MAX sized stack allocation from virFileOpenTtyAt (Matthias Bolte),<br/> - openvz: Remove several larger stack allocations (Matthias Bolte),<br/> - daemon: Remove 4kb stack allocation of security label (Matthias Bolte),<br/> - virsh: Remove two 4kb stack allocations (Matthias Bolte),<br/> - Use virFileAbsPath instead of manually creating the absolute path (Matthias Bolte),<br/> - xenxs: Remove PATH_MAX sized stack allocation in XM script parsing (Matthias Bolte),<br/> - sasl: Remove stack allocated 8kb temporary buffers (Matthias Bolte),<br/> - qemu: Use heap allocated memory to read the monitor greeting (Matthias Bolte),<br/> - phyp: Remove 16kb stack allocation (Matthias Bolte),<br/> - virt-aa-helper: Remove PATH_MAX sized stack allocations (Matthias Bolte),<br/> - ebtables: Remove PATH_MAX sized stack allocation (Matthias Bolte),<br/> - pci: Remove PATH_MAX sized stack allocations (Matthias Bolte),<br/> - Remove PATH_MAX sized stack allocations related to virFileBuildPath (Matthias Bolte),<br/> - vmx: Use case-insensitive compare functions for all content (Matthias Bolte),<br/> - vmx: Support persistent CPU shares (Matthias Bolte),<br/> - Add autostart support to libxl driver (Markus Groß),<br/> - Allow relative path for qemu backing file (Jesse Cook),<br/> - build: detect potentential uninitialized variables (Eric Blake)<br/> + maint: detect clang 2.9 (Eric Blake),<br/> + qemu: update qemuCgroupControllerActive signature (Eric Blake),<br/> + lxc: report correct error (Eric Blake),<br/> + libxl: avoid compiler warning (Eric Blake),<br/> + storage: use virCommand to avoid compiler warning (Eric Blake),<br/> + tests: Lower stack usage below 4096 bytes (Matthias Bolte),<br/> + tests: Update valgrind suppressions file (Matthias Bolte),<br/> + tests: simplify common setup (Eric Blake),<br/> + network: fix return value of hostsFileWrite (Laine Stump),<br/> + libvirt/qemu - support persistent attach/detach disks (KAMEZAWA Hiroyuki),<br/> + libvirt/qemu - support persistent modification of devices (KAMEZAWA Hiroyuki),<br/> + util: Simplify hash implementation (Jiri Denemark),<br/> + tests: More unit tests for internal hash APIs (Jiri Denemark),<br/> + Move call to virReportOOMError into virFileBuildPath (Matthias Bolte),<br/> + build: use gnulib passfd for simpler SCM_RIGHTS code (Eric Blake),<br/> + qemu: Add flags checking in DomainCoreDump (Jiri Denemark),<br/> + Make sure DNSMASQ_STATE_DIR exists (Guido Günther),<br/> + build: make VIR_FREE do some type checking (Eric Blake),<br/> + threads: add one-time initialization support (Eric Blake),<br/> + esx: Add a wrapper for shared CURL handles (Matthias Bolte),<br/> + esx: Move CURL handling code to it's own type (Matthias Bolte),<br/> + daemon: Honor error variable name change in the generator (Matthias Bolte),<br/> + libvirt/qemu - clean up UpdateDevice for consolidation. (KAMEZAWA Hiroyuki),<br/> + libvirt/qemu - clean up At(De)tachDeviceFlags() for consolidation. (KAMEZAWA Hiroyuki),<br/> + libvirt/qemu - Centralize device modification in the more flexible APIs (KAMEZAWA Hiroyuki),<br/> + Add support for s390(x) cpu options parsing (Michal Privoznik),<br/> + PHYP: Adding reboot domain function (Eduardo Otubo),<br/> + nwfilter: no support for direct type of interface (Stefan Berger),<br/> + Add cputune support to libxl driver (Markus Groß),<br/> + Update and sort msg_gen_function list and mark unmarked messages (Matthias Bolte),<br/> + Write error check conditionals in more compact form for dispatcher (Daniel P. Berrange),<br/> + Merge all returns paths from dispatcher into single path (Daniel P. Berrange),<br/> + Experimental libvirtd upstart job (Alan Pevec),<br/> + enhance processWatchdogEvent() (Wen Congyang),<br/> + xen: Replace statsErrorFunc with a macro (Matthias Bolte),<br/> + tests: Unit tests for internal hash APIs (Jiri Denemark),<br/> + build: include esx_vi.generated.* into dist file (Wen Congyang),<br/> + tests: test recent virsh option parsing changes (Eric Blake),<br/> + virsh: list required options first (Eric Blake),<br/> + phyp: use consistent return string handling (Eric Blake),<br/> + maint: use lighter-weight function for straight appends (Eric Blake),<br/> + libvirt-guests: implement START_DELAY (Alexander Todorov),<br/> + network: truncate bridges' dummy tap device names to IFNAMSIZ (15) chars (Laine Stump),<br/> + Introduce virDomainChrDefNew() (Michal Novotny),<br/> + esx: Make the parsed URI part of the private connection data (Matthias Bolte),<br/> + esx: Mark error message in macros for translation (Matthias Bolte),<br/> + esx: Extend VI generator to cover managed object types (Matthias Bolte),<br/> + esx: Cleanup and refactor CastFromAnyType macros (Matthias Bolte),<br/> + esx: Cleanup VI generator code (Matthias Bolte),<br/> + phyp: Reduce code duplication in error and success paths (Matthias Bolte),<br/> + Replace REMOTE_DEBUG with VIR_DEBUG in daemon dispatcher (Daniel P. Berrange),<br/> + Add missing checks for whether the connection is open in dispatcher (Daniel P. Berrange),<br/> + PHYP: Adding network interface (Eduardo Otubo),<br/> + xen: Remove PATH_MAX sized stack allocation from block stats code (Matthias Bolte),<br/> + setmaxmem: add the new options to "virsh setmaxmem" command (Taku Izumi),<br/> + maxmem: implement virDomainSetMaxMemory API of the qemu driver (Taku Izumi),<br/> + maxmem: introduces VIR_DOMAIN_MEM_MAXIMUM flag (Taku Izumi),<br/> + nwfilters: support for TCP flags evaluation (Stefan Berger),<br/> + setmem: add --current option to virsh setmem command (Taku Izumi),<br/> + setmem: add VIR_DOMAIN_MEM_CURRENT support to qemu (Taku Izumi),<br/> + setmem: introduce VIR_DOMAIN_MEM_CURRENT flag (Taku Izumi),<br/> + build: Install libxenlight log dir (Jim Fehlig),<br/> + Add domainSet/GetSchedulerParameters to libxl driver (Markus Groß),<br/> + rename pciUnBindDeviceFromStub() to pciUnbindDeviceFromStub() and float it up (Wen Congyang),<br/> + Add domainIsUpdated to libxl driver (Markus Groß),<br/> + Change locking for udev monitor and callbacks (Serge Hallyn),<br/> + Improve SCSI volume key generation (Daniel P. Berrange),<br/> + qemu: Rewrite LOOKUP_PTYS macro into a function (Jiri Denemark),<br/> + Enable use of -Wold-style-definition compiler flag (Daniel P. Berrange),<br/> + Enable use of -Wmissing-noreturn (Daniel P. Berrange),<br/> + Enable -Wmissing-format-attribute warning (Daniel P. Berrange),<br/> + Use gnulib's manywarnings and warnings modules (Daniel P. Berrange),<br/> + Use virBufferPtr for sexpr2string instead of manual buffer handling (Matthias Bolte),<br/> + xend: Remove 4kb stack allocation (Matthias Bolte),<br/> + uml: Remove PATH_MAX sized stack allocation from /proc parsing code (Matthias Bolte),<br/> + storage: Remove PATH_MAX sized stack allocation from iSCSI backend (Matthias Bolte),<br/> + qemu: Remove PATH_MAX sized stack allocation used in commandline building (Matthias Bolte),<br/> + Remove PATH_MAX sized stack allocation from virFileOpenTtyAt (Matthias Bolte),<br/> + openvz: Remove several larger stack allocations (Matthias Bolte),<br/> + daemon: Remove 4kb stack allocation of security label (Matthias Bolte),<br/> + virsh: Remove two 4kb stack allocations (Matthias Bolte),<br/> + Use virFileAbsPath instead of manually creating the absolute path (Matthias Bolte),<br/> + xenxs: Remove PATH_MAX sized stack allocation in XM script parsing (Matthias Bolte),<br/> + sasl: Remove stack allocated 8kb temporary buffers (Matthias Bolte),<br/> + qemu: Use heap allocated memory to read the monitor greeting (Matthias Bolte),<br/> + phyp: Remove 16kb stack allocation (Matthias Bolte),<br/> + virt-aa-helper: Remove PATH_MAX sized stack allocations (Matthias Bolte),<br/> + ebtables: Remove PATH_MAX sized stack allocation (Matthias Bolte),<br/> + pci: Remove PATH_MAX sized stack allocations (Matthias Bolte),<br/> + Remove PATH_MAX sized stack allocations related to virFileBuildPath (Matthias Bolte),<br/> + vmx: Use case-insensitive compare functions for all content (Matthias Bolte),<br/> + vmx: Support persistent CPU shares (Matthias Bolte),<br/> + Add autostart support to libxl driver (Markus Groß),<br/> + Allow relative path for qemu backing file (Jesse Cook),<br/> + build: detect potentential uninitialized variables (Eric Blake)<br/> </li> <li>Cleanups:<br/> - esx: Disable performance counter queries in esxDomainGetInfo (Matthias Bolte),<br/> - esx: Remove dead store in esxUtil_ParseDatastorePath (Matthias Bolte),<br/> - util: remove dead assignment (Eric Blake),<br/> - qemu: remove dead assignment (Eric Blake),<br/> - qemu: silence clang false positives (Eric Blake),<br/> - tests: suppress more valgrind situations (Eric Blake),<br/> - tests: avoid compiler warning (Eric Blake),<br/> - qemu: fix uninitialized variable warning (Christophe Fergeau),<br/> - build: fix syntax-check failure (Eric Blake),<br/> - virsh: nuke use of TRUE and FALSE (Eric Blake),<br/> - phyp: another simplification (Eric Blake),<br/> - maint: ignore built file (Eric Blake),<br/> - Change some variable names to follow standard in daemon dispatcher (Daniel P. Berrange),<br/> - Remove curly braces on all single-line conditional jumps in dispatcher (Daniel P. Berrange),<br/> - Remove virConnectPtr from virRaiseErrorFull (Matthias Bolte),<br/> - phyp: prefer memcpy over memmove when legal (Eric Blake),<br/> - phyp: use consistent style for labels (Eric Blake),<br/> - phyp: more return handling cleanup (Eric Blake),<br/> - esx: Fix gcc 4.6 warning about initialized but unused variables (Matthias Bolte),<br/> - maint: silence cppi warnings (Eric Blake),<br/> - Fix gcc 4.6 warnings in vbox_tmpl.c (Christophe Fergeau),<br/> - Fix gcc 4.6 warnings (Christophe Fergeau),<br/> - Remove C99 variable declare in PHYP network driver (Daniel P. Berrange),<br/> - Standard on error variable name in libvirtd dispatcher (Daniel P. Berrange),<br/> - Remove all whitespace before function brackets in daemon dispatcher (Daniel P. Berrange),<br/> - docs: tweak virsh restore warning (Eric Blake),<br/> - setmaxmem: remove the code to invoke virDomainSetMemory in cmdSetmaxmem (Taku Izumi),<br/> - build: fix gitignore sorting (Eric Blake),<br/> - tests: fix recent test failures (Eric Blake),<br/> - libxl: avoid compiler warning (Eric Blake),<br/> - Avoid compiler warnings about int to void * casts (Daniel P. Berrange),<br/> - Remove acinclude.m4 file (Daniel P. Berrange),<br/> - Remove possible uninitialized variable in openvz driver (Daniel P. Berrange)<br/> + esx: Disable performance counter queries in esxDomainGetInfo (Matthias Bolte),<br/> + esx: Remove dead store in esxUtil_ParseDatastorePath (Matthias Bolte),<br/> + util: remove dead assignment (Eric Blake),<br/> + qemu: remove dead assignment (Eric Blake),<br/> + qemu: silence clang false positives (Eric Blake),<br/> + tests: suppress more valgrind situations (Eric Blake),<br/> + tests: avoid compiler warning (Eric Blake),<br/> + qemu: fix uninitialized variable warning (Christophe Fergeau),<br/> + build: fix syntax-check failure (Eric Blake),<br/> + virsh: nuke use of TRUE and FALSE (Eric Blake),<br/> + phyp: another simplification (Eric Blake),<br/> + maint: ignore built file (Eric Blake),<br/> + Change some variable names to follow standard in daemon dispatcher (Daniel P. Berrange),<br/> + Remove curly braces on all single-line conditional jumps in dispatcher (Daniel P. Berrange),<br/> + Remove virConnectPtr from virRaiseErrorFull (Matthias Bolte),<br/> + phyp: prefer memcpy over memmove when legal (Eric Blake),<br/> + phyp: use consistent style for labels (Eric Blake),<br/> + phyp: more return handling cleanup (Eric Blake),<br/> + esx: Fix gcc 4.6 warning about initialized but unused variables (Matthias Bolte),<br/> + maint: silence cppi warnings (Eric Blake),<br/> + Fix gcc 4.6 warnings in vbox_tmpl.c (Christophe Fergeau),<br/> + Fix gcc 4.6 warnings (Christophe Fergeau),<br/> + Remove C99 variable declare in PHYP network driver (Daniel P. Berrange),<br/> + Standard on error variable name in libvirtd dispatcher (Daniel P. Berrange),<br/> + Remove all whitespace before function brackets in daemon dispatcher (Daniel P. Berrange),<br/> + docs: tweak virsh restore warning (Eric Blake),<br/> + setmaxmem: remove the code to invoke virDomainSetMemory in cmdSetmaxmem (Taku Izumi),<br/> + build: fix gitignore sorting (Eric Blake),<br/> + tests: fix recent test failures (Eric Blake),<br/> + libxl: avoid compiler warning (Eric Blake),<br/> + Avoid compiler warnings about int to void * casts (Daniel P. Berrange),<br/> + Remove acinclude.m4 file (Daniel P. Berrange),<br/> + Remove possible uninitialized variable in openvz driver (Daniel P. Berrange)<br/> </li> </ul> <h3>0.9.0: Apr 4 2011</h3> @@ -18296,437 +18296,437 @@ Don't copy old machines from a domain which has none (Mark McLoughlin)<br/> </li> </ul> - <h3>0.7.3: Nov 20 2009</h3> + <h3>0.7.3: Nov 20 2009</h3> <ul> <li>Broken release, use 0.7.4<br/> </li> </ul> <h3>0.7.2: Oct 14 2009</h3> - <ul> - <li>Features:<br/> - sVirt AppArmor security driver (Jamie Strandboge),<br/> - Add public API definition for data stream handling (Daniel P. Berrange),<br/> - ESX add esxDomainDefineXML() (Matthias Bolte),<br/> - LXC: suspend/resume support (Ryota Ozaki),<br/> - Big code tree cleanup (Daniel P. Berrange)<br/> - </li> - - <li>Documentation:<br/> - Documentation and examples for SVirt Apparmor driver (Jamie Strandboge),<br/> - Fix documentation and comment typos (Paolo Bonzini),<br/> - Fix up a few typos in the tree. (Chris Lalancette),<br/> - Fix a typo in virNetHasValidPciAddr() too (Mark McLoughlin),<br/> - Fix a typo in virDiskHasValidPciAddr() (Jiri Denemark),<br/> - Fix a number of small typos (Dan Kenigsberg),<br/> - add doc for graphic and video elements (Florian Vichot),<br/> - Fix up 'neccessary -> necessary' in a comment. (Chris Lalancette),<br/> - Fix up comments for domainXML{To,From}Native. (Chris Lalancette),<br/> - Simple fix of a comment in qemuStringToArgvEnv. (Chris Lalancette),<br/> - Add a README file to src/ explaining the directory structure (Daniel P. Berrange),<br/> - doc: don't emit trailing blanks into generated and VC'd NEWS file (Jim Meyering)<br/> - </li> - - <li>Portability:<br/> - Misc win32 build fixes (Daniel P. Berrange),<br/> - Don't require full daemon install for libvirt python bindings (Daniel P. Berrange),<br/> - Tweak specfile to fix RHEL6 rules & ESX/PHYP enablement (Daniel P. Berrange)<br/> - </li> - - <li>Bug Fixes:<br/> - network: Fix printing XML 'delay' attribute (Cole Robinson),<br/> - Fix virFileReadLimFD/virFileReadAll to handle EINTR (Daniel P. Berrange),<br/> - storage: Fix generating iscsi 'auth' xml (Cole Robinson),<br/> - Fix QEMU restore from file in raw format (Daniel P. Berrange),<br/> - Take domain type into account when looking up default machine (Mark McLoughlin),<br/> - Fix schema to allow missing machine type (Mark McLoughlin),<br/> - Fix stream abort upon I/O failure during migration (Daniel P. Berrange),<br/> - Create /var/log/libvirt/{lxc,uml} dirs (Mark McLoughlin),<br/> - nodedev: Add locking in nodeNumOfDevices (Cole Robinson),<br/> - test: Throw a proper error in GetBridgeName (Cole Robinson),<br/> - 526769 change logrotate config default to weekly (Daniel Veillard),<br/> - Fix emission of domain events messages (Daniel P. Berrange),<br/> - unbreak `make rpcgen' (Paolo Bonzini),<br/> - unbreak migration (Paolo Bonzini),<br/> - Fix USB device re-labelling (Mark McLoughlin),<br/> - Avoid a libvirtd crash on broken input 523418 (Daniel Veillard),<br/> - Re-label image file backing stores (Mark McLoughlin),<br/> - Fix memory leaks in libvirtd's message processing (Matthias Bolte),<br/> - Fix QEMU test suite with new VNC env variable (Daniel P. Berrange),<br/> - VBox vboxDomainDestroy forgot to wait for completion (Pritesh Kothari),<br/> - Vbox call OpenHardDisk with "" instead of NULL (Pritesh Kothari),<br/> - Avoid double free in errors in virsh (Jim Fehlig),<br/> - Fix crash in device hotplug cleanup code (Daniel P. Berrange),<br/> - Maintain value of ctxt->node in virInterfaceDefParseDhcp (Laine Stump),<br/> - Fix some XPath relative node resets (Daniel Veillard),<br/> - Fix unitialized variable in qemudDomainDetachHostPciDevice() (Charles Duffy),<br/> - ESX: Check if a datastore is accessible first (Matthias Bolte),<br/> - Fix handling of Xen(ner) detection (Daniel P. Berrange),<br/> - Fix xen driver refcounting. (Matthias Bolte),<br/> - prevent attempt to call cat -c during virDomainSave to raw (Charles Duffy),<br/> - Don't do virSetConnError when virDrvSupportsFeature is successful. (Chris Lalancette),<br/> - Fix a double-free in qemudRunLoop() (Chris Lalancette),<br/> - Fix leak in PCI hostdev hot-unplug (Mark McLoughlin),<br/> - Fix net/disk hot-unplug segfault (Mark McLoughlin)<br/> - </li> - - <li>Improvements:<br/> - schema: Update storage pool schema. (Cole Robinson),<br/> - test: Activate interfaces specified through driver config file. (Cole Robinson),<br/> - Rewrite example domain events program for python (Daniel P. Berrange),<br/> - Support a new peer-to-peer migration mode & public API (Daniel P. Berrange),<br/> - LXC add augeas support for config file (Amy Griffis),<br/> - LXC add driver config file lxc.conf (Amy Griffis),<br/> - LXC do not truncate container log files on restart (Amy Griffis),<br/> - LXC initialize logging configuration (Amy Griffis),<br/> - Add debug for envp[] in virExecWithHook() (Amy Griffis),<br/> - Add accessors for logging filters and outputs (Amy Griffis),<br/> - Add virFileAbsPath() utility (Amy Griffis),<br/> - LXC implement memory control APIs (Ryota Ozaki),<br/> - Add a domain argument to SVirt *RestoreImageLabel (Jamie Strandboge),<br/> - test: Support loading node device info from file/XML (Cole Robinson),<br/> - test: Implement node device driver. (Cole Robinson),<br/> - configure: Add explicit --with-python option. (Cole Robinson),<br/> - Tunnelled migration. (Chris Lalancette),<br/> - Various monitor improvements for migration. (Chris Lalancette),<br/> - 523639 Allows a <description> tag for domains (Daniel Veillard),<br/> - Add src/util/storage_file.c to the POTFILES.in. (Chris Lalancette),<br/> - Add a qemu feature flag for unix socket migration. (Chris Lalancette),<br/> - Let remoteClientStream only do RX if requested. (Chris Lalancette),<br/> - Introduce virStorageFileMetadata structure (Mark McLoughlin),<br/> - Allow control over QEMU audio backend (Daniel P. Berrange),<br/> - Handle data streams in remote client (Daniel P. Berrange),<br/> - Handle outgoing data streams in libvirtd (Daniel P. Berrange),<br/> - Handle incoming data streams in libvirtd (Daniel P. Berrange),<br/> - Lots of cleanups and improvement on QEmu monitor code (Daniel P. Berrange),<br/> - ESX add esxVI_Occurence enum to for occurences (Matthias Bolte),<br/> - ESX add x86_64 detection based on the CPUID (Matthias Bolte),<br/> - ESX add tests for the VMX to/from domain XML mapping (Matthias Bolte),<br/> - ESX Add esxDomainXMLToNative() (Matthias Bolte),<br/> - ESX Set challenge for auth callback to hostname (Matthias Bolte),<br/> - ESX Add esxNodeGetFreeMemory() (Matthias Bolte),<br/> - network: add 'bootp' and 'tftp' config (Paolo Bonzini),<br/> - OpenVZ Fix a restriction about domain names (Yuji NISHIDA),<br/> - Make pki_check.sh into an installed & supported tool (Daniel P. Berrange),<br/> - ESX add support for vmxnet3 virtual device (Shahar Klein)<br/> - </li> - - <li>Cleanups:<br/> - remote: Don't print a warning every time a remote call fails (Cole Robinson),<br/> - storage: Report errors in FindPoolSources (Cole Robinson),<br/> - LXC fix return code handling in lxcVmStart (Ryota Ozaki),<br/> - Add a target for libvirt.devhelp (Daniel Veillard),<br/> - Remove some auto-generated files (Daniel P. Berrange),<br/> - Re-arrange doTunnelMigrate to simplify cleanup code (Daniel P. Berrange),<br/> - Separate out code for sending tunnelled data (Daniel P. Berrange),<br/> - Pull connection handling code out of doTunnelMigrate (Daniel P. Berrange),<br/> - Refactor native QEMU migration code (Daniel P. Berrange),<br/> - Don't force dconn to be NULL in virDomainMigrate (Daniel P. Berrange),<br/> - Remove unnecessary uri_in parameter from virMigratePrepareTunnel (Daniel P. Berrange),<br/> - Move the VIR_DRV_FEATURE* constants (Daniel P. Berrange),<br/> - Fix configure.ac message vertical alignment (Daniel P. Berrange),<br/> - cgroup: Fix -Werror breakage (Cole Robinson),<br/> - Fix handling return value of qemuMonitorSetBalloon (Ryota Ozaki),<br/> - Fix up "make check" (Chris Lalancette),<br/> - Fix rebuilding of devhelp files (Daniel P. Berrange),<br/> - Fix ordering of <exports> in API description file (Daniel P. Berrange),<br/> - node conf: Make parsing routines consistent with other drivers (Cole Robinson),<br/> - nodedev: Break out virNodeDeviceHasCap to node_conf (Cole Robinson),<br/> - python: Add a newline after custom classes (Cole Robinson),<br/> - python: Fix generated virInterface method names (Cole Robinson),<br/> - python: Use a pure python implementation of 'vir*GetConnect' (Cole Robinson),<br/> - python: Don't generate bindings for vir*Ref (Cole Robinson),<br/> - python: Don't generate conflicting conn.createXML functions. (Cole Robinson),<br/> - python: Remove use of xmllib in generator.py (Cole Robinson),<br/> - python: Remove FastParser from generator. (Cole Robinson),<br/> - Fix typo in Makefile.am breaking NEWS file generation (Daniel P. Berrange),<br/> - Fix build in separate build directory (Jiri Denemark),<br/> - Incorrect error message in virDomainNetDefParseXML (Florian Vichot),<br/> - Fix a few 'make rpm' breakages (Daniel Veillard),<br/> - Pass remote_message_header to the dispatch functions. (Chris Lalancette),<br/> - Fix up some warnings from stream DEBUG statements. (Chris Lalancette),<br/> - Fix apibuild.py warnings (Matthias Bolte),<br/> - Change signature of remoteSendStreamData() to fix compile warning (Matthias Bolte),<br/> - Add virStorageFileGetMetadata() helper (Mark McLoughlin),<br/> - Move virStorageGetMetadataFromFD() to libvirt_util (Mark McLoughlin),<br/> - Split virStorageGetMetadataFromFD() from virStorageBackendProbeTarget() (Mark McLoughlin),<br/> - Move file format enum to libvirt_util (Mark McLoughlin),<br/> - Remove hand-crafted UUID parsers (Daniel P. Berrange),<br/> - Helper functions for processing data streams in libvirtd (Daniel P. Berrange),<br/> - Standardize debugging messages in QEMU monitor code (Daniel P. Berrange),<br/> - Remove low level monitor APIs from header file (Daniel P. Berrange),<br/> - Rename qemudMonitorSendCont to qemuMonitorStartCPUs (Daniel P. Berrange),<br/> - Pull QEMU monitor interaction out to separate file (Daniel P. Berrange),<br/> - util.h needs libvirt.h for virConnectPtr (Mark McLoughlin),<br/> - Fix API doc extractor to stop munging comment formatting (Daniel P. Berrange),<br/> - Fix secret_driver compile warning, bug. (Charles Duffy),<br/> - ESX remove phantom mode (Matthias Bolte),<br/> - ESX replace esxUtil_EqualSuffix() with virFileHasSuffix() (Matthias Bolte),<br/> - ESX Whitespace cleanup (Matthias Bolte),<br/> - Fix up "make syntax-check" after the tree restructuring. (Chris Lalancette),<br/> - Introduce virStrncpy. (Chris Lalancette),<br/> - Ignore auto-generated header file (Daniel P. Berrange),<br/> - Remove an unnecessary variable from remoteIOReadMessage(). (Chris Lalancette),<br/> - Remove auto-generated header file from repo (Daniel P. Berrange),<br/> - Move example XML files into examples/xml (Daniel P. Berrange),<br/> - Remove all generated docs from source control (Daniel P. Berrange),<br/> - Fix missing data file in qemuhelpdata (Daniel P. Berrange),<br/> - Misc syntax-check fixes (Daniel P. Berrange),<br/> - Move remote protocol definition into src/remote/ (Daniel P. Berrange),<br/> - Move all shared utility files to src/util/ (Daniel P. Berrange),<br/> - Move all XML configuration handling to src/conf/ (Daniel P. Berrange),<br/> - Re-arrange python generator to make it clear what's auto-generated (Daniel P. Berrange),<br/> - Remove obsolete files (Daniel P. Berrange),<br/> - Move docs/examples into examples/ (Daniel P. Berrange),<br/> - Remove unused images from docs/ directory (Daniel P. Berrange),<br/> - Rename daemon main code (Daniel P. Berrange),<br/> - Move config files to align with driver sources (Daniel P. Berrange),<br/> - Move virsh into tools/ directory (Daniel P. Berrange),<br/> - Move security drivers to src/security/ (Daniel P. Berrange),<br/> - Move secret driver into src/secret/ (Daniel P. Berrange),<br/> - Move netcf interface driver into src/interface/ (Daniel P. Berrange),<br/> - Move network driver into src/network (Daniel P. Berrange),<br/> - Move remote driver to src/remote/ (Daniel P. Berrange),<br/> - Move test driver into src/test/ (Daniel P. Berrange),<br/> - Move node device drivers to src/node_device/ (Daniel P. Berrange),<br/> - Move storage drivers into src/storage/ (Daniel P. Berrange),<br/> - Move OpenVZ driver to src/openvz/ (Daniel P. Berrange),<br/> - Move UML driver to src/uml/ (Daniel P. Berrange),<br/> - Move QEMU driver to src/qemu/ (Daniel P. Berrange),<br/> - Move LXC driver into src/lxc/ (Daniel P. Berrange),<br/> - Move xen driver code into src/xen/ directory (Daniel P. Berrange),<br/> - Rename qemud/ directory to daemon/ (Daniel P. Berrange),<br/> - Refactor libvirt.spec to allow client-only builds (Daniel P. Berrange)<br/> - </li> + <ul> + <li>Features:<br/> + sVirt AppArmor security driver (Jamie Strandboge),<br/> + Add public API definition for data stream handling (Daniel P. Berrange),<br/> + ESX add esxDomainDefineXML() (Matthias Bolte),<br/> + LXC: suspend/resume support (Ryota Ozaki),<br/> + Big code tree cleanup (Daniel P. Berrange)<br/> + </li> + + <li>Documentation:<br/> + Documentation and examples for SVirt Apparmor driver (Jamie Strandboge),<br/> + Fix documentation and comment typos (Paolo Bonzini),<br/> + Fix up a few typos in the tree. (Chris Lalancette),<br/> + Fix a typo in virNetHasValidPciAddr() too (Mark McLoughlin),<br/> + Fix a typo in virDiskHasValidPciAddr() (Jiri Denemark),<br/> + Fix a number of small typos (Dan Kenigsberg),<br/> + add doc for graphic and video elements (Florian Vichot),<br/> + Fix up 'neccessary -> necessary' in a comment. (Chris Lalancette),<br/> + Fix up comments for domainXML{To,From}Native. (Chris Lalancette),<br/> + Simple fix of a comment in qemuStringToArgvEnv. (Chris Lalancette),<br/> + Add a README file to src/ explaining the directory structure (Daniel P. Berrange),<br/> + doc: don't emit trailing blanks into generated and VC'd NEWS file (Jim Meyering)<br/> + </li> + + <li>Portability:<br/> + Misc win32 build fixes (Daniel P. Berrange),<br/> + Don't require full daemon install for libvirt python bindings (Daniel P. Berrange),<br/> + Tweak specfile to fix RHEL6 rules & ESX/PHYP enablement (Daniel P. Berrange)<br/> + </li> + + <li>Bug Fixes:<br/> + network: Fix printing XML 'delay' attribute (Cole Robinson),<br/> + Fix virFileReadLimFD/virFileReadAll to handle EINTR (Daniel P. Berrange),<br/> + storage: Fix generating iscsi 'auth' xml (Cole Robinson),<br/> + Fix QEMU restore from file in raw format (Daniel P. Berrange),<br/> + Take domain type into account when looking up default machine (Mark McLoughlin),<br/> + Fix schema to allow missing machine type (Mark McLoughlin),<br/> + Fix stream abort upon I/O failure during migration (Daniel P. Berrange),<br/> + Create /var/log/libvirt/{lxc,uml} dirs (Mark McLoughlin),<br/> + nodedev: Add locking in nodeNumOfDevices (Cole Robinson),<br/> + test: Throw a proper error in GetBridgeName (Cole Robinson),<br/> + 526769 change logrotate config default to weekly (Daniel Veillard),<br/> + Fix emission of domain events messages (Daniel P. Berrange),<br/> + unbreak `make rpcgen' (Paolo Bonzini),<br/> + unbreak migration (Paolo Bonzini),<br/> + Fix USB device re-labelling (Mark McLoughlin),<br/> + Avoid a libvirtd crash on broken input 523418 (Daniel Veillard),<br/> + Re-label image file backing stores (Mark McLoughlin),<br/> + Fix memory leaks in libvirtd's message processing (Matthias Bolte),<br/> + Fix QEMU test suite with new VNC env variable (Daniel P. Berrange),<br/> + VBox vboxDomainDestroy forgot to wait for completion (Pritesh Kothari),<br/> + Vbox call OpenHardDisk with "" instead of NULL (Pritesh Kothari),<br/> + Avoid double free in errors in virsh (Jim Fehlig),<br/> + Fix crash in device hotplug cleanup code (Daniel P. Berrange),<br/> + Maintain value of ctxt->node in virInterfaceDefParseDhcp (Laine Stump),<br/> + Fix some XPath relative node resets (Daniel Veillard),<br/> + Fix unitialized variable in qemudDomainDetachHostPciDevice() (Charles Duffy),<br/> + ESX: Check if a datastore is accessible first (Matthias Bolte),<br/> + Fix handling of Xen(ner) detection (Daniel P. Berrange),<br/> + Fix xen driver refcounting. (Matthias Bolte),<br/> + prevent attempt to call cat -c during virDomainSave to raw (Charles Duffy),<br/> + Don't do virSetConnError when virDrvSupportsFeature is successful. (Chris Lalancette),<br/> + Fix a double-free in qemudRunLoop() (Chris Lalancette),<br/> + Fix leak in PCI hostdev hot-unplug (Mark McLoughlin),<br/> + Fix net/disk hot-unplug segfault (Mark McLoughlin)<br/> + </li> + + <li>Improvements:<br/> + schema: Update storage pool schema. (Cole Robinson),<br/> + test: Activate interfaces specified through driver config file. (Cole Robinson),<br/> + Rewrite example domain events program for python (Daniel P. Berrange),<br/> + Support a new peer-to-peer migration mode & public API (Daniel P. Berrange),<br/> + LXC add augeas support for config file (Amy Griffis),<br/> + LXC add driver config file lxc.conf (Amy Griffis),<br/> + LXC do not truncate container log files on restart (Amy Griffis),<br/> + LXC initialize logging configuration (Amy Griffis),<br/> + Add debug for envp[] in virExecWithHook() (Amy Griffis),<br/> + Add accessors for logging filters and outputs (Amy Griffis),<br/> + Add virFileAbsPath() utility (Amy Griffis),<br/> + LXC implement memory control APIs (Ryota Ozaki),<br/> + Add a domain argument to SVirt *RestoreImageLabel (Jamie Strandboge),<br/> + test: Support loading node device info from file/XML (Cole Robinson),<br/> + test: Implement node device driver. (Cole Robinson),<br/> + configure: Add explicit --with-python option. (Cole Robinson),<br/> + Tunnelled migration. (Chris Lalancette),<br/> + Various monitor improvements for migration. (Chris Lalancette),<br/> + 523639 Allows a <description> tag for domains (Daniel Veillard),<br/> + Add src/util/storage_file.c to the POTFILES.in. (Chris Lalancette),<br/> + Add a qemu feature flag for unix socket migration. (Chris Lalancette),<br/> + Let remoteClientStream only do RX if requested. (Chris Lalancette),<br/> + Introduce virStorageFileMetadata structure (Mark McLoughlin),<br/> + Allow control over QEMU audio backend (Daniel P. Berrange),<br/> + Handle data streams in remote client (Daniel P. Berrange),<br/> + Handle outgoing data streams in libvirtd (Daniel P. Berrange),<br/> + Handle incoming data streams in libvirtd (Daniel P. Berrange),<br/> + Lots of cleanups and improvement on QEmu monitor code (Daniel P. Berrange),<br/> + ESX add esxVI_Occurence enum to for occurences (Matthias Bolte),<br/> + ESX add x86_64 detection based on the CPUID (Matthias Bolte),<br/> + ESX add tests for the VMX to/from domain XML mapping (Matthias Bolte),<br/> + ESX Add esxDomainXMLToNative() (Matthias Bolte),<br/> + ESX Set challenge for auth callback to hostname (Matthias Bolte),<br/> + ESX Add esxNodeGetFreeMemory() (Matthias Bolte),<br/> + network: add 'bootp' and 'tftp' config (Paolo Bonzini),<br/> + OpenVZ Fix a restriction about domain names (Yuji NISHIDA),<br/> + Make pki_check.sh into an installed & supported tool (Daniel P. Berrange),<br/> + ESX add support for vmxnet3 virtual device (Shahar Klein)<br/> + </li> + + <li>Cleanups:<br/> + remote: Don't print a warning every time a remote call fails (Cole Robinson),<br/> + storage: Report errors in FindPoolSources (Cole Robinson),<br/> + LXC fix return code handling in lxcVmStart (Ryota Ozaki),<br/> + Add a target for libvirt.devhelp (Daniel Veillard),<br/> + Remove some auto-generated files (Daniel P. Berrange),<br/> + Re-arrange doTunnelMigrate to simplify cleanup code (Daniel P. Berrange),<br/> + Separate out code for sending tunnelled data (Daniel P. Berrange),<br/> + Pull connection handling code out of doTunnelMigrate (Daniel P. Berrange),<br/> + Refactor native QEMU migration code (Daniel P. Berrange),<br/> + Don't force dconn to be NULL in virDomainMigrate (Daniel P. Berrange),<br/> + Remove unnecessary uri_in parameter from virMigratePrepareTunnel (Daniel P. Berrange),<br/> + Move the VIR_DRV_FEATURE* constants (Daniel P. Berrange),<br/> + Fix configure.ac message vertical alignment (Daniel P. Berrange),<br/> + cgroup: Fix -Werror breakage (Cole Robinson),<br/> + Fix handling return value of qemuMonitorSetBalloon (Ryota Ozaki),<br/> + Fix up "make check" (Chris Lalancette),<br/> + Fix rebuilding of devhelp files (Daniel P. Berrange),<br/> + Fix ordering of <exports> in API description file (Daniel P. Berrange),<br/> + node conf: Make parsing routines consistent with other drivers (Cole Robinson),<br/> + nodedev: Break out virNodeDeviceHasCap to node_conf (Cole Robinson),<br/> + python: Add a newline after custom classes (Cole Robinson),<br/> + python: Fix generated virInterface method names (Cole Robinson),<br/> + python: Use a pure python implementation of 'vir*GetConnect' (Cole Robinson),<br/> + python: Don't generate bindings for vir*Ref (Cole Robinson),<br/> + python: Don't generate conflicting conn.createXML functions. (Cole Robinson),<br/> + python: Remove use of xmllib in generator.py (Cole Robinson),<br/> + python: Remove FastParser from generator. (Cole Robinson),<br/> + Fix typo in Makefile.am breaking NEWS file generation (Daniel P. Berrange),<br/> + Fix build in separate build directory (Jiri Denemark),<br/> + Incorrect error message in virDomainNetDefParseXML (Florian Vichot),<br/> + Fix a few 'make rpm' breakages (Daniel Veillard),<br/> + Pass remote_message_header to the dispatch functions. (Chris Lalancette),<br/> + Fix up some warnings from stream DEBUG statements. (Chris Lalancette),<br/> + Fix apibuild.py warnings (Matthias Bolte),<br/> + Change signature of remoteSendStreamData() to fix compile warning (Matthias Bolte),<br/> + Add virStorageFileGetMetadata() helper (Mark McLoughlin),<br/> + Move virStorageGetMetadataFromFD() to libvirt_util (Mark McLoughlin),<br/> + Split virStorageGetMetadataFromFD() from virStorageBackendProbeTarget() (Mark McLoughlin),<br/> + Move file format enum to libvirt_util (Mark McLoughlin),<br/> + Remove hand-crafted UUID parsers (Daniel P. Berrange),<br/> + Helper functions for processing data streams in libvirtd (Daniel P. Berrange),<br/> + Standardize debugging messages in QEMU monitor code (Daniel P. Berrange),<br/> + Remove low level monitor APIs from header file (Daniel P. Berrange),<br/> + Rename qemudMonitorSendCont to qemuMonitorStartCPUs (Daniel P. Berrange),<br/> + Pull QEMU monitor interaction out to separate file (Daniel P. Berrange),<br/> + util.h needs libvirt.h for virConnectPtr (Mark McLoughlin),<br/> + Fix API doc extractor to stop munging comment formatting (Daniel P. Berrange),<br/> + Fix secret_driver compile warning, bug. (Charles Duffy),<br/> + ESX remove phantom mode (Matthias Bolte),<br/> + ESX replace esxUtil_EqualSuffix() with virFileHasSuffix() (Matthias Bolte),<br/> + ESX Whitespace cleanup (Matthias Bolte),<br/> + Fix up "make syntax-check" after the tree restructuring. (Chris Lalancette),<br/> + Introduce virStrncpy. (Chris Lalancette),<br/> + Ignore auto-generated header file (Daniel P. Berrange),<br/> + Remove an unnecessary variable from remoteIOReadMessage(). (Chris Lalancette),<br/> + Remove auto-generated header file from repo (Daniel P. Berrange),<br/> + Move example XML files into examples/xml (Daniel P. Berrange),<br/> + Remove all generated docs from source control (Daniel P. Berrange),<br/> + Fix missing data file in qemuhelpdata (Daniel P. Berrange),<br/> + Misc syntax-check fixes (Daniel P. Berrange),<br/> + Move remote protocol definition into src/remote/ (Daniel P. Berrange),<br/> + Move all shared utility files to src/util/ (Daniel P. Berrange),<br/> + Move all XML configuration handling to src/conf/ (Daniel P. Berrange),<br/> + Re-arrange python generator to make it clear what's auto-generated (Daniel P. Berrange),<br/> + Remove obsolete files (Daniel P. Berrange),<br/> + Move docs/examples into examples/ (Daniel P. Berrange),<br/> + Remove unused images from docs/ directory (Daniel P. Berrange),<br/> + Rename daemon main code (Daniel P. Berrange),<br/> + Move config files to align with driver sources (Daniel P. Berrange),<br/> + Move virsh into tools/ directory (Daniel P. Berrange),<br/> + Move security drivers to src/security/ (Daniel P. Berrange),<br/> + Move secret driver into src/secret/ (Daniel P. Berrange),<br/> + Move netcf interface driver into src/interface/ (Daniel P. Berrange),<br/> + Move network driver into src/network (Daniel P. Berrange),<br/> + Move remote driver to src/remote/ (Daniel P. Berrange),<br/> + Move test driver into src/test/ (Daniel P. Berrange),<br/> + Move node device drivers to src/node_device/ (Daniel P. Berrange),<br/> + Move storage drivers into src/storage/ (Daniel P. Berrange),<br/> + Move OpenVZ driver to src/openvz/ (Daniel P. Berrange),<br/> + Move UML driver to src/uml/ (Daniel P. Berrange),<br/> + Move QEMU driver to src/qemu/ (Daniel P. Berrange),<br/> + Move LXC driver into src/lxc/ (Daniel P. Berrange),<br/> + Move xen driver code into src/xen/ directory (Daniel P. Berrange),<br/> + Rename qemud/ directory to daemon/ (Daniel P. Berrange),<br/> + Refactor libvirt.spec to allow client-only builds (Daniel P. Berrange)<br/> + </li> </ul> <h3>0.7.1: Sep 15 2009</h3> <ul> <li>New features:<br/> - Add support for encrypted (qcow) volume creation. (Miloslav Trmač),<br/> - Secret manipulation public API (Miloslav Trmač),<br/> - Multipath storage support module (Dave Allan),<br/> - VBox add Storage Volume support (Pritesh Kothari),<br/> - Support configuration of huge pages in guests (Daniel P. Berrange),<br/> - Support new PolicyKit 1.0 API (Daniel P. Berrange),<br/> - Compressed save image format for Qemu (Chris Lalancette, Charles Duffy and Jim Meyering),<br/> - QEmu add host PCI device hotplug support (Mark McLoughlin)<br/> + Add support for encrypted (qcow) volume creation. (Miloslav Trmač),<br/> + Secret manipulation public API (Miloslav Trmač),<br/> + Multipath storage support module (Dave Allan),<br/> + VBox add Storage Volume support (Pritesh Kothari),<br/> + Support configuration of huge pages in guests (Daniel P. Berrange),<br/> + Support new PolicyKit 1.0 API (Daniel P. Berrange),<br/> + Compressed save image format for Qemu (Chris Lalancette, Charles Duffy and Jim Meyering),<br/> + QEmu add host PCI device hotplug support (Mark McLoughlin)<br/> </li> <li>Documentation:<br/> - Minor comment changes (Laine Stump),<br/> - Fix up virNodeGetCellsFreeMemory (Chris Lalancette),<br/> - Fix some typos and remove unhelpful acronyms in QEMU docs (Daniel P. Berrange),<br/> - Add documentation about the QEMU driver security features (Daniel P. Berrange),<br/> - Remove 'the-the' typo in docs (Daniel P. Berrange),<br/> - Fix some URLs in virsh manpage (Mark McLoughlin),<br/> - Add link to AbiCloud web management system (Daniel P. Berrange),<br/> - Update logging documentation (Amy Griffis)<br/> + Minor comment changes (Laine Stump),<br/> + Fix up virNodeGetCellsFreeMemory (Chris Lalancette),<br/> + Fix some typos and remove unhelpful acronyms in QEMU docs (Daniel P. Berrange),<br/> + Add documentation about the QEMU driver security features (Daniel P. Berrange),<br/> + Remove 'the-the' typo in docs (Daniel P. Berrange),<br/> + Fix some URLs in virsh manpage (Mark McLoughlin),<br/> + Add link to AbiCloud web management system (Daniel P. Berrange),<br/> + Update logging documentation (Amy Griffis)<br/> </li> <li>Portability:<br/> - Fix win32 platform build (Daniel P. Berrange)<br/> + Fix win32 platform build (Daniel P. Berrange)<br/> </li> <li>Bug fixes:<br/> - VBox bug when starting machine from old versions (Pritesh Kothari),<br/> - ESX avoid potential leaks (Matthias Bolte),<br/> - Fix more OOM handling bugs (Daniel P. Berrange),<br/> - Fix logging buffer overrun read (Daniel P. Berrange),<br/> - Fix misc thread locking bugs / bogus warnings (Daniel P. Berrange),<br/> - Fix regression from "Avoid polling on FDs with no events" (Chris Lalancette),<br/> - Close logfile fd after spawning qemu (Ryota Ozaki),<br/> - Check for libssh2 >= 1.0 for phy driver (Maximilian Wilhelm),<br/> - Avoid another leak in src/xend_internal.c (Matthias Bolte),<br/> - Avoid a leak in xenDaemonLookupByID (Matthias Bolte),<br/> - VBox fix minor bugs in display and added OOM checks (Pritesh Kothari),<br/> - Some close/fclose/closedir calls are missing (Matthias Bolte),<br/> - lxc_container.c: avoid a leak on error paths (Jim Meyering),<br/> - Fix several memory leaks (Ryota Ozaki),<br/> - Fix a memory leak in virsh (Laine Stump),<br/> - Fix ID field in virDomainPtr after starting Xen VM (Daniel P. Berrange),<br/> - Fix memory leak of monitor character device (Daniel P. Berrange),<br/> - Automatically set correct ownership of QEMU state directories (Daniel P. Berrange),<br/> - Avoid polling on FDs with no events enabled (Daniel P. Berrange),<br/> - esx_vi: return -1 upon failure, as intended (Matthias Bolte),<br/> - python: let libvirt_virConnectDomainEventCallback indicate success (Jim Meyering),<br/> - uml_conf.c: don't return an uninitialized pointer (Jim Meyering),<br/> - storage_backend.c: assure clang that inputvol can't be NULL (Jim Meyering),<br/> - libvir.c: avoid NULL dereference in virStoragePoolSetAutostart (Jim Meyering),<br/> - lxc: avoid NULL dereference upon getmntent failure (Jim Meyering),<br/> - storage_backend_fs: avoid NULL dereference on opendir failure (Jim Meyering),<br/> - Fix bugs in virDomainMigrate v2 code. (Chris Lalancette),<br/> - VMware ESX: Don't warn on some query parameter (Matthias Bolte),<br/> - Don't blindly reorder disk drives (Daniel P. Berrange),<br/> - Fix sexpr2string() to handle empty list. (Jim Fehlig),<br/> - Fix driver entry table for UML numa APIs (Daniel P. Berrange),<br/> - Fix crash in virsh vol-key command (Pritesh Kothari),<br/> - 517157 fix selinux problem with images on NFS (Darryl L. Pierce),<br/> - Fix phypOpen() escape_specialcharacters (Mattias Bolte),<br/> - Power Hypervisor: fix potential segfault (Mattias Bolte),<br/> - Fix bridge/tap system error reporting (Mark McLoughlin),<br/> - Reset PCI host devices after hot-unplug (Mark McLoughlin),<br/> - Reset unmanaged PCI host devices before hotplug (Mark McLoughlin),<br/> - Fix up connection reference counting. (Chris Lalancette),<br/> - Fix LXC driver crash when kernel doesn't support clone (Daniel P. Berrange),<br/> - Make LXC / UML drivers robust against NUMA topology brokenness (Daniel P. Berrange),<br/> - Run 'cont' on successful migration finish. (Chris Lalancette),<br/> - Fix QEMU domain status after restore. (Chris Lalancette),<br/> - Handle kernels with no ipv6 support (Mark McLoughlin),<br/> - Set perms on /var/lib/libvirt/boot to 0711 (Mark McLoughlin),<br/> - chown kernel/initrd before spawning qemu (Mark McLoughlin),<br/> - Several fixes to libvirtd's log setup (Amy Griffis),<br/> - Fix memleak if esxOpen fails (Matthias Bolte)<br/> + VBox bug when starting machine from old versions (Pritesh Kothari),<br/> + ESX avoid potential leaks (Matthias Bolte),<br/> + Fix more OOM handling bugs (Daniel P. Berrange),<br/> + Fix logging buffer overrun read (Daniel P. Berrange),<br/> + Fix misc thread locking bugs / bogus warnings (Daniel P. Berrange),<br/> + Fix regression from "Avoid polling on FDs with no events" (Chris Lalancette),<br/> + Close logfile fd after spawning qemu (Ryota Ozaki),<br/> + Check for libssh2 >= 1.0 for phy driver (Maximilian Wilhelm),<br/> + Avoid another leak in src/xend_internal.c (Matthias Bolte),<br/> + Avoid a leak in xenDaemonLookupByID (Matthias Bolte),<br/> + VBox fix minor bugs in display and added OOM checks (Pritesh Kothari),<br/> + Some close/fclose/closedir calls are missing (Matthias Bolte),<br/> + lxc_container.c: avoid a leak on error paths (Jim Meyering),<br/> + Fix several memory leaks (Ryota Ozaki),<br/> + Fix a memory leak in virsh (Laine Stump),<br/> + Fix ID field in virDomainPtr after starting Xen VM (Daniel P. Berrange),<br/> + Fix memory leak of monitor character device (Daniel P. Berrange),<br/> + Automatically set correct ownership of QEMU state directories (Daniel P. Berrange),<br/> + Avoid polling on FDs with no events enabled (Daniel P. Berrange),<br/> + esx_vi: return -1 upon failure, as intended (Matthias Bolte),<br/> + python: let libvirt_virConnectDomainEventCallback indicate success (Jim Meyering),<br/> + uml_conf.c: don't return an uninitialized pointer (Jim Meyering),<br/> + storage_backend.c: assure clang that inputvol can't be NULL (Jim Meyering),<br/> + libvir.c: avoid NULL dereference in virStoragePoolSetAutostart (Jim Meyering),<br/> + lxc: avoid NULL dereference upon getmntent failure (Jim Meyering),<br/> + storage_backend_fs: avoid NULL dereference on opendir failure (Jim Meyering),<br/> + Fix bugs in virDomainMigrate v2 code. (Chris Lalancette),<br/> + VMware ESX: Don't warn on some query parameter (Matthias Bolte),<br/> + Don't blindly reorder disk drives (Daniel P. Berrange),<br/> + Fix sexpr2string() to handle empty list. (Jim Fehlig),<br/> + Fix driver entry table for UML numa APIs (Daniel P. Berrange),<br/> + Fix crash in virsh vol-key command (Pritesh Kothari),<br/> + 517157 fix selinux problem with images on NFS (Darryl L. Pierce),<br/> + Fix phypOpen() escape_specialcharacters (Mattias Bolte),<br/> + Power Hypervisor: fix potential segfault (Mattias Bolte),<br/> + Fix bridge/tap system error reporting (Mark McLoughlin),<br/> + Reset PCI host devices after hot-unplug (Mark McLoughlin),<br/> + Reset unmanaged PCI host devices before hotplug (Mark McLoughlin),<br/> + Fix up connection reference counting. (Chris Lalancette),<br/> + Fix LXC driver crash when kernel doesn't support clone (Daniel P. Berrange),<br/> + Make LXC / UML drivers robust against NUMA topology brokenness (Daniel P. Berrange),<br/> + Run 'cont' on successful migration finish. (Chris Lalancette),<br/> + Fix QEMU domain status after restore. (Chris Lalancette),<br/> + Handle kernels with no ipv6 support (Mark McLoughlin),<br/> + Set perms on /var/lib/libvirt/boot to 0711 (Mark McLoughlin),<br/> + chown kernel/initrd before spawning qemu (Mark McLoughlin),<br/> + Several fixes to libvirtd's log setup (Amy Griffis),<br/> + Fix memleak if esxOpen fails (Matthias Bolte)<br/> </li> <li>Improvement:<br/> - support lzop save compression for qemu (Charles Duffy),<br/> - VBox 3.0.6 API change support (Pritesh Kothari),<br/> - Add UUID definition required by storage encryption import (Daniel P. Berrange),<br/> - Make secrets RNG more strict (Daniel P. Berrange),<br/> - Fill in secret UUID for qcow encryption (Daniel P. Berrange),<br/> - Add usage type/id as a public API property of virSecret (Daniel P. Berrange),<br/> - Fix UUID handling in secrets/storage encryption APIs (Daniel P. Berrange),<br/> - Save vcpuinfo in status file (Daniel P. Berrange),<br/> - Restart libvirtd upon RPM upgrade (Daniel P. Berrange),<br/> - Add support for qcow encrypted volumes to qemu. (Miloslav Trmač),<br/> - Provide missing passphrase when creating a volume. (Miloslav Trmač),<br/> - Add virsh commands for secrets APIs (Miloslav Trmač),<br/> - Local file implementation of secret driver API (Miloslav Trmač),<br/> - Mask out flags used internally for virSecretGetValue (Miloslav Trmač),<br/> - Add <usage> to <secret> docs (Miloslav Trmač),<br/> - also allow use of XZ for Qemu image compression (Jim Meyering),<br/> - Support relabelling of USB and PCI devices (Daniel P. Berrange),<br/> - Add helper APIs for iterating over PCI device resource files (Daniel P. Berrange),<br/> - Add helper module for dealing with USB host devices (Daniel P. Berrange),<br/> - Test that domain-specific qemu machine types are used correctly (Mark McLoughlin),<br/> - Probe machine types from kvm binary too (Mark McLoughlin),<br/> - Look up machine types from all domains in qemudGetOldMachines() (Mark McLoughlin),<br/> - Test qemu machine aliases (Mark McLoughlin),<br/> - Add qemu -help test data for qemu-kvm-0.11.0-rc2 (Mark McLoughlin),<br/> - Add a more featureful qemu capabilities test data (Mark McLoughlin),<br/> - Add arm arch to capabilities schema (Mark McLoughlin),<br/> - Update capabilities schema to allow multiple machines per domain (Mark McLoughlin),<br/> - Add esx and tcp migration uri transports to capabilities schema (Mark McLoughlin),<br/> - Reintroduce support for lzop compression (Charles Duffy),<br/> - build: update gnulib submodule to latest (Jim Meyering),<br/> - Add flags and requires for Multipath storage (Daniel Veillard),<br/> - ESX raise error if UUID parse failed (Matthias Bolte),<br/> - ESX add domain undefine based on esxVI_UnregisterVM (Matthias Bolte),<br/> - ESX add esxGetCapabilities() with basic defaults (Matthias Bolte),<br/> - Switch Power Hypervisor to libssh2 (Eduardo Otubo),<br/> - Allow libvirtd to RPC to external libvirtd (Chris Lalancette),<br/> - Add support for setting disk drive serial numbers (Daniel P. Berrange),<br/> - VBox support for defining/dumping video devices (Pritesh Kothari),<br/> - Generic parsing support for video acceleration (Pritesh Kothari),<br/> - VMware ESX: Allow ethernet address type 'vpx' (Matthias Bolte),<br/> - Support for getting/setting number of cpus in VBox (Pritesh Kothari),<br/> - Make handling of monitor prompts more general. (Miloslav Trmač),<br/> - Attach encryption information to virDomainDiskDef. (Miloslav Trmač),<br/> - Recognize encryption format of qcow volumes. (Miloslav Trmač),<br/> - Attach encryption information to virStorageVolDef. (Miloslav Trmač),<br/> - Add volume encryption information handling. (Miloslav Trmač),<br/> - Secret manipulation API docs refresh and wire up python generator (Miloslav Trmač),<br/> - Secret manipulation remote client (Miloslav Trmač),<br/> - Secret manipulation libvirtd wire protocol and remote dispatcher (Miloslav Trmač),<br/> - Secret manipulation public API implementation (Miloslav Trmač),<br/> - Secret manipulation internal API (Miloslav Trmač),<br/> - Add test for recently fixed crash with latest XenD (Daniel P. Berrange),<br/> - Don't expose 'vnet%d' to the user (Mark McLoughlin),<br/> - Maintain a list of active PCI hostdevs and use it in pciResetDevice() (Mark McLoughlin),<br/> - Simplify PCI hostdev prepare/re-attach using a pciDeviceList type (Mark McLoughlin),<br/> - Use pci_addr=auto with QEMU's pci_add monitor command (Mark McLoughlin),<br/> - Check active domain hostdevs before allowing PCI reset (Mark McLoughlin),<br/> - Allow pciResetDevice() to reset multiple devices (Mark McLoughlin),<br/> - Improve PCI host device reset error message (Mark McLoughlin),<br/> - Reset and re-attach PCI host devices on guest shutdown (Mark McLoughlin),<br/> - Allow PM reset on multi-function PCI devices (Mark McLoughlin),<br/> - Detect KVM's PCI device assignment support (Mark McLoughlin),<br/> - Split virDomainMigrate into functions. (Chris Lalancette),<br/> - Consolidate code for parsing the logging env (Amy Griffis)<br/> + support lzop save compression for qemu (Charles Duffy),<br/> + VBox 3.0.6 API change support (Pritesh Kothari),<br/> + Add UUID definition required by storage encryption import (Daniel P. Berrange),<br/> + Make secrets RNG more strict (Daniel P. Berrange),<br/> + Fill in secret UUID for qcow encryption (Daniel P. Berrange),<br/> + Add usage type/id as a public API property of virSecret (Daniel P. Berrange),<br/> + Fix UUID handling in secrets/storage encryption APIs (Daniel P. Berrange),<br/> + Save vcpuinfo in status file (Daniel P. Berrange),<br/> + Restart libvirtd upon RPM upgrade (Daniel P. Berrange),<br/> + Add support for qcow encrypted volumes to qemu. (Miloslav Trmač),<br/> + Provide missing passphrase when creating a volume. (Miloslav Trmač),<br/> + Add virsh commands for secrets APIs (Miloslav Trmač),<br/> + Local file implementation of secret driver API (Miloslav Trmač),<br/> + Mask out flags used internally for virSecretGetValue (Miloslav Trmač),<br/> + Add <usage> to <secret> docs (Miloslav Trmač),<br/> + also allow use of XZ for Qemu image compression (Jim Meyering),<br/> + Support relabelling of USB and PCI devices (Daniel P. Berrange),<br/> + Add helper APIs for iterating over PCI device resource files (Daniel P. Berrange),<br/> + Add helper module for dealing with USB host devices (Daniel P. Berrange),<br/> + Test that domain-specific qemu machine types are used correctly (Mark McLoughlin),<br/> + Probe machine types from kvm binary too (Mark McLoughlin),<br/> + Look up machine types from all domains in qemudGetOldMachines() (Mark McLoughlin),<br/> + Test qemu machine aliases (Mark McLoughlin),<br/> + Add qemu -help test data for qemu-kvm-0.11.0-rc2 (Mark McLoughlin),<br/> + Add a more featureful qemu capabilities test data (Mark McLoughlin),<br/> + Add arm arch to capabilities schema (Mark McLoughlin),<br/> + Update capabilities schema to allow multiple machines per domain (Mark McLoughlin),<br/> + Add esx and tcp migration uri transports to capabilities schema (Mark McLoughlin),<br/> + Reintroduce support for lzop compression (Charles Duffy),<br/> + build: update gnulib submodule to latest (Jim Meyering),<br/> + Add flags and requires for Multipath storage (Daniel Veillard),<br/> + ESX raise error if UUID parse failed (Matthias Bolte),<br/> + ESX add domain undefine based on esxVI_UnregisterVM (Matthias Bolte),<br/> + ESX add esxGetCapabilities() with basic defaults (Matthias Bolte),<br/> + Switch Power Hypervisor to libssh2 (Eduardo Otubo),<br/> + Allow libvirtd to RPC to external libvirtd (Chris Lalancette),<br/> + Add support for setting disk drive serial numbers (Daniel P. Berrange),<br/> + VBox support for defining/dumping video devices (Pritesh Kothari),<br/> + Generic parsing support for video acceleration (Pritesh Kothari),<br/> + VMware ESX: Allow ethernet address type 'vpx' (Matthias Bolte),<br/> + Support for getting/setting number of cpus in VBox (Pritesh Kothari),<br/> + Make handling of monitor prompts more general. (Miloslav Trmač),<br/> + Attach encryption information to virDomainDiskDef. (Miloslav Trmač),<br/> + Recognize encryption format of qcow volumes. (Miloslav Trmač),<br/> + Attach encryption information to virStorageVolDef. (Miloslav Trmač),<br/> + Add volume encryption information handling. (Miloslav Trmač),<br/> + Secret manipulation API docs refresh and wire up python generator (Miloslav Trmač),<br/> + Secret manipulation remote client (Miloslav Trmač),<br/> + Secret manipulation libvirtd wire protocol and remote dispatcher (Miloslav Trmač),<br/> + Secret manipulation public API implementation (Miloslav Trmač),<br/> + Secret manipulation internal API (Miloslav Trmač),<br/> + Add test for recently fixed crash with latest XenD (Daniel P. Berrange),<br/> + Don't expose 'vnet%d' to the user (Mark McLoughlin),<br/> + Maintain a list of active PCI hostdevs and use it in pciResetDevice() (Mark McLoughlin),<br/> + Simplify PCI hostdev prepare/re-attach using a pciDeviceList type (Mark McLoughlin),<br/> + Use pci_addr=auto with QEMU's pci_add monitor command (Mark McLoughlin),<br/> + Check active domain hostdevs before allowing PCI reset (Mark McLoughlin),<br/> + Allow pciResetDevice() to reset multiple devices (Mark McLoughlin),<br/> + Improve PCI host device reset error message (Mark McLoughlin),<br/> + Reset and re-attach PCI host devices on guest shutdown (Mark McLoughlin),<br/> + Allow PM reset on multi-function PCI devices (Mark McLoughlin),<br/> + Detect KVM's PCI device assignment support (Mark McLoughlin),<br/> + Split virDomainMigrate into functions. (Chris Lalancette),<br/> + Consolidate code for parsing the logging env (Amy Griffis)<br/> </li> <li>Cleanups:<br/> - Remove accidentally added UUID re-definition in storage schema (Daniel P. Berrange),<br/> - ESX cleanup of CPU model strings (Matthias Bolte),<br/> - Fix use of dlopen modules (Daniel P. Berrange),<br/> - Consolidate "cont" into qemudMonitorSendCont() (Miloslav Trmač),<br/> - Cleanup sec driver error reporting to use virReportSystemError (Daniel P. Berrange),<br/> - Port QEMU driver to use USB/PCI device helpers (Daniel P. Berrange),<br/> - Simplify and fix qemudCanonicalizeMachine() (Mark McLoughlin),<br/> - Split up qemudGetOldMachines() (Mark McLoughlin),<br/> - Re-factor qemu test machine allocation code (Mark McLoughlin),<br/> - Canonicalize the qemu machine type in qemuxml2argvtest (Mark McLoughlin),<br/> - Dump qemu driver capabilities if test debugging enabled (Mark McLoughlin),<br/> - Fix formatting of machine types in capabilities XML (Mark McLoughlin),<br/> - qemu_driver.c: factor out more duplication (Jim Meyering),<br/> - Deprecate lzma and lzop in favor of xz, add dep (Daniel Veillard),<br/> - qemu_driver.c: factor out duplication in compression-type handling (Jim Meyering),<br/> - openvz_conf.c: remove dead store to "p"; use strchrnul (Jim Meyering),<br/> - Remove some tabs used for indent (Daniel Veillard),<br/> - Updated a number of localizations and regenerated (Daniel Veillard),<br/> - Add a missing comment (Miloslav Trmač),<br/> - Fix a pasto in storage_encryption_conf.c (Miloslav Trmač),<br/> - xm_internal.c: remove four useless comparisons after strchr (Jim Meyering),<br/> - xm_internal.c: remove dead increment of "data" (Jim Meyering),<br/> - network_driver.c: remove dead store to "err" (Jim Meyering),<br/> - iptables.c: remove dead store to "s" (Jim Meyering),<br/> - util.c: avoid dead store to "flag" (Jim Meyering),<br/> - domain_conf.c: remove two dead stores (Jim Meyering),<br/> - xm_internal.c: remove two ret=... dead stores (Jim Meyering),<br/> - xm_internal.c: remove dead stores of local, "type" (Jim Meyering),<br/> - network_conf.c: remove dead store to "err" (Jim Meyering),<br/> - openvz_driver.c: avoid dead store to "err" (Jim Meyering),<br/> - xend_internal.c: Remove two dead stores to "ret" (Jim Meyering),<br/> - storage_driver.c: remove two dead stores to "backend" (Jim Meyering),<br/> - qemu_conf.c: add a comment suggesting why we leave a dead-store (Jim Meyering),<br/> - hash.c: remove a dead store (Jim Meyering),<br/> - interface_conf.c: remove a dead-store and declaration (Jim Meyering),<br/> - eventtest.c: detect write failure and avoid dead stores (Jim Meyering),<br/> - openvz_conf.c: Remove dead store to copy_fd (Jim Meyering),<br/> - storage_backend_logical.c: appease clang: remove useless increment (Jim Meyering),<br/> - ESX simplify SOAP request and response handling (Matthias Bolte),<br/> - ESX use virXPathNode*() to simplify XPath handling (Matthias Bolte),<br/> - ESX: make esxVI_GetVirtualMachineIdentity() robust (Matthias Bolte),<br/> - ESX: Fix VMX path parsing and URL encoding (Matthias Bolte),<br/> - VBox driver cleanups (Pritesh Kothari),<br/> - PHYP driver cleanups (Daniel Veillard),<br/> - Move QEMU monitor socket in /var/lib/libvirt/qemu (Daniel P. Berrange),<br/> - xen_internal.c: remove two unused local variables (Jim Meyering),<br/> - mdns.c: remove dead initialization (Jim Meyering),<br/> - node_device_conf.c: remove dead initialization (Jim Meyering),<br/> - openvz_conf.c: don't use undefined local, "net" (Jim Meyering),<br/> - test.c: don't use undefined local, "def" (Jim Meyering),<br/> - remote_internal.c: appease clang (Jim Meyering),<br/> - infra: define ATTRIBUTE_NONNULL to mark non-NULL parameters (Jim Meyering),<br/> - lxc: don't unlink(NULL) in main (Jim Meyering),<br/> - storage_conf.c: avoid overflow upon use of "z" or "Z" (zebi) suffix (Jim Meyering),<br/> - VBox cleanup and update of networking shutdown (Pritesh Kothari),<br/> - Box cleanup and update of networking XML functions (Pritesh Kothari),<br/> - Fix misc OOM bugs (Daniel P. Berrange),<br/> - Misc fixes to secrets API code (Daniel P. Berrange),<br/> - Only add glusterfs dep for Fedora >= 11 (Daniel P. Berrange),<br/> - Remove redundant base64 include file (Daniel P. Berrange),<br/> - Don't assume buffered output echoes the command. (Miloslav Trmač),<br/> - Update chinese, polish and spanish localizations (Daniel Veillard),<br/> - OpenVZ: accept NULL as type for GetMaxVCPUs. (Chris Lalancette),<br/> - Remove use of strncpy in qemudExtractMonitorPath. (Chris Lalancette),<br/> - Refactor policycode auth code to avoid compiler warnings (Daniel P. Berrange),<br/> - spec file: add URL to Source tag (Mark McLoughlin),<br/> - Small fixes for qemu save compression. (Chris Lalancette),<br/> - Fix thinko in PCI hostdev detach (Mark McLoughlin),<br/> - Revert changes to allow pciResetDevice() reset multiple devices (Mark McLoughlin),<br/> - Fix list updating after disk/network/hostdev hot-unplug (Mark McLoughlin),<br/> - Re-name remote_internal.c:driver to remote_driver (Mark McLoughlin),<br/> - Cosmetic change to 'virsh nodedev-list --tree' output (Mark McLoughlin),<br/> - Re-factor hostdev hotplug (Mark McLoughlin),<br/> - Remove a duplicated assignment in Xen PCI parsing. (Chris Lalancette),<br/> - Fix up a few minor indentation issues. (Chris Lalancette),<br/> - Fix phyp escape_specialcharacters. (Chris Lalancette),<br/> - Make openvzGetVPSUUID take a len. (Chris Lalancette),<br/> - Minor cleanup of error path for c_oneVmInfo. (Chris Lalancette),<br/> - Fix up a whitespace in comments in src/console.c (Chris Lalancette),<br/> - Fix up a stray whitespace in virHashGrow. (Chris Lalancette),<br/> - Remove unsafe strncpy from esx_vmx.c (Chris Lalancette),<br/> - Cleanup VIR_LOG_DEBUG parsing in eventtest (Amy Griffis),<br/> - Tighten libvirt's parsing of logging env (Amy Griffis),<br/> - Cleanup structure name naming (Matthias Bolte),<br/> - Add proper OOM reporting for esxDomainGetOSType (Matthias Bolte)<br/> + Remove accidentally added UUID re-definition in storage schema (Daniel P. Berrange),<br/> + ESX cleanup of CPU model strings (Matthias Bolte),<br/> + Fix use of dlopen modules (Daniel P. Berrange),<br/> + Consolidate "cont" into qemudMonitorSendCont() (Miloslav Trmač),<br/> + Cleanup sec driver error reporting to use virReportSystemError (Daniel P. Berrange),<br/> + Port QEMU driver to use USB/PCI device helpers (Daniel P. Berrange),<br/> + Simplify and fix qemudCanonicalizeMachine() (Mark McLoughlin),<br/> + Split up qemudGetOldMachines() (Mark McLoughlin),<br/> + Re-factor qemu test machine allocation code (Mark McLoughlin),<br/> + Canonicalize the qemu machine type in qemuxml2argvtest (Mark McLoughlin),<br/> + Dump qemu driver capabilities if test debugging enabled (Mark McLoughlin),<br/> + Fix formatting of machine types in capabilities XML (Mark McLoughlin),<br/> + qemu_driver.c: factor out more duplication (Jim Meyering),<br/> + Deprecate lzma and lzop in favor of xz, add dep (Daniel Veillard),<br/> + qemu_driver.c: factor out duplication in compression-type handling (Jim Meyering),<br/> + openvz_conf.c: remove dead store to "p"; use strchrnul (Jim Meyering),<br/> + Remove some tabs used for indent (Daniel Veillard),<br/> + Updated a number of localizations and regenerated (Daniel Veillard),<br/> + Add a missing comment (Miloslav Trmač),<br/> + Fix a pasto in storage_encryption_conf.c (Miloslav Trmač),<br/> + xm_internal.c: remove four useless comparisons after strchr (Jim Meyering),<br/> + xm_internal.c: remove dead increment of "data" (Jim Meyering),<br/> + network_driver.c: remove dead store to "err" (Jim Meyering),<br/> + iptables.c: remove dead store to "s" (Jim Meyering),<br/> + util.c: avoid dead store to "flag" (Jim Meyering),<br/> + domain_conf.c: remove two dead stores (Jim Meyering),<br/> + xm_internal.c: remove two ret=... dead stores (Jim Meyering),<br/> + xm_internal.c: remove dead stores of local, "type" (Jim Meyering),<br/> + network_conf.c: remove dead store to "err" (Jim Meyering),<br/> + openvz_driver.c: avoid dead store to "err" (Jim Meyering),<br/> + xend_internal.c: Remove two dead stores to "ret" (Jim Meyering),<br/> + storage_driver.c: remove two dead stores to "backend" (Jim Meyering),<br/> + qemu_conf.c: add a comment suggesting why we leave a dead-store (Jim Meyering),<br/> + hash.c: remove a dead store (Jim Meyering),<br/> + interface_conf.c: remove a dead-store and declaration (Jim Meyering),<br/> + eventtest.c: detect write failure and avoid dead stores (Jim Meyering),<br/> + openvz_conf.c: Remove dead store to copy_fd (Jim Meyering),<br/> + storage_backend_logical.c: appease clang: remove useless increment (Jim Meyering),<br/> + ESX simplify SOAP request and response handling (Matthias Bolte),<br/> + ESX use virXPathNode*() to simplify XPath handling (Matthias Bolte),<br/> + ESX: make esxVI_GetVirtualMachineIdentity() robust (Matthias Bolte),<br/> + ESX: Fix VMX path parsing and URL encoding (Matthias Bolte),<br/> + VBox driver cleanups (Pritesh Kothari),<br/> + PHYP driver cleanups (Daniel Veillard),<br/> + Move QEMU monitor socket in /var/lib/libvirt/qemu (Daniel P. Berrange),<br/> + xen_internal.c: remove two unused local variables (Jim Meyering),<br/> + mdns.c: remove dead initialization (Jim Meyering),<br/> + node_device_conf.c: remove dead initialization (Jim Meyering),<br/> + openvz_conf.c: don't use undefined local, "net" (Jim Meyering),<br/> + test.c: don't use undefined local, "def" (Jim Meyering),<br/> + remote_internal.c: appease clang (Jim Meyering),<br/> + infra: define ATTRIBUTE_NONNULL to mark non-NULL parameters (Jim Meyering),<br/> + lxc: don't unlink(NULL) in main (Jim Meyering),<br/> + storage_conf.c: avoid overflow upon use of "z" or "Z" (zebi) suffix (Jim Meyering),<br/> + VBox cleanup and update of networking shutdown (Pritesh Kothari),<br/> + Box cleanup and update of networking XML functions (Pritesh Kothari),<br/> + Fix misc OOM bugs (Daniel P. Berrange),<br/> + Misc fixes to secrets API code (Daniel P. Berrange),<br/> + Only add glusterfs dep for Fedora >= 11 (Daniel P. Berrange),<br/> + Remove redundant base64 include file (Daniel P. Berrange),<br/> + Don't assume buffered output echoes the command. (Miloslav Trmač),<br/> + Update chinese, polish and spanish localizations (Daniel Veillard),<br/> + OpenVZ: accept NULL as type for GetMaxVCPUs. (Chris Lalancette),<br/> + Remove use of strncpy in qemudExtractMonitorPath. (Chris Lalancette),<br/> + Refactor policycode auth code to avoid compiler warnings (Daniel P. Berrange),<br/> + spec file: add URL to Source tag (Mark McLoughlin),<br/> + Small fixes for qemu save compression. (Chris Lalancette),<br/> + Fix thinko in PCI hostdev detach (Mark McLoughlin),<br/> + Revert changes to allow pciResetDevice() reset multiple devices (Mark McLoughlin),<br/> + Fix list updating after disk/network/hostdev hot-unplug (Mark McLoughlin),<br/> + Re-name remote_internal.c:driver to remote_driver (Mark McLoughlin),<br/> + Cosmetic change to 'virsh nodedev-list --tree' output (Mark McLoughlin),<br/> + Re-factor hostdev hotplug (Mark McLoughlin),<br/> + Remove a duplicated assignment in Xen PCI parsing. (Chris Lalancette),<br/> + Fix up a few minor indentation issues. (Chris Lalancette),<br/> + Fix phyp escape_specialcharacters. (Chris Lalancette),<br/> + Make openvzGetVPSUUID take a len. (Chris Lalancette),<br/> + Minor cleanup of error path for c_oneVmInfo. (Chris Lalancette),<br/> + Fix up a whitespace in comments in src/console.c (Chris Lalancette),<br/> + Fix up a stray whitespace in virHashGrow. (Chris Lalancette),<br/> + Remove unsafe strncpy from esx_vmx.c (Chris Lalancette),<br/> + Cleanup VIR_LOG_DEBUG parsing in eventtest (Amy Griffis),<br/> + Tighten libvirt's parsing of logging env (Amy Griffis),<br/> + Cleanup structure name naming (Matthias Bolte),<br/> + Add proper OOM reporting for esxDomainGetOSType (Matthias Bolte)<br/> </li> </ul> <h3>0.7.0: Aug 5 2009</h3> -- 2.4.3

Make sure there is always an empty line between sections. --- docs/news.html.in | 288 ++++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 278 insertions(+), 10 deletions(-) diff --git a/docs/news.html.in b/docs/news.html.in index 88dcf9c..d3a6210 100644 --- a/docs/news.html.in +++ b/docs/news.html.in @@ -175,6 +175,7 @@ vmx: Some whitespace cleanup (Matthias Bolte)<br/> </li> </ul> + <h3>1.2.19: Sep 02 2015</h3> <ul> <li>Features:<br/> @@ -404,6 +405,7 @@ cpu: Remove ISA information from CPU map XML (Andrea Bolognani)<br/> </li> </ul> + <h3>v1.2.18: Aug 03 2015</h3> <ul> <li>Features:<br/> @@ -607,6 +609,7 @@ cpu_map.xml: Sort features in x86 CPU models (Jiri Denemark)<br/> </li> </ul> + <h3>1.2.17: Jul 02 2015</h3> <ul> <li>Features:<br/> @@ -2800,6 +2803,7 @@ Remove left over debug in hvsupport.pl script (Daniel P. Berrange)<br/> </li> </ul> + <h3>1.2.10: Nov 3 2014</h3> <ul> <li>Features:<br/> @@ -3022,6 +3026,7 @@ Cleanup maintainers list (Jiri Denemark)<br/> </li> </ul> + <h3>1.2.9: Oct 1 2014</h3> <ul> <li>Features:<br/> @@ -3649,6 +3654,7 @@ domtop: Remove unused variable (Michal Privoznik)<br/> </li> </ul> + <h3>1.2.7: Aug 2 2014</h3> <ul> <li>Features:<br/> @@ -4427,6 +4433,7 @@ virSecurityDACRestoreSecurityHostdevLabel: Unmark @def as unused (Michal Privoznik)<br/> </li> </ul> + <h3>1.2.4: May 4 2014</h3> <ul> <li>Documentation:<br/> @@ -4711,6 +4718,7 @@ qemu: remove unneeded forward declaration (Martin Kletzander)<br/> </li> </ul> + <h3>1.2.3: Apr 1 2014</h3> <ul> <li>Features:<br/> @@ -5145,6 +5153,7 @@ Don't leave empty first line in C source files (Martin Kletzander)<br/> </li> </ul> + <h3>1.2.2: Mar 2 2014</h3> <ul> <li>Features:<br/> @@ -6044,6 +6053,7 @@ virPCIDeviceBindToStub: Remove unused @oldDriverPath and @oldDriverName (Michal Privoznik)<br/> </li> </ul> + <h3>1.1.4: Nov 4 2013</h3> <ul> <li>Features:<br/> @@ -6673,6 +6683,7 @@ daemon: Avoid dead code in polkit auth (Jiri Denemark)<br/> </li> </ul> + <h3>1.1.2: Sep 2 2013</h3> <ul> <li>Features:<br/> @@ -8072,6 +8083,7 @@ Remove redundant () in expression (Daniel P. Berrange)<br/> </li> </ul> + <h3>1.0.5: May 2 2013</h3> <ul> <li>Features:<br/> @@ -8423,6 +8435,7 @@ Remove extraneous comma in info_cpu_stats and opts_cpu_stats (John Ferlan)<br/> </li> </ul> + <h3>1.0.4: Apr 1 2013</h3> <ul> <li>Features:<br/> @@ -8995,8 +9008,8 @@ build: fix make check of remote_protocol-structs (Laine Stump),<br/> spec: Fix minor changelog issues (Jiri Denemark)<br/> </li> - </ul> + <h3>1.0.2: Jan 30 2013</h3> <ul> <li>Features:<br/> @@ -9480,6 +9493,7 @@ conf: minor indentation cleanups (Martin Kletzander)<br/> </li> </ul> + <h3>1.0.1: Dec 17 2012</h3> <ul> <li>Features:<br/> @@ -9865,6 +9879,7 @@ logging.c: Properly indent and ignore one syntax-check rule (Michal Privoznik)<br/> </li> </ul> + <h3>1.0.0: Nov 2 2012</h3> <ul> <li>Features:<br/> @@ -10225,6 +10240,7 @@ Remove pointless virLXCProcessMonitorDestroy method (Daniel P. Berrange)<br/> </li> </ul> + <h3>0.10.2: September 24 2012</h3> <ul> <li>Features:<br/> @@ -11114,6 +11130,7 @@ maint: use full author name for previous commit (Eric Blake)<br/> </li> </ul> + <h3>0.9.13: July 2 2012</h3> <ul> <li>Features:<br/> @@ -11446,6 +11463,7 @@ Revert "rpc: Discard non-blocking calls only when necessary" (Jiri Denemark<br/> </li> </ul> + <h3>0.9.12: May 14 2012</h3> <ul> <li>Features:<br/> @@ -11670,6 +11688,7 @@ gitignore: Reorder alphabetically (Michal Privoznik)<br/> </li> </ul> + <h3>0.9.11: Apr 3 2012</h3> <ul> <li>Features:<br/> @@ -12302,6 +12321,7 @@ Remove tabs from libvirt_public.syms & enforce it (Daniel P. Berrange)<br/> </li> </ul> + <h3>0.9.9: Jan 7 2012</h3> <ul> <li>Features:<br/> @@ -12465,6 +12485,7 @@ network_conf: Fix whitespace to pass syntax-check (Peter Krempa)<br/> </li> </ul> + <h3>0.9.8: Dec 8 2011</h3> <ul> <li>Features:<br/> @@ -12752,6 +12773,7 @@ Remove 'brControl' object (Daniel P. Berrange)<br/> </li> </ul> + <h3>0.9.7: Nov 8 2011</h3> <ul> <li>Features:<br/> @@ -13088,6 +13110,7 @@ <li>Portability:<br/> build: silence warning on 32-bit build (Eric Blake)<br/> </li> + <li>Bug Fixes:<br/> snapshot: fix logic bug in qemu undefine (Eric Blake),<br/> sanlock: fix memory leak (Eric Blake),<br/> @@ -13098,6 +13121,7 @@ qemu: Fix shutdown regression with buggy qemu (Jiri Denemark),<br/> remote: fix crash on OOM (Eric Blake)<br/> </li> + <li>Improvements:<br/> snapshot: also delete empty directory (Eric Blake),<br/> snapshot: remove snapshot metadata on transient exit (Eric Blake),<br/> @@ -13109,6 +13133,7 @@ virsh: Remove useless codes of cmdVolPath (Osier Yang)<br/> </li> </ul> + <h3>0.9.5: Sep 20 2011</h3> <ul> <li>Features:<br/> @@ -13119,6 +13144,7 @@ Add public API for getting migration speed (Jim Fehlig),<br/> Add basic driver for Microsoft Hyper-V (Matthias Bolte)<br/> </li> + <li>Documentation:<br/> virsh: tweak previous domblkstat patch (Eric Blake),<br/> virsh: doc: Fix supported driver types for attach-disk command (Peter Krempa),<br/> @@ -13138,6 +13164,7 @@ use IPv6 addresses in range reserved for documentation (Laine Stump),<br/> describe new virtual switch configuration in network XML docs (Laine Stump)<br/> </li> + <li>Portability:<br/> Update to require sanlock 1.8 for license compliance (Daniel P. Berrange),<br/> build: work around lack of MacOS fdatasync (Eric Blake),<br/> @@ -13155,6 +13182,7 @@ maint: fix some compilation issues on non-linux platforms (Stefan Berger),<br/> Fix detection of GnuTLS 1.x.y (Matthias Bolte)<br/> </li> + <li>Bug Fixes:<br/> Fix crash on events due to allocation errors (Daniel Veillard),<br/> conf: Assign newDef of active domain as persistent conf if it is NULL (Osier Yang),<br/> @@ -13248,6 +13276,7 @@ rpc:fix sasl session relocking intead of unlocking it (Guannan Ren),<br/> daemon: Unlink unix socket paths on shutdown (Osier Yang)<br/> </li> + <li>Improvements:<br/> Remove devname identifier from autogenerated RPC code (Peter Krempa),<br/> maint: Prefer names over email in 'git shortlog' (Eric Blake),<br/> @@ -13465,6 +13494,7 @@ network: eliminate lag in updating dnsmasq hosts files (Laine Stump),<br/> build: update to latest gnulib (Eric Blake)<br/> </li> + <li>Cleanups:<br/> maint: ignore generated files (Eric Blake),<br/> Remove two references to files not generated (Daniel Veillard),<br/> @@ -13912,6 +13942,7 @@ tests: Fix virshtest failure after dominfo changed (Osier Yang)<br/> </li> </ul> + <h3>0.9.3: Jul 4 2011</h3> <ul> <li>Features:<br/> @@ -13926,6 +13957,7 @@ support multifunction PCI device (Wen Congyang),<br/> lxc: various improvements (Cole Robinson)<br/> </li> + <li>Documentation:<br/> Add documentation for configuration lock managers (Daniel P. Berrange),<br/> fix indentation of sub-elements of <ip> in network XML (Laine Stump),<br/> @@ -13940,6 +13972,7 @@ Add doc for video element (Osier Yang),<br/> Make hvsupport.pl pick up the host device drivers (Matthias Bolte)<br/> </li> + <li>Portability:<br/> Explicitly invoke python for API doc generator (Daniel Veillard),<br/> fix virParseVersionString with linux 3.0 (Scott Moser),<br/> @@ -14027,8 +14060,8 @@ daemon: plug memory leak (Eric Blake),<br/> qemu: add missing break statement (Eric Blake),<br/> storage: avoid mishandling backing store > 2GB (Eric Blake)<br/> - </li> + <li>Improvements:<br/> tests: Add a general util test (Matthias Bolte),<br/> util: choose whether to require micro in version strings (Eric Blake),<br/> @@ -14227,6 +14260,7 @@ Use VIR_USE_CPU instead of new wheel (Osier Yang),<br/> Avoid virGetVersion failure on specific driver support configurations (Matthias Bolte)<br/> </li> + <li>Cleanups:<br/> cgroup: silence coverity warning (Eric Blake),<br/> rpc: silence coverity warning (Eric Blake),<br/> @@ -14249,6 +14283,7 @@ esx: Remove duplicated invalid-argument checks (Matthias Bolte)<br/> </li> </ul> + <h3>0.9.2: Jun 6 2011</h3> <ul> <li>Features:<br/> @@ -14261,6 +14296,7 @@ Defining the Screenshot public API (Michal Privoznik),<br/> public API for NMI injection (Lai Jiangshan)<br/> </li> + <li>Documentation:<br/> esx: Fix driver method version annotations (Matthias Bolte),<br/> vbox: Fix typo in error message (Matthias Bolte),<br/> @@ -14278,6 +14314,7 @@ updates to CA cert and client cert/key info (Doug Goldstein),<br/> node filesystem attr is 'accessmode', not 'mode' (Cole Robinson)<br/> </li> + <li>Portability:<br/> vbox: Fix version extraction on Windows for newer VirtualBox versions (Matthias Bolte),<br/> Make dlopen usage in lock manager conditional (Matthias Bolte),<br/> @@ -14303,6 +14340,7 @@ build: fix VPATH build with distributed generated files (Eric Blake),<br/> build: fix VPATH builds (Eric Blake)<br/> </li> + <li>Bug Fixes:<br/> Fix QEMU p2p v2 migration when run from a v3 client (Daniel P. Berrange),<br/> Don't raise an error if the migration cookie is NULL (Daniel P. Berrange),<br/> @@ -14372,6 +14410,7 @@ apparmor: Fix uninitalized variable warning in virt-aa-helper (Matthias Bolte),<br/> Fix qemuMigrationToFile nonull annotation (Daniel P. Berrange)<br/> </li> + <li>Improvements:<br/> API: consolidate common unreleased enums (Eric Blake),<br/> uml: correct command line networking parameters (Heath Petersen),<br/> @@ -14634,6 +14673,7 @@ Make QEMU hotplug use cached qemu capabilities data (Daniel P. Berrange),<br/> Persist qemu capabilities in the domain status file (Daniel P. Berrange)<br/> </li> + <li>Cleanups:<br/> build: silence coverity false positive (Eric Blake),<br/> build: silence coverity false positive (Eric Blake),<br/> @@ -14650,6 +14690,7 @@ build: drop files generated by config.status from tarball (Eric Blake)<br/> </li> </ul> + <h3>0.9.1: May 5 2011</h3> <ul> <li>Features:<br/> @@ -14659,6 +14700,7 @@ various improvements to libxl driver (Markus Groß),<br/> Spice: support audio, images and stream compression (Michal Privoznik)<br/> </li> + <li>Documentation:<br/> fix missing VLAN id for Qbg example (Gerhard Stenzel),<br/> docs: Document filesystem tag device (Cole Robinson),<br/> @@ -14670,6 +14712,7 @@ docs: remove "returns" word from beginning of lines (Jean-Baptiste Rouault),<br/> docs: add an IPv6 address to network XML examples (Laine Stump)<br/> </li> + <li>Portability:<br/> build: fix getcwd portability problems (Eric Blake),<br/> build: avoid test warnings on mingw (Eric Blake),<br/> @@ -14689,6 +14732,7 @@ Fix build for older gcc (Jim Fehlig),<br/> Don't try to enable stack protector on Win32 (Daniel P. Berrange)<br/> </li> + <li>Bug Fixes:<br/> storage: avoid null deref and leak on failure (Eric Blake),<br/> esx: Avoid null dereference on error in esxDomainGetInfo (Matthias Bolte),<br/> @@ -14745,6 +14789,7 @@ Fix typo in systemtap tapset directory name (Daniel P. Berrange),<br/> qemu: Ignore unusable binaries (Jiri Denemark)<br/> </li> + <li>Improvements:<br/> maint: detect clang 2.9 (Eric Blake),<br/> qemu: update qemuCgroupControllerActive signature (Eric Blake),<br/> @@ -14842,6 +14887,7 @@ Allow relative path for qemu backing file (Jesse Cook),<br/> build: detect potentential uninitialized variables (Eric Blake)<br/> </li> + <li>Cleanups:<br/> esx: Disable performance counter queries in esxDomainGetInfo (Matthias Bolte),<br/> esx: Remove dead store in esxUtil_ParseDatastorePath (Matthias Bolte),<br/> @@ -14878,6 +14924,7 @@ Remove possible uninitialized variable in openvz driver (Daniel P. Berrange)<br/> </li> </ul> + <h3>0.9.0: Apr 4 2011</h3> <ul> <li>Features:<br/> @@ -14892,6 +14939,7 @@ Dump the debug buffer to libvirtd.log on fatal signal (Daniel Veillard),<br/> Audit support (Eric Blake)<br/> </li> + <li>Documentation:<br/> fix typo (Eric Blake),<br/> correct invalid xml (Eric Blake),<br/> @@ -14915,6 +14963,7 @@ Fix spelling mistake: seek (Philipp Hahn),<br/> maint: fix grammar in error message (Eric Blake)<br/> </li> + <li>Portability:<br/> virsh: fix mingw failure on creating nonblocking pipe (Eric Blake),<br/> Remove iohelper on Win32 since it is not required (Daniel P. Berrange),<br/> @@ -14931,6 +14980,7 @@ Add check for kill() to fix build of cgroups on win32 (Daniel P. Berrange),<br/> build: fix broken mingw cross-compilation (Eric Blake)<br/> </li> + <li>Bug fixes:<br/> fix memory leak in qemuProcessHandleGraphics() (Wen Congyang),<br/> do not lock vm while allocating memory (Wen Congyang),<br/> @@ -15007,6 +15057,7 @@ virsh: freecell --all getting wrong NUMA nodes count (Michal Privoznik),<br/> remove duplicated call to reportOOMError (Christophe Fergeau)<br/> </li> + <li>Improvements:<br/> Make check_fc_host() and check_vport_capable() usable as rvalues (Guido Günther),<br/> maint: avoid locale-sensitivity in string case comparisons (Eric Blake),<br/> @@ -15208,6 +15259,7 @@ build: Fix VPATH build (Jiri Denemark),<br/> storage: Allow to delete device mapper disk partition (Osier Yang)<br/> </li> + <li>Cleanups:<br/> The next release is 0.9.0 not 0.8.9 (Daniel Veillard),<br/> maint: use space, not tab, in remote_protocol-structs (Eric Blake),<br/> @@ -15507,8 +15559,8 @@ tests: Remove obsolete secaatest (Matthias Bolte),<br/> datatypes: avoid redundant __FUNCTION__ (Eric Blake)<br/> </li> - </ul> + <h3>0.8.7: Jan 4 2011</h3> <ul> <li>Features:<br/> @@ -15727,6 +15779,7 @@ maint: allow 'make syntax-check' to run again (Eric Blake)<br/> </li> </ul> + <h3>0.8.6: Nov 30 2010</h3> <ul> <li>Features:<br/> @@ -15738,6 +15791,7 @@ Add a sysinfo and SMBIOS support (Daniel Veillard),<br/> Implement virsh qemu-monitor-command. (Chris Lalancette)<br/> </li> + <li>Documentation:<br/> updated c# bindings with arnauds latest changes (Justin Clift),<br/> Fix spelling of virBufferAsprintf (Jiri Denemark),<br/> @@ -15759,6 +15813,7 @@ Fix comment for video tag in domain RNG schema (Daniel P. Berrange),<br/> fix typo (Eric Blake)<br/> </li> + <li>Portability:<br/> remote: Fix TLS transport on Windows (Matthias Bolte),<br/> Rename 'remove' param to 'toremove' to avoid clash with stdio.h (Daniel P. Berrange),<br/> @@ -15776,6 +15831,7 @@ build: cleanup declaration of xen tests. (Diego Elio Pettenò),<br/> qemu: check compression program availability of virsh save and dump (KAMEZAWA Hiroyuki)<br/> </li> + <li>Bug Fixes:<br/> correct the arguments of migrate_speed (Wen Congyang),<br/> Fix memory leaks in audit & VirtualBox code (Daniel P. Berrange),<br/> @@ -15817,6 +15873,7 @@ qemu: add the USB devices to the cgroup whitelist (Diego Elio Pettenò),<br/> 802.1Qbg: use pre-associate state at beginning of inc. migr (Stefan Berger)<br/> </li> + <li>Improvements:<br/> Log client errors in libvirtd at debug priority,<br/> maint: prohibit most uses of xmlGetProp (Eric Blake),<br/> @@ -15912,6 +15969,7 @@ OpenVZ: Fix some overwritten error codes (Guido Günther),<br/> OpenVZ: take veid from vmdef-name when defining new domains (Guido Günther)<br/> </li> + <li>Cleanups:<br/> tests: Fix detection of expected errors (Jiri Denemark),<br/> Remove bogus check for Xen in example program (Daniel P. Berrange),<br/> @@ -15949,6 +16007,7 @@ Memory parameter controls (Nikunj A. Dadhania),<br/> portability to OS-X (Justin Clift)<br/> </li> + <li>Documentation:<br/> virsh: improve the help description for managedsave and start (Justin Clift),<br/> updated the C# bindings page with arnauds latest changes (Justin Clift),<br/> @@ -15984,6 +16043,7 @@ improve wording for the dev guide (Justin Clift),<br/> add the app dev guide (Justin Clift)<br/> </li> + <li>Portability:<br/> mingw: Add body for virFork and remove double virDriverLoadModule export (Matthias Bolte),<br/> daemon: exclude requirement for probes.h on systems without systemtap (Justin Clift),<br/> @@ -16001,6 +16061,7 @@ virsh: change wexitstatus order to allow compilation on mac osx (Justin Clift),<br/> build: use portable sed expressions (Eric Blake)<br/> </li> + <li>Bug Fixes:<br/> eliminate possibility of a double-closed file descriptor (Stefan Berger),<br/> qemu: check for vm after starting a job (Eric Blake),<br/> @@ -16030,6 +16091,7 @@ nwfilter bug appearing on big endian machines (Stefan Berger),<br/> Rebuild network filter for UML guests on updates (Soren Hansen)<br/> </li> + <li>Improvements:<br/> vbox: Stop hardcoding a single path for VBoxXPCOMC.so (Matthias Bolte),<br/> Add disk/net resource auditing to QEMU driver (Daniel P. Berrange),<br/> @@ -16148,6 +16210,7 @@ libvirtd: improve the error message displayed on tls client auth failure (Justin Clift),<br/> virsh: Use virBuffer for generating XML (Jiri Denemark)<br/> </li> + <li>Cleanups:<br/> audit: printf warning fix (KAMEZAWA Hiroyuki),<br/> build: use shorter file names for 'make dist' (Eric Blake),<br/> @@ -16185,26 +16248,28 @@ tests: Fix preprocessor indentation (Jiri Denemark)<br/> </li> </ul> + <h3>0.8.4: Sep 10 2010</h3> <ul> <li>Features:<br/> various improvements to UML driver (Soren Hansen)<br/> </li> + <li>Documentation:<br/> docs: fix lxc examples (Serge Hallyn),<br/> docs: mention domain clock improvements (Eric Blake),<br/> docs: fix an incorrect keyword in updated hooks page (Justin Clift),<br/> docs: significant expansion of custom hook script information (Justin Clift)<br/> - </li> + <li>Portability:<br/> cygwin: build fix (Stefan Berger),<br/> build: allow mingw VPATH build (Eric Blake),<br/> Generate libvirt_qemu.def from libvirt_qemu.syms for MinGW builds (Matthias Bolte),<br/> Only require XDR when building libvirtd or the remote driver (Matthias Bolte),<br/> build-sys: fix build when daemon is disabled by not installing libvirtd.8 (Diego Elio Pettenò)<br/> - </li> + <li>Bug Fixes:<br/> Fix block statistics with newer versions of Xen (Guido Günther),<br/> Fix off-by-1 in QEMU boot arg array handling (Daniel P. Berrange),<br/> @@ -16237,8 +16302,8 @@ Fix return value usage (Doug Goldstein),<br/> nodeinfo: skip offline CPUs (Eric Blake),<br/> Do not use boot=on on IDE device (Daniel Veillard)<br/> - </li> + <li>Improvements:<br/> virsh: Option for overriding disk type in attach-disk (Jiri Denemark),<br/> Explicitly pass uml_dir argument to user-mode-linux (Soren Hansen),<br/> @@ -16301,8 +16366,8 @@ Fix return value usage (Doug Goldstein),<br/> qemu: improve error if tun device is missing (Doug Goldstein),<br/> build: rerun bootstrap if po/Makevars got nuked (Eric Blake)<br/> - </li> + <li>Cleanups:<br/> Remove hack to get static binaries in DV environment (Daniel Veillard),<br/> build: avoid uninitialized variable warning (Eric Blake),<br/> @@ -16329,6 +16394,7 @@ phyp: refactor phypListDomainsGeneric to eliminate buffer overflow (Eduardo Otubo)<br/> </li> </ul> + <h3>0.8.3: Aug 4 2010</h3> <ul> <li>Features:<br/> @@ -16336,6 +16402,7 @@ Qemu arbitrary monitor commands. (Chris Lalancette),<br/> Qemu Monitor API entry point. (Chris Lalancette)<br/> </li> + <li>Documentation:<br/> docs: Link wiki FAQ to main page (Cole Robinson),<br/> Document the memory balloon device (Daniel P. Berrange),<br/> @@ -16346,10 +16413,12 @@ html docs: added firewall explanation page by daniel berrange (Justin Clift),<br/> libvirtd: add man page for libvirtd (Justin Clift)<br/> </li> + <li>Portability:<br/> Fix compile on i686. (Chris Lalancette),<br/> daemon: dispatch.c should include stdio.h (and stdarg.h) (Ryota Ozaki)<br/> </li> + <li>Bug fixes:<br/> qemu: Fix PCI address allocation (Jiri Denemark),<br/> Don't leak delay string when freeing virInterfaceBridgeDefs (Laine Stump),<br/> @@ -16400,6 +16469,7 @@ cpuCompare: Fix comparison of two host CPUs (Jiri Denemark),<br/> Fix potential crash in QEMU monitor JSON impl (Daniel P. Berrange)<br/> </li> + <li>Improvements:<br/> OpenVZ: implement suspend/resume driver APIs (Jean-Baptiste Rouault),<br/> esx: Set storage pool target path to host.mountInfo.path (Matthias Bolte),<br/> @@ -16471,6 +16541,7 @@ cpuBaseline: Don't mess with the CPU returned by arch driver (Jiri Denemark),<br/> Make html docs in non-srcdir build (Jiri Denemark)<br/> </li> + <li>Cleanups:<br/> Fix build error in virsh.c (Laine Stump)<br/> Fix virsh error message when -d arg is not numeric (Eric Blake)<br/> @@ -16497,6 +16568,7 @@ Fix build by removing unknown pod2man flag (Daniel P. Berrange)<br/> </li> </ul> + <h3>0.8.2: Jul 5 2010</h3> <ul> <li>Features:<br/> @@ -16507,6 +16579,7 @@ Init script for handling guests on shutdown/boot (Jiri Denemark),<br/> qemu: live migration with non-shared storage for kvm (Kenneth Nagin)<br/> </li> + <li>Documentation:<br/> html docs: add link to PHP bindings by Radek Hladik (Justin Clift),<br/> virsh: document attach-disk better (Eric Blake),<br/> @@ -16528,6 +16601,7 @@ Fix a typo in docs (Ersek Laszlo),<br/> docs: hacking: explain why using curly braces well is important (Jim Meyering)<br/> </li> + <li>Portability:<br/> cgroup: Fix compilation broken on MinGW due to dirent->d_type (Ryota Ozaki),<br/> parthelper: fix compilation without optimization (Eric Blake),<br/> @@ -16547,6 +16621,7 @@ dnsmasqReload: avoid mingw link failure (Eric Blake),<br/> mingw: Fix symbol export (Matthias Bolte)<br/> </li> + <li>Bug Fixes:<br/> Avoid invoking the qemu monitor destroy callback if the constructor fails (Daniel P. Berrange),<br/> cgroup: Add missing errno == ENOENT check in virCgroupRemoveRecursively (Ryota Ozaki),<br/> @@ -16636,6 +16711,7 @@ Fix memory leaks in cmdInterfaceEdit and cmdNWFilterEdit. (Laine Stump),<br/> lxc: Fix failure on starting a domain with multiple interfaces (Ryota Ozaki)<br/> </li> + <li>Improvements:<br/> vbox: Let configure detect/set the XPCOMC directory (Matthias Bolte),<br/> udev: Parse PCI devices even if libpciaccess fails (Cole Robinson),<br/> @@ -16783,6 +16859,7 @@ dnsmasq.c: Fix OOM error reporting (Matthias Bolte),<br/> autobuild.sh: provide default prefix (Eric Blake)<br/> </li> + <li>Cleanups:<br/> lxc: Change VIR_ERROR to VIR_DEBUG for just a debugging message (Ryota Ozaki),<br/> phyp: reduce scope of driver functions (Eric Blake),<br/> @@ -16851,18 +16928,21 @@ build: silence a clang false positive (Eric Blake)<br/> </li> </ul> + <h3>0.8.1: Apr 30 2010</h3> <ul> <li>Features:<br/> Add virDomainGetBlockInfo API to query disk sizing (Daniel P. Berrange),<br/> Starts dnsmasq from libvirtd with --dhcp-hostsfile option (Satoru SATOH)<br/> </li> + <li>Documentation:<br/> cleanup the download section of the documentation (Daniel Veillard),<br/> Fix messsage as message. (Chris Lalancette),<br/> Fix up a debug typo. (Chris Lalancette),<br/> add nwfilter functions to virsh man page (Stefan Berger)<br/> </li> + <li>Portability:<br/> Fix build on Ubuntu. (Chris Lalancette),<br/> cygwin/mingw: Fix version script handling (Matthias Bolte),<br/> @@ -16881,6 +16961,7 @@ Fix build of openvz on RHEL-5. (Chris Lalancette),<br/> Fix spec file for builds without lxc (Daniel Berteaud)<br/> </li> + <li>Bug Fixes:<br/> domain: Fix PCI address decimal parsing regression (Cole Robinson),<br/> Fix virt-pki-validate's determination of CN (Dustin Kirkland),<br/> @@ -16928,6 +17009,7 @@ esxVMX_GatherSCSIControllers: avoid NULL dereference (Jim Meyering),<br/> Fix nodeinfotest on NUMA machines (Daniel P. Berrange)<br/> </li> + <li>Improvements:<br/> Add support for another explicit IO error event (Daniel P. Berrange),<br/> Report all errors in SELinuxRestoreSecurityFileLabel (Jiri Denemark),<br/> @@ -16994,6 +17076,7 @@ Consolidate interface related functions in interface.c (Stefan Berger),<br/> build: include usleep gnulib module (Eric Blake)<br/> </li> + <li>Cleanups:<br/> qemudDomainSaveFlag: remove dead store (Jim Meyering),<br/> Remove unused goto label from qemudDomainCreate (Daniel P. Berrange),<br/> @@ -17026,6 +17109,7 @@ build: fix syntax-check problems (Eric Blake)<br/> </li> </ul> + <h3>0.8.0: Apr 12 2010</h3> <ul> <li>Features:<br/> @@ -17382,8 +17466,8 @@ xenXMDomainConfigParse: avoid dead store (Jim Meyering),<br/> qemuMonitorTextGetMemoryStats: decrease risk of false positive in parsing (Jim Meyering)<br/> </li> - </ul> + <h3>0.7.7: Mar 5 2010</h3> <ul> <li>Features:<br/> @@ -17645,6 +17729,7 @@ esx: Cleanup preprocessing structure in esxVI_EnsureSession (Matthias Bolte)<br/> </li> </ul> + <h3>0.7.6: Feb 3 2010</h3> <ul> <li>Features:<br/> @@ -17891,8 +17976,8 @@ esx: Don't warn about an empty URI path (Matthias Bolte),<br/> qemu_driver.c: remove useless, warning-provoking test (Jim Meyering)<br/> </li> - </ul> + <h3>0.7.5: Dec 23 2009</h3> <ul> <li>Features:<br/> @@ -18059,8 +18144,8 @@ Pull schedular affinity code out into a separate module (Daniel P. Berrange),<br/> Ignore docs/ directory for strcmp() syntax check (Daniel P. Berrange)<br/> </li> - </ul> + <h3>0.7.4: Nov 20 2009</h3> <ul> <li>Features:<br/> @@ -18296,6 +18381,7 @@ Don't copy old machines from a domain which has none (Mark McLoughlin)<br/> </li> </ul> + <h3>0.7.3: Nov 20 2009</h3> <ul> <li>Broken release, use 0.7.4<br/> @@ -18512,6 +18598,7 @@ Compressed save image format for Qemu (Chris Lalancette, Charles Duffy and Jim Meyering),<br/> QEmu add host PCI device hotplug support (Mark McLoughlin)<br/> </li> + <li>Documentation:<br/> Minor comment changes (Laine Stump),<br/> Fix up virNodeGetCellsFreeMemory (Chris Lalancette),<br/> @@ -18522,9 +18609,11 @@ Add link to AbiCloud web management system (Daniel P. Berrange),<br/> Update logging documentation (Amy Griffis)<br/> </li> + <li>Portability:<br/> Fix win32 platform build (Daniel P. Berrange)<br/> </li> + <li>Bug fixes:<br/> VBox bug when starting machine from old versions (Pritesh Kothari),<br/> ESX avoid potential leaks (Matthias Bolte),<br/> @@ -18575,6 +18664,7 @@ Several fixes to libvirtd's log setup (Amy Griffis),<br/> Fix memleak if esxOpen fails (Matthias Bolte)<br/> </li> + <li>Improvement:<br/> support lzop save compression for qemu (Charles Duffy),<br/> VBox 3.0.6 API change support (Pritesh Kothari),<br/> @@ -18641,6 +18731,7 @@ Split virDomainMigrate into functions. (Chris Lalancette),<br/> Consolidate code for parsing the logging env (Amy Griffis)<br/> </li> + <li>Cleanups:<br/> Remove accidentally added UUID re-definition in storage schema (Daniel P. Berrange),<br/> ESX cleanup of CPU model strings (Matthias Bolte),<br/> @@ -18729,6 +18820,7 @@ Add proper OOM reporting for esxDomainGetOSType (Matthias Bolte)<br/> </li> </ul> + <h3>0.7.0: Aug 5 2009</h3> <ul> <li>New features:<br/> @@ -18743,6 +18835,7 @@ Storage cloning for LVM and Disk backends (Cole Robinson),<br/> Switching to GIT (Jim Meyering)<br/> </li> + <li>Documentation:<br/> Typo and comment fixes (Aron Griffis),<br/> Fix virCapabilitiesDefaultGuestMachine documentation. (Chris Lalancette),<br/> @@ -18759,6 +18852,7 @@ Update links to bugzilla (Garry Dolley),<br/> Update the links for RHEL libvirt bugzillas (Garry Dolley)<br/> </li> + <li>Portability:<br/> Xen Inotify support needs sys/inotify.h (Maximilian Wilhelm),<br/> Workaround for broken GCC in Debian Etch (Maximilian Wilhelm),<br/> @@ -18774,6 +18868,7 @@ Rename variable for compilation in Mingw32 (Laine Stump),<br/> rpm spec cleanup and split off client only package (Daniel Veillard)<br/> </li> + <li>Bug fixes:<br/> Add uniqueness checking for LXC define/create methods (Daniel P. Berrange),<br/> Fix removal of transient VMs when LXC aborts (Daniel P. Berrange),<br/> @@ -18827,6 +18922,7 @@ storage: Fix deadlock when cloning across pools. (Cole Robinson),<br/> Update modified mac address in place in virGetInterface (Laine Stump)<br/> </li> + <li>Improvements:<br/> Add an allocation unit when calling qemu-img (Ryota Ozaki),<br/> Improve diagnostics when pidfile writing fails (Daniel P. Berrange),<br/> @@ -18921,6 +19017,7 @@ Use virFileReadAll/virFileWriteStr for key cgroup read/write helpers (Daniel P. Berrange),<br/> virGetinterface matching of MAC and interface name (Laine Stump)<br/> </li> + <li>Cleanups:<br/> Fix configure checks from previous commits (Daniel P. Berrange),<br/> Avoid a warning if compiling without inotify (Daniel P. Berrange),<br/> @@ -18989,15 +19086,18 @@ use gnumakefile and maintainer-makefile modules from gnulib (Jim Meyering)<br/> </li> </ul> + <h3>0.6.5: Jul 3 2009</h3> <ul> <li>New features:<br/> create storage columes on disk backend (Henrik Persson),<br/> drop of capabilities based on libcap-ng when possible (Daniel Berrange)<br/> </li> + <li>Portability:<br/> fix build on non-Linux targets (Daniel Berrange)<br/> </li> + <li>Documentation:<br/> typo and english fixes (Runa Bhattacharjee and Garry Dolley),<br/> Docs on extending APIs (Dave Allan),<br/> @@ -19005,6 +19105,7 @@ add HACKING doc to the website (Daniel Berrange),<br/> documentation for OpenNebula driver (Abel Miguez Rodriguez)<br/> </li> + <li>Bug fixes:<br/> forbid autostart on transcient networks,<br/> xen device removal crash (Daniel Berrange),<br/> @@ -19030,6 +19131,7 @@ endless loop in node device XML dump (Cole Robinson),<br/> Re-label shared and readonly images (Dan Berrange)<br/> </li> + <li>Improvements:<br/> create and destroy NPIV support (David Allan),<br/> networking in UML driver (Daniel Berrange),<br/> @@ -19050,6 +19152,7 @@ skip labelling if no src path (Cole Robinson),<br/> add arm emulation if qemu-system-arm is present (C.J. Adams-Collier)<br/> </li> + <li>Cleanups:<br/> daemon check logging env variables (Daniel Berrange),<br/> User Mode Linux start and stop cleanups (Daniel Berrange),<br/> @@ -19061,6 +19164,7 @@ cleanups and updates on OpenNebula driver (Daniel Berrange and Abel Miguez Rodriguez)<br/> </li> </ul> + <h3>0.6.4: May 29 2009</h3> <ul> <li>New features:<br/> @@ -19070,16 +19174,19 @@ APIs for domain XML conversions (Daniel Berrange),<br/> initial version of OpenNebula driver (Abel Miguez Rodriguez)<br/> </li> + <li>Portability:<br/> better compiler warning selection (Daniel Berrange),<br/> Win32 portability fixes (Daniel Berrange)<br/> </li> + <li>Documentation:<br/> documentation for <sound> device XML format (Cole Robinson),<br/> storage format documentation fixes (Ryota Ozaki),<br/> docs for XML conversion APIs (Daniel Berrange),<br/> inconsistencies in storage volume docs and schemas (Ryota Ozaki)<br/> </li> + <li>Bug fixes:<br/> fix hostdev managed handling (Mark McLoughlin),<br/> lxc_controller should not cash without args (Guido Gunther),<br/> @@ -19099,6 +19206,7 @@ various fixes in domain and network startup error report (Cole Robinson),<br/> double free on unexpected client disconnect (Daniel Berrange)<br/> </li> + <li>Improvements:<br/> cleanups and doc on virExec (Cole Robinson),<br/> error reporting in QEmu migrations (Cole Robinson),<br/> @@ -19125,6 +19233,7 @@ python domain events example and binding (Daniel Berrange),<br/> PPC Qemu Machine Type update (Thomas Baker)<br/> </li> + <li>Cleanups:<br/> strings bug in virsh (Daniel Berrange),<br/> various cleanups in storage code (Cole Robinson),<br/> @@ -19138,16 +19247,19 @@ OpenNebula driver cleanups (Daniel Berrange)<br/> </li> </ul> + <h3>0.6.3: Apr 24 2009</h3> <ul> <li>New features:<br/> VirtualBox driver support (Pritesh Kothari),<br/> virt-xml-validate new command (Daniel Berrange)<br/> </li> + <li>Portability:<br/> patch to build on Centos (Joseph Shraibman),<br/> build breakage (Anton Protopopov)<br/> </li> + <li>Documentation:<br/> Linux Containers documentation (Serge Hallyn),<br/> improvement and updates of architecture pages,<br/> @@ -19156,6 +19268,7 @@ man page typo (Robert P. J. Day),<br/> VirtualBox Documentation (Pritesh Kothari)<br/> </li> + <li>Bug fixes:<br/> veth off-by-one error (Dan Smith),<br/> vcpupin to inactive Xen crash (Takahashi Tomohiro),<br/> @@ -19166,6 +19279,7 @@ QEmu pidfile handling bugs (Daniel Berrange),<br/> network config handling on old Xen (Daniel Berrange)<br/> </li> + <li>Improvements:<br/> add SCSI storage rescan (David Allan),<br/> rootless LXC containers support improvements (Serge Hallyn),<br/> @@ -19178,11 +19292,13 @@ LXC use of private /dev/pts when available (Daniel Berrange),<br/> virNodeDeviceCreateXML and virNodeDeviceDestroy entry points (Dave Allan)<br/> </li> + <li>Cleanups:<br/> don't hardcode getgrnam_r buffer to 1024 bytes (Guido Günther),<br/> qemudBuildCommandLine API cleanup (Daniel Berrange)<br/> </li> </ul> + <h3>0.6.2: Apr 3 2009</h3> <ul> <li>New features:<br/> @@ -19191,15 +19307,18 @@ SCSI HBA storage pool support (Dave Allan),<br/> PCI passthrough in Xen driver (Daniel Berrange)<br/> </li> + <li>Portability:<br/> be more flexible in QEmu binaries paths (Daniel Berrange),<br/> Mingw portability fixes (Daniel Berrange)<br/> </li> + <li>Documentation:<br/> add security attributes in RNG schemas,<br/> cleanup of architecture docs,<br/> missing disk bus values in RNG schemas<br/> </li> + <li>Bug fixes:<br/> tap vs vbd type on block detach (Cole Robinson and Takahashi Tomohiro),<br/> bad free on storage volume error (Daniel Berrange),<br/> @@ -19223,6 +19342,7 @@ test driver domain restore return value (Cole Robinson),<br/> do not lose file format info on volume refresh (Cole Robinson)<br/> </li> + <li>Improvements:<br/> get CPU usage info for LXC (Ryota Ozaki),<br/> fix domain RNG to add ac97 and tests (Pritesh Kothari),<br/> @@ -19236,6 +19356,7 @@ add --console arg for create and start virsh commands (Daniel Berrange),<br/> refresh volume alloc/capacity when dumping XML (Cole Robinson)<br/> </li> + <li>Cleanups:<br/> FILE * leaks removal,<br/> unused parameters flagging (Maximilian Wilhelm),<br/> @@ -19243,17 +19364,20 @@ symlinks resolving cleanup (Daniel Berrange)<br/> </li> </ul> + <h3>0.6.1: Mar 3 2009</h3> <ul> <li>New features:<br/> new APIs for Node device detach reattach and reset (Mark McLoughlin),<br/> sVirt mandatory access control support (James Morris and Dan Walsh)<br/> </li> + <li>Portability:<br/> non gcc toolchain (John Levon),<br/> gcc-4.4 warnings fixes (Mark McLoughlin),<br/> fix build without LXC and QEmu (Jim Meyering)<br/> </li> + <li>Documentation:<br/> man page bugzilla URL (Mark McLoughlin),<br/> typo in domain format (Jesse Farinacci),<br/> @@ -19262,6 +19386,7 @@ static host IP (Charles Duffy),<br/> new example program (David Allan)<br/> </li> + <li>Bug fixes:<br/> NULL dereference in LXC (Jim Meyering),<br/> fix domain error reporting (John Levon),<br/> @@ -19276,6 +19401,7 @@ mark defined network descriptions as persistent (Cole Robinson),<br/> qemu+tls handshake negotiation hang (Chris Lalancette)<br/> </li> + <li>Improvements:<br/> don't hardcode ssh port (Guido Günther),<br/> new test cases and testing infrastructure (Jim Meyering),<br/> @@ -19296,6 +19422,7 @@ recognize ejectable media in hostdev hal driver (Cole Robinson),<br/> integration of sVirt (Daniel Berrange)<br/> </li> + <li>Cleanups:<br/> printf NULL string checks (John Levon),<br/> remove uses of strerror and use virStrerror (Jim Meyering),<br/> @@ -19316,6 +19443,7 @@ cleanups on new APIs for Node device (Daniel Berrange)<br/> </li> </ul> + <h3>0.6.0: Jan 31 2009</h3> <ul> <li>New features:<br/> @@ -19325,6 +19453,7 @@ support copy-on-write storage volumes (Daniel Berrange),<br/> support of storage cache control options for QEmu/KVM (Daniel Berrange)<br/> </li> + <li>Portability:<br/> fix old DBus API problem,<br/> Debian portability fix (Daniel Berrange),<br/> @@ -19338,6 +19467,7 @@ solaris Xen fixes (John Levon),<br/> RPC portability to Solaris (Daniel Berrange)<br/> </li> + <li>Documentation:<br/> typo fixes (Richard Jones),<br/> logging support,<br/> @@ -19347,6 +19477,7 @@ libvirt-qpid and UML driver documentation (Daniel Berrange),<br/> provide RNG schemas for all XML formats used in libvirt APIs (Daniel Berrange)<br/> </li> + <li>Bug fixes:<br/> segfault on virtual network without bridge name (Cole Robinson),<br/> various locking fixes (Cole Robinson),<br/> @@ -19368,6 +19499,7 @@ various xen driver fixes (Daniel Berrange),<br/> some memory leak fixes (Daniel Berrange)<br/> </li> + <li>Improvements:<br/> driver infrastructure and locking (Daniel Berrange),<br/> Test driver infrastructure (Daniel Berrange),<br/> @@ -19393,6 +19525,7 @@ support VNC password settings for QEmu/KVM (Daniel Berrange),<br/> qemu driver version reporting (Daniel Berrange)<br/> </li> + <li>Cleanups:<br/> converting linked lists to arrays (Daniel Berrange),<br/> daemon RPC handling refactoring (Daniel Berrange),<br/> @@ -19427,6 +19560,7 @@ QEmu driver init cleanups (Daniel Berrange)<br/> </li> </ul> + <h3>0.5.1: Dec 4 2008</h3> <ul> <li>Portability:<br/> @@ -19434,9 +19568,11 @@ fix compilation with new NUMA libraries (Daniel Berrange),<br/> udev compatibility for RHEL (Chris Lalancette)<br/> </li> + <li>Documentation:<br/> documentation copy and paste errors and typo (Cole Robinson)<br/> </li> + <li>Bug fixes:<br/> add a delay in storage backend for disks to show up (Chris Lalancette),<br/> fix parsing for CDRom device with no source (Daniel Berrange),<br/> @@ -19446,6 +19582,7 @@ fix UML inotify code (Daniel Berrange),<br/> crash when adding storage without a format (Cole Robinson)<br/> </li> + <li>Improvements:<br/> use xend preferably to hypervisor call to set Xen max memory (Jim Fehlig),<br/> allow remote://hostname/ URI for automatic probe of hypervisors (Daniel Berrange),<br/> @@ -19455,10 +19592,12 @@ improve MTU setting on tap interfaces (Eduardo Habkost),<br/> increase timeout for initial QEmu monitor poll (Cole Robinson)<br/> </li> + <li>Cleanups:<br/> fix improper initialisations (Jim Meyering)<br/> </li> </ul> + <h3>0.5.0: Nov 25 2008</h3> <ul> <li>New features:<br/> @@ -19469,6 +19608,7 @@ User Mode Linux driver (Daniel Berrange),<br/> API for node device enumeration using HAL and DeviceKit with python bindings (David Lively)<br/> </li> + <li>Portability:<br/> RHEL build fixes,<br/> VPATH build (Guido Gunther),<br/> @@ -19478,6 +19618,7 @@ sys/poll.h portability fixes (Daniel Berrange),<br/> gnulib and mingw cleanups (Jim Meyering)<br/> </li> + <li>Documentation:<br/> virsh man page cleanups (Mark McLoughlin),<br/> doc for NIC model selection (Richard Jones),<br/> @@ -19486,6 +19627,7 @@ inew APIs,<br/> UML driver docs (Daniel Berrange)<br/> </li> + <li>Bug fixes:<br/> Xen interfaces ordering (Jim Fehlig),<br/> startup timeout with multiple pty (Cole Robinson),<br/> @@ -19503,6 +19645,7 @@ a couple of memory leaks on QEmu vnc (Jim Meyering),<br/> lvs parsing fixes (Cole Robinson)<br/> </li> + <li>Improvements:<br/> LXC resources control and internal cgroup API (Dan Smith),<br/> virDomainCreateLinux renamed virDomainDefineXML,<br/> @@ -19535,6 +19678,7 @@ tweaks to node device implementation (Daniel Berrange),<br/> OpenVZ vCPUs values init (Evgeniy Sokolov)<br/> </li> + <li>Cleanups:<br/> C99 initializers (Guido Gunther),<br/> test output (Cole Robinson),<br/> @@ -19565,21 +19709,25 @@ add some missing functions comments (Jim Meyering)<br/> </li> </ul> + <h3>0.4.6: Sep 23 2008</h3> <ul> <li>Documentation:<br/> fix some comments in API (Anton Protopopov),<br/> cleanup and extension of bindings and windows pages (Richard Jones)<br/> </li> + <li>Portability:<br/> missing include file (Richard Jones)<br/> </li> + <li>Bug fixes:<br/> avoid a segfault if missing qemu emulator (Cole Robinson),<br/> reading vncdisplay from xend domain (Cole Robinson),<br/> segfault in OpenVZ (Evgeniy Sokolov),<br/> fix parsing of pool without a source (Chris Lalancette and Daniel Berrange)<br/> </li> + <li>Improvements:<br/> add storage disk volume delete (Cole Robinson),<br/> KVM dynamic max CPU detection (Guido Günther),<br/> @@ -19588,6 +19736,7 @@ network config in OpenVZ support (Evgeniy Sokolov),<br/> enable stopping a pool in logical storage backend and cleanup deletion of pool (Chris Lalancette)<br/> </li> + <li>Cleanups:<br/> deadcode removal (Nguyen Anh Quynh),<br/> fix one test case (Daniel Berrange),<br/> @@ -19595,6 +19744,7 @@ structure initialization cleanup (Chris Lalancette)<br/> </li> </ul> + <h3>0.4.5: Sep 8 2008</h3> <ul> <li>New features:<br/> @@ -19605,6 +19755,7 @@ USB device passthrough for QEmu/KVM (Guido Günther),<br/> storage pool source discovery (David Lively)<br/> </li> + <li>Portability:<br/> fixes for MinGW (Atsushi SAKAI and Daniel Berrange),<br/> detection of xen lib improvement (David Lively),<br/> @@ -19615,6 +19766,7 @@ HTML generation fix,<br/> -lpthread explicit linking when needed (Jim Meyering)<br/> </li> + <li>Documentation:<br/> various typo fixes (Anton Protopopov, Toth István, Atsushi SAKAI, Nguyen Anh Quynh),<br/> Java bindings docs,<br/> @@ -19624,6 +19776,7 @@ how to contribute to open source link (Richard Jones),<br/> memory unit fixups (matthew chan)<br/> </li> + <li>Bug fixes:<br/> memory leaks and testing for OOM (Daniel Berrange),<br/> do_open driver bug (Evgeniy Sokolov),<br/> @@ -19667,6 +19820,7 @@ Fix Xen domains without PVFB console (Daniel Berrange),<br/> OpenVZ config read bug fix (Evgeniy Sokolov)<br/> </li> + <li>Improvements:<br/> improved failure diagnostic for TAP (Jim Meyering),<br/> better exec and error diagnostic for OpenVZ commands (Evgeniy Sokolov),<br/> @@ -19692,6 +19846,7 @@ Augeas config file support (Daniel Berrange),<br/> support for a domain name in network config (JJ Reynolds)<br/> </li> + <li>Cleanups:<br/> Python verbosity cleanup (Ryan Scott),<br/> space and tabs cleanups (Atsushi SAKAI),<br/> @@ -19712,6 +19867,7 @@ new convenience virFileReadLimFD function (Jim Meyering)<br/> </li> </ul> + <h3>0.4.4: Jun 25 2008</h3> <ul> <li>Bug fixes:<br/> @@ -19721,16 +19877,19 @@ xen list APIs when max is zero,<br/> string escape problems in the xm driver<br/> </li> + <li>Improvements:<br/> add autogen to tarballs,<br/> improve iSCSI support (Chris Lalancette),<br/> localization updates<br/> </li> + <li>Cleanups:<br/> const-ness fixed (Daniel P. Berrange),<br/> string helpers for enumerations (Daniel P. Berrange)<br/> </li> </ul> + <h3>0.4.3: Jun 12 2008</h3> <ul> <li>New features:<br/> @@ -19742,6 +19901,7 @@ support for NUMA and vCPU pinning in QEmu (Daniel Berrange),<br/> new virDomainBlockPeek API (Richard Jones)<br/> </li> + <li>Documentation:<br/> coding guidelines (Jim Meyering and Richard Jones),<br/> small man page missing entries and cleanup,<br/> @@ -19753,6 +19913,7 @@ XML domain docs revamp (Daniel Berrange),<br/> docs for remote listen-tls/tcp fixes (Kenneth Nagin)<br/> </li> + <li>Bug fixes:<br/> save change to config file for Xen (Ryan Scott),<br/> fix /var/run/libvirt/ group ownership (Anton Protopopov),<br/> @@ -19771,6 +19932,7 @@ let xend check block device syntax (Hiroyuki Kaguchi),<br/> UUIDString for python fixes (Cole Robinson)<br/> </li> + <li>Improvements:<br/> fixes for MinGW compilation (Richard Jones),<br/> autostart for running Xen domains (Cole Robinson),<br/> @@ -19779,6 +19941,7 @@ autostart status printed in virsh domainfo (Shigeki Sakamoto),<br/> better error messages for xend driver (Richard Jones)<br/> </li> + <li>Code cleanups:<br/> OpenVZ compilation (Richard Jones),<br/> conn dom and net fields deprecation in error structures (Richard Jones),<br/> @@ -19811,17 +19974,20 @@ missing driver entry points (Daniel Berrange)<br/> </li> </ul> + <h3>0.4.2: Apr 8 2008</h3> <ul> <li>New features:<br/> memory operation for QEmu/KVM driver (Cole Robinson),<br/> new routed networking schemas (Mads Olesen)<br/> </li> + <li>Documentation:<br/> storage documentation fixes (Atsushi Sakai),<br/> many typo cleanups (Atsushi Sakai),<br/> string fixes (Francesco Tombolini)<br/> </li> + <li>Bug fixes:<br/> pointer errors in qemu (Jim Meyering),<br/> iSCSI login fix (Chris Lalancette),<br/> @@ -19839,6 +20005,7 @@ do not ask polkit auth when root (Daniel Berrange),<br/> handling of fork and pipe errors when starting the daemon (Richard Jones)<br/> </li> + <li>Improvements:<br/> better validation of MAC addresses (Jim Meyering and Hiroyuki Kaguchi),<br/> virsh vcpupin error report (Shigeki Sakamoto),<br/> @@ -19857,6 +20024,7 @@ NUMA support in test driver (Cole Robinson),<br/> xen and hvm added to test driver capabilities (Cole Robinson)<br/> </li> + <li>Code cleanup:<br/> remove unused getopt header (Jim Meyering),<br/> mark more strings as translatable (Guido Günther and Jim Meyering),<br/> @@ -19865,6 +20033,7 @@ last error initializer (Guido Günther)<br/> </li> </ul> + <h3>0.4.1: Mar 3 2008</h3> <ul> <li>New features:<br/> @@ -19872,12 +20041,14 @@ storage management (Daniel Berrange),<br/> Xenner - Xen on KVM - support (Daniel Berrange)<br/> </li> + <li>Documentation:<br/> Fix of various typos (Atsushi SAKAI),<br/> memory and vcpu settings details (Richard Jones),<br/> ethernet bridging typo (Maxwell Bottiger),<br/> add storage APIs documentation (Daniel Berrange)<br/> </li> + <li>Bug fixes:<br/> OpenVZ code compilation (Mikhail Pokidko),<br/> crash in policykit auth handling (Daniel Berrange),<br/> @@ -19900,6 +20071,7 @@ MAC addresses checks (Shigeki Sakamoto and Richard Jones),<br/> allow to read non-seekable files (Jim Meyering)<br/> </li> + <li>Improvements:<br/> Windows build (Richard Jones),<br/> KVM/QEmu shutdown (Guido Guenther),<br/> @@ -19918,6 +20090,7 @@ block device statistics for QEmu/KVM (Richard Jones),<br/> various improvements for Xenner (Daniel Berrange)<br/> </li> + <li>Code cleanups:<br/> avoid warnings (Daniel Berrange),<br/> virRun helper function (Dan Berrange),<br/> @@ -19947,6 +20120,7 @@ cleanup of various leaks (Jim Meyering)<br/> </li> </ul> + <h3>0.4.0: Dec 18 2007</h3> <ul> <li>New features:<br/> @@ -19955,6 +20129,7 @@ SASL based authentication for libvirt remote support (Daniel Berrange),<br/> PolicyKit authentication (Daniel Berrange)<br/> </li> + <li>Documentation:<br/> example files for QEMU and libvirtd configuations (Daniel Berrange),<br/> english cleanups (Jim Paris),<br/> @@ -19968,6 +20143,7 @@ Windows support page (Richard Jones),<br/> authentication documentation updates (Daniel Berrange)<br/> </li> + <li>Bug fixes:<br/> NUMA topology error handling (Beth Kon),<br/> NUMA topology cells without CPU (Beth Kon),<br/> @@ -20003,6 +20179,7 @@ credential handling fixes (Daniel Berrange),<br/> fix compatibility with Xen 3.2.0 (Daniel Berrange)<br/> </li> + <li>Improvements:<br/> /etc/libvirt/qemu.conf configuration for QEMU driver (Daniel Berrange),<br/> NUMA cpu pinning in config files (DV and Saori Fukuta),<br/> @@ -20015,6 +20192,7 @@ add extra utility functions to buffer (Richard Jones),<br/> separate qparams module for handling query parameters (Richard Jones)<br/> </li> + <li>Code cleanups:<br/> remove virDomainRestart from API as it was never used (Richard Jones),<br/> constify params for attach/detach APIs (Daniel Berrange),<br/> @@ -20044,16 +20222,19 @@ use a variable name as sizeof argument (Jim Meyering)<br/> </li> </ul> + <h3>0.3.3: Sep 30 2007</h3> <ul> <li>New features:<br/> Avahi mDNS daemon export (Daniel Berrange),<br/> NUMA support (Beth Kan)<br/> </li> + <li>Documentation:<br/> cleanups (Toth Istvan),<br/> typos (Eduardo Pereira)<br/> </li> + <li>Bug fixes:<br/> memory corruption on large dumps (Masayuki Sunou),<br/> fix virsh vncdisplay command exit (Masayuki Sunou),<br/> @@ -20067,6 +20248,7 @@ fix potential crash on multiple input XML tags (Daniel Berrange),<br/> Solaris Xen hypercalls fixup (Mark Johnson)<br/> </li> + <li>Improvements:<br/> OpenVZ support (Shuveb Hussain and Anoop Cyriac),<br/> CD-Rom reload on XEn (Hugh Brock),<br/> @@ -20082,11 +20264,13 @@ vncpasswd extraction in configuration files if secure (Mark Johnson and Daniel Berrange),<br/> Python bindings for block and interface statistics<br/> </li> + <li>Code cleanups:<br/> virDrvOpenRemoteFlags definition (Richard Jones),<br/> configure tests and output (Daniel Berrange)<br/> </li> </ul> + <h3>0.3.2: Aug 21 2007</h3> <ul> <li>New features:<br/> @@ -20094,11 +20278,13 @@ added API for migration (Richard Jones),<br/> added APIs for block device and interface statistic (Richard Jones)<br/> </li> + <li>Documentation:<br/> examples for XML network APIs,<br/> fix typo and schedinfo synopsis in man page (Atsushi SAKAI),<br/> hypervisor support page update (Richard Jones)<br/> </li> + <li>Bug fixes:<br/> remove a couple of leaks in QEmu/KVM backend (Daniel berrange),<br/> fix GnuTLS 1.0 compatibility (Richard Jones),<br/> @@ -20112,6 +20298,7 @@ XenStore query memory leak (Masayuki Sunou),<br/> virsh schedinfo cleanup (Saori Fukuta)<br/> </li> + <li>Improvement:<br/> virsh new ttyconsole command,<br/> networking API implementation for test driver (Daniel berrange),<br/> @@ -20122,12 +20309,14 @@ augment XML dumps with interface devices names (Richard Jones),<br/> internal API to query drivers for features (Richard Jones)<br/> </li> + <li>Cleanups:<br/> Improve virNodeGetInfo implentation (Daniel berrange),<br/> general UUID code cleanup (Daniel berrange),<br/> fix API generator file selection<br/> </li> </ul> + <h3>0.3.1: Jul 24 2007</h3> <ul> <li>Documentation:<br/> @@ -20137,6 +20326,7 @@ document VIRSH_DEFAULT_CONNECT_URI in virsh man page (David Lutterkort),<br/> Relax-NG early grammar for the network XML (David Lutterkort)<br/> </li> + <li>Bug fixes:<br/> leaks in disk XML parsing (Masayuki Sunou),<br/> hypervisor alignment call problems on PPC64 (Christian Ehrhardt),<br/> @@ -20146,6 +20336,7 @@ avoid caching problem in remote daemon (Daniel Berrange),<br/> avoid crash after QEmu domain failure (Daniel Berrange)<br/> </li> + <li>Improvements:<br/> checks of x509 certificates and keys (Daniel Berrange),<br/> error reports in the daemon (Daniel Berrange),<br/> @@ -20157,6 +20348,7 @@ range check in credit scheduler (with Saori Fukuta and Atsushi Sakai),<br/> add support for listen VNC parameter un QEmu and fix command line arg (Daniel Berrange)<br/> </li> + <li>Cleanups:<br/> debug tracing (Richard Jones),<br/> removal of --with-qemud-pid-file (Richard Jones),<br/> @@ -20165,18 +20357,21 @@ xen header location detection (Richard Jones)<br/> </li> </ul> + <h3>0.3.0: Jul 9 2007</h3> <ul> <li>Features:<br/> Secure Remote support (Richard Jones). See <a href="http://libvirt.org/remote.html">the remote page</a> of the documentation<br/> </li> + <li>Documentation:<br/> remote support (Richard Jones),<br/> description of the URI connection strings (Richard Jones),<br/> update of virsh man page,<br/> matrix of libvirt API/hypervisor support with version information (Richard Jones)<br/> </li> + <li>Bug fixes:<br/> examples Makefile.am generation (Richard Jones),<br/> SetMem fix (Mark Johnson),<br/> @@ -20191,6 +20386,7 @@ configCache refill bug (Richard Jones),<br/> fix XML serialization bugs<br/> </li> + <li>Improvements:<br/> QEmu switch to XDR-based protocol (Dan Berrange),<br/> device attach/detach commands (Masayuki Sunou),<br/> @@ -20199,6 +20395,7 @@ reunitifaction of remote and qemu daemon under a single libvirtd with a config file (Daniel Berrange),<br/> Localization updates<br/> </li> + <li>Cleanups:<br/> parsing of connection URIs (Richard Jones),<br/> messages from virsh (Saori Fukuta),<br/> @@ -20223,6 +20420,7 @@ revamp of xen subdrivers interfaces (Richard Jones)<br/> </li> </ul> + <h3>0.2.3: Jun 8 2007</h3> <ul> <li>Documentation:<br/> @@ -20230,6 +20428,7 @@ virConnectNumOfDefinedDomains doc (Jan Michael),<br/> virsh help messages for dumpxml and net-dumpxml (Chris Wright)<br/> </li> + <li>Bug fixes:<br/> RelaxNG schemas regexp fix (Robin Green),<br/> RelaxNG arch bug (Mark McLoughlin),<br/> @@ -20251,6 +20450,7 @@ allow init even if the daemon is not running,<br/> XML to config fix (Daniel Berrange)<br/> </li> + <li>Improvements:<br/> add a special error class for the test module (Richard Jones),<br/> virConnectGetCapabilities on proxy (Richard Jones),<br/> @@ -20267,6 +20467,7 @@ allow arguments to be passed to bootloader (Hugh Brock),<br/> increase the test suite (Daniel Berrange and Hugh Brock)<br/> </li> + <li>Cleanups:<br/> Remove VIR_DRV_OPEN_QUIET (Richard Jones),<br/> disable xm_internal.c for Xen > 3.0.3 (Daniel Berrange),<br/> @@ -20277,6 +20478,7 @@ -Werror cleanup (Hugh Brock)<br/> </li> </ul> + <h3>0.2.2: Apr 17 2007</h3> <ul> <li>Documentation:<br/> @@ -20287,6 +20489,7 @@ strings typos (Nikolay Sivov),<br/> ilocalization problem raised by Thomas Canniot<br/> </li> + <li>Bug fixes:<br/> virsh memory values test (Masayuki Sunou),<br/> operations without libvirt_qemud (Atsushi SAKAI),<br/> @@ -20305,6 +20508,7 @@ integer overflow for qemu CPU time (Daniel Berrange),<br/> QEMU binary path check (Daniel Berrange)<br/> </li> + <li>Cleanups:<br/> remove some global variables (Jim Meyering),<br/> printf-style functions checks (Jim Meyering),<br/> @@ -20320,6 +20524,7 @@ cleanup XPath libxml2 calls,<br/> IPTables rules tightening (Daniel Berrange)<br/> </li> + <li>Improvements:<br/> more regression tests on XML (Daniel Berrange),<br/> Python bindings now generate exception in error cases (Richard Jones),<br/> @@ -20330,15 +20535,18 @@ multiple boot devices for HVM (Daniel Berrange)<br/> </li> </ul> + <h3>0.2.1: Mar 16 2007</h3> <ul> <li>Features:<br/> Add support for network autostart and init scripts (Mark McLoughlin),<br/> New API virConnectGetCapabilities() to detect the virtualization capabilities of a host (Richard Jones)<br/> </li> + <li>Documentation:<br/> Documentation updates especially on the XML formats<br/> </li> + <li>Portability:<br/> IA64 fixes (Atsushi SAKAI),<br/> dependancies and build (Daniel Berrange),<br/> @@ -20350,6 +20558,7 @@ configure time selection of drivers,<br/> libvirt spec hacking (Daniel Berrange)<br/> </li> + <li>Bug Fixes:<br/> libvirt_qemud daemon path (Daniel Berrange),<br/> libvirt config directory (Daniel Berrange and Mark McLoughlin),<br/> @@ -20369,6 +20578,7 @@ unlimited memory handling (Atsushi SAKAI),<br/> python binding fixes (Tatsuro Enokura)<br/> </li> + <li>Improvements:<br/> qemud signal handling (Mark),<br/> don't shutdown or reboot domain0 (Kazuki Mizushima),<br/> @@ -20381,41 +20591,50 @@ virtsh --readonly option (Rich Jones),<br/> python bindings for new functions (Daniel Berrange)<br/> </li> + <li>Cleanups:<br/> Various internal cleanups (Richard Jones, Daniel Berrange, Mark McLoughlin)<br/> </li> </ul> + <h3>0.2.0: Feb 14 2007</h3> <ul> <li>Features:<br/> Add support for QEmu and KVM virtualization (Daniel Berrange),<br/> Add support for network configuration (Mark McLoughlin)<br/> </li> + <li>Bug fixes:<br/> avoid a crash in connect (Daniel Berrange),<br/> virsh args parsing (Richard Jones)<br/> </li> + <li>Improvements:<br/> regression testing (Daniel Berrange),<br/> localization string updates<br/> </li> + <li>Cleanups:<br/> Various internal cleanups (Mark McLoughlin, Richard Jones, Daniel Berrange, Karel Zak)<br/> </li> </ul> + <h3>0.1.11: Jan 22 2007</h3> <ul> <li>Features:<br/> Added a Relax-NG schemas to check XML instances<br/> </li> + <li>Bug Fixes:<br/> Remove memory leak when freeing virConf objects<br/> </li> + <li>Improvements:<br/> Finish XML <-> XM config files support,<br/> Finishing inactive domain support (Daniel Berrange)<br/> </li> </ul> + <h3>0.1.10: Dec 20 2006</h3> <ul> <li>Bug Fixes:<br/> @@ -20423,6 +20642,7 @@ xenDaemonListDomains buffer overflow (Daniel Berrange),<br/> reference count bug when creating Xen domains (Daniel Berrange)<br/> </li> + <li>Improvements:<br/> more localizations,<br/> support graphic framebuffer for Xen paravirt (Daniel Berrange),<br/> @@ -20430,6 +20650,7 @@ support for default Xen config files and inactive domains of 3.0.4 (Daniel Berrange)<br/> </li> </ul> + <h3>0.1.9: Nov 29 2006</h3> <ul> <li>Features:<br/> @@ -20443,12 +20664,14 @@ add API to dump core of domains (but requires a patched xend),<br/> pygrub bootloader information take over <os> information<br/> </li> + <li>Bug Fixes:<br/> fix OS reporting when running as non-root,<br/> fix the reconnect regression test,<br/> Fix a memory leak (Daniel Berrange),<br/> python bindings: fix unsigned long marshalling (Daniel Berrange)<br/> </li> + <li>Improvements:<br/> python bindings: release interpeter lock when calling C (Daniel Berrange),<br/> don't raise HTTP error when looking information for a domain,<br/> @@ -20458,15 +20681,18 @@ python bindings: Domain instances now link to the Connect to avoid garbage collection and disconnect,<br/> updated the localization strings<br/> </li> + <li>Cleanups:<br/> some refactoring to use the driver for all entry points<br/> </li> </ul> + <h3>0.1.8: Oct 16 2006</h3> <ul> <li>Documentation:<br/> fix virsh man page (Noriko Mizumoto)<br/> </li> + <li>Bug Fixes:<br/> Bug for system with page size != 4k,<br/> memory leak fixes (xend interface and XML parsing) (Daniel Berrange),<br/> @@ -20474,12 +20700,14 @@ mlock/munlock size fixes (Daniel Berrange),<br/> don't label crashed domains as shut off (Peter Vetere)<br/> </li> + <li>Improvements:<br/> vcpu number initialization (Philippe Berthault),<br/> blktapdd support for alternate drivers like blktap (Daniel Berrange),<br/> improve error reporting<br/> </li> </ul> + <h3>0.1.7: Sep 29 2006</h3> <ul> <li>Bug Fixes:<br/> @@ -20487,6 +20715,7 @@ fix another problem in the hypercalls change in Xen changeset 86d26e6ec89b when getting domain information (Daniel Berrange)<br/> </li> </ul> + <h3>0.1.6: Sep 22 2006</h3> <ul> <li>Features:<br/> @@ -20494,16 +20723,19 @@ Support for new Xen-3.0.3 cdrom and disk configuration (Daniel Berrange),<br/> Support for setting VNC port when creating domains with new xend config files (Daniel Berrange)<br/> </li> + <li>Bug Fixes:<br/> Fix bug when running against xen-3.0.2 hypercalls (Jim Fehlig),<br/> Fix reconnection problem when talking directly to http xend<br/> </li> </ul> + <h3>0.1.5: Sep 5 2006</h3> <ul> <li>Features:<br/> Support for new hypercalls change in Xen changeset 86d26e6ec89b<br/> </li> + <li>Bug Fixes:<br/> virParseUUID() was wrong,<br/> networking for paravirt guests (Daniel Berrange),<br/> @@ -20511,6 +20743,7 @@ string cast bug when handling error in python (Pete Vetere),<br/> HTTP 500 xend error code handling (Pete Vetere and Daniel Berrange)<br/> </li> + <li>Improvements:<br/> test suite for SEXPR <-> XML format conversions (Daniel Berrange),<br/> virsh output regression suite (Daniel Berrange),<br/> @@ -20521,12 +20754,14 @@ virsh output improvement (Daniel Berrange)<br/> </li> </ul> + <h3>0.1.4: Aug 16 2006</h3> <ul> <li>Documentation:<br/> spelling (Daniel Berrange),<br/> test driver examples<br/> </li> + <li>Bug Fixes:<br/> spec file fix (Mark McLoughlin),<br/> error report problem (with Hugh Brock),<br/> @@ -20536,6 +20771,7 @@ fix python detection code,<br/> remove duplicate initialization errors (Daniel Berrange)<br/> </li> + <li>Improvements:<br/> UUID in XML description (Peter Vetere),<br/> proxy code cleanup,<br/> @@ -20548,11 +20784,13 @@ large improvements to test driver (Daniel Berrange)<br/> </li> </ul> + <h3>0.1.3: Jul 11 2006</h3> <ul> <li>Documentation:<br/> augmented to cover hvm domains<br/> </li> + <li>Bug Fixes:<br/> build as non-root,<br/> fix xend access when root,<br/> @@ -20560,70 +20798,84 @@ XML serialization and parsing fixes (Mark McLoughlin),<br/> allow to create domains without disk (Mark McLoughlin)<br/> </li> + <li>Improvements:<br/> xenDaemonLookupByID from O(n^2) to O(n) (Daniel Berrange),<br/> support for fully virtualized guest (Jim Fehlig, DV, Mark McLoughlin)<br/> </li> </ul> + <h3>0.1.2: Jul 3 2006</h3> <ul> <li>Features:<br/> proxy mechanism for unprivileged read-only access by http<br/> </li> + <li>Bug Fixes:<br/> headers include paths fixup<br/> </li> </ul> + <h3>0.1.1: Jun 21 2006</h3> <ul> <li>Features:<br/> Cope with API change introduced in Xen changeset 10277,<br/> new test driver for regression checks (Daniel P. Berrange)<br/> </li> + <li>Documentation:<br/> Python examples (David Lutterkort),<br/> new Perl binding URL,<br/> man page update (Karel Zak)<br/> </li> + <li>Portability:<br/> ncurses fallback (Jim Fehlig),<br/> VPATH builds (Daniel P. Berrange)<br/> </li> + <li>Bug Fixes:<br/> uninitialized memory access in error reporting,<br/> S-Expr parsing (Jim Fehlig, Jeremy Katz),<br/> virConnectOpen bug,<br/> remove a TODO in xs_internal.c<br/> </li> + <li>Improvements:<br/> added UUID to XML serialization,<br/> buffer usage (Karel Zak),<br/> --connect argument to virsh (Daniel P. Berrange)<br/> </li> + <li>Cleanups:<br/> new entry points,<br/> cleanup of libvirt.c (with Daniel P. Berrange)<br/> </li> </ul> + <h3>0.1.0: Apr 10 2006</h3> <ul> <li>Features:<br/> new APIs for Node information and Reboot<br/> </li> + <li>Documentation:<br/> updates on architecture and format,<br/> typo fix (Jim Meyering),<br/> virsh: man page (Andrew Puch)<br/> </li> + <li>Portability:<br/> --with-xen-distdir option (Ronald Aigner),<br/> out of tree build and pkginfo cflag fix (Daniel Berrange)<br/> </li> + <li>Bug Fixes:<br/> error message (Jim Meyering),<br/> error allocation in virsh (Jim Meyering),<br/> virDomainLookupByID (Jim Fehlig)<br/> </li> + <li>Improvements<br/> enhancement and fixes of the XML description format (David Lutterkort and Jim Fehlig),<br/> virsh: more options, create, nodeinfo (Karel Zak),<br/> @@ -20632,6 +20884,7 @@ bindings: exception handling in examples (Jim Meyering),<br/> bindings: perl ones out of tree (Daniel Berrange)<br /> </li> + <li>Cleanups:<br/> refactoring internals into a driver model,<br/> more error handling,<br/> @@ -20639,6 +20892,7 @@ thread safety and ref counting<br/> </li> </ul> + <h3>0.0.6: Feb 28 2006</h3> <ul> <li>Features:<br/> @@ -20646,13 +20900,16 @@ add error handling APIs both synchronous and asynchronous,<br/> added minimal hook for error handling at the python level<br/> </li> + <li>Documentation:<br/> augment the documentation and tests to cover error handling<br/> </li> + <li>Improvements:<br/> improved the python bindings<br/> </li> </ul> + <h3>0.0.5: Feb 23 2006</h3> <ul> <li>Features<br/> @@ -20661,47 +20918,57 @@ Adding regression tests in python and examples in C,<br/> Added devhelp help for Gnome/Gtk programmers,<br/> </li> + <li>Documentation:<br/> web site improvement, extended the documentation to cover the XML format and Python API<br/> </li> + <li>Bug Fixes:<br/> fixed the XML dump when using the Xend access,<br/> Fixed a few more problem related to the name change<br/> </li> </ul> + <h3>0.0.4: Feb 10 2006</h3> <ul> <li>Bug Fixes:<br/> Fix various bugs introduced in the name change<br/> </li> </ul> + <h3>0.0.3: Feb 9 2006</h3> <ul> <li>Features:<br/> Switch name from 'libvir' to libvirt,<br/> Starting infrastructure to add code examples<br/> </li> + <li>Improvements:<br/> Update of python bindings for completeness<br/> </li> </ul> + <h3>0.0.2: Jan 29 2006</h3> <ul> <li>Features:<br/> integration of HTTP xend RPC based on libxend by Anthony Liquori for most operations,<br/> Adding Save and Restore APIs<br/> </li> + <li>Documentation:<br/> Update of the documentation, web site redesign (Diana Fong)<br/> </li> + <li>Bug Fixes:<br/> fix the Python bindings bug when domain and connections where freed<br/> </li> + <li>Improvements:<br/> extended the virsh command line tool (Karel Zak),<br/> remove xenstore transactions (Anthony Liguori)<br/> </li> </ul> + <h3>0.0.1: Dec 19 2005</h3> <ul> <li>Features:<br/> @@ -20710,5 +20977,6 @@ Minimal autogenerated Python bindings<br/> </li> </ul> + </body> </html> -- 2.4.3

There were some inconsistencies; now the section title is always one of Bug Fixes, Cleanups, Documentation, Features, Improvements, Portability, Security. --- docs/news.html.in | 140 +++++++++++++++++++++++++++--------------------------- 1 file changed, 70 insertions(+), 70 deletions(-) diff --git a/docs/news.html.in b/docs/news.html.in index d3a6210..463a868 100644 --- a/docs/news.html.in +++ b/docs/news.html.in @@ -1637,7 +1637,7 @@ Fix build on mingw (Ján Tomko)<br/> </li> - <li>Bug fixes:<br/> + <li>Bug Fixes:<br/> qemu: blockjob: Synchronously update backing chain in XML on ABORT/PIVOT (Peter Krempa),<br/> qemu: processBlockJob: Don't unlock @vm twice (Peter Krempa),<br/> qemu: blockCopy: Pass adjusted bandwidth when called via blockRebase (Peter Krempa),<br/> @@ -2295,7 +2295,7 @@ qemu: avoid rare race when undefining domain (Martin Kletzander)<br/> </li> - <li>Improvement:<br/> + <li>Improvements:<br/> tests: Check for virQEMUDriverConfigNew return value (Michal Privoznik),<br/> systemd: avoid string comparisons on dbus error messages (Daniel P. Berrange),<br/> aarch64: Support versioned machine types. (Richard W.M. Jones),<br/> @@ -2436,7 +2436,7 @@ conf: Ignore device address for model=none usb controller and memballon (Luyao Huang)<br/> </li> - <li>Cleanup:<br/> + <li>Cleanups:<br/> Indentation (Ján Tomko)<br/> </li> </ul> @@ -2799,7 +2799,7 @@ util: Introduce virPidFileForceCleanupPath (Martin Kletzander)<br/> </li> - <li>Cleanup:<br/> + <li>Cleanups:<br/> Remove left over debug in hvsupport.pl script (Daniel P. Berrange)<br/> </li> </ul> @@ -3700,7 +3700,7 @@ tests: Avoid double linking some libraries (Michal Privoznik)<br/> </li> - <li>Bug fixes:<br/> + <li>Bug Fixes:<br/> network: always set disable_ipv6, even when it should be 0 (Laine Stump),<br/> Fix a crash when cloning a volume with no backing store (Ján Tomko),<br/> qemu: error out if PCI passthrough type is not supported (Hu Tao),<br/> @@ -4429,7 +4429,7 @@ bhyve: improve bhyve_command.c testability (Roman Bogorodskiy)<br/> </li> - <li>Cleanup:<br/> + <li>Cleanups:<br/> virSecurityDACRestoreSecurityHostdevLabel: Unmark @def as unused (Michal Privoznik)<br/> </li> </ul> @@ -5224,7 +5224,7 @@ Use AC_PATH_PROG to search for dmidecode (Roman Bogorodskiy)<br/> </li> - <li>Bug fixes:<br/> + <li>Bug Fixes:<br/> bhyve: defined domains should be persistent (Roman Bogorodskiy),<br/> Fix journald PRIORITY values (Daniel P. Berrange),<br/> spec: Fix braces around macros (Peter Krempa),<br/> @@ -6115,7 +6115,7 @@ build: fix build --without-remote (Eric Blake)<br/> </li> - <li>Bug fixes:<br/> + <li>Bug Fixes:<br/> Fix race in starting transient VMs (Daniel P. Berrange),<br/> Use a port from the migration range for NBD as well (Ján Tomko),<br/> nodedev_hal: fix segfault when virDBusGetSystemBus fails (Ryota Ozaki),<br/> @@ -6679,7 +6679,7 @@ VMX: Create virVMXFormatDisk() from HD and CD-ROM (Doug Goldstein)<br/> </li> - <li>Cleanup:<br/> + <li>Cleanups:<br/> daemon: Avoid dead code in polkit auth (Jiri Denemark)<br/> </li> </ul> @@ -9069,7 +9069,7 @@ build: Check for broken GCC -Wlogical-op in configure (Viktor Mihajlovski)<br/> </li> - <li>Bug fixes:<br/> + <li>Bug Fixes:<br/> conf: Don't format cputune element when not needed (Martin Kletzander),<br/> conf: Fix cpumask leak in virDomainDefFree (Ján Tomko),<br/> qemu: Destroy domain on decompression binary error (Michal Privoznik),<br/> @@ -10303,7 +10303,7 @@ Fix mingw64 build by using intptr_t for int->void* casts (Daniel P. Berrange)<br/> </li> - <li>Bug fixes:<br/> + <li>Bug Fixes:<br/> network: don't "refresh" iptables rules on rule-less networks (Laine Stump),<br/> qemu: Fix failure path in disk hotplug (Jiri Denemark),<br/> Ensure existing selinux mount is removed before mounting new one in LXC (Daniel P. Berrange),<br/> @@ -10560,11 +10560,11 @@ Fix emulator pinning example in formatdomain.html (Peter Krempa)<br/> </li> - <li>Improvement:<br/> + <li>Improvements:<br/> Implement virMacAddrIsBroadcastRaw (Stefan Berger)<br/> </li> - <li>Cleanup:<br/> + <li>Cleanups:<br/> security: remove dead code from virSecurityDACGenLabel (Alex Jia)<br/> </li> </ul> @@ -10646,7 +10646,7 @@ build: fix typo that breaks non-Linux builds (Eric Blake)<br/> </li> - <li>BugFixes:<br/> + <li>Bug Fixes:<br/> nwfilter: Don't try to acquire DBus context when DBus is disabled (Peter Krempa),<br/> util: Prevent libvirtd crash (Alex Jia),<br/> security_dac: Don't return uninitialised uid and gid for image labels (Peter Krempa),<br/> @@ -11741,7 +11741,7 @@ virsh: Fix docs for list command (Peter Krempa)<br/> </li> - <li>Bug fixes:<br/> + <li>Bug Fixes:<br/> qemu: Start nested job in qemuDomainCheckEjectableMedia (Jiri Denemark),<br/> qemu: fix memory leak in virDomainGetVcpus (Laine Stump),<br/> conf: allow fuzz in XML with cur balloon > max (Eric Blake),<br/> @@ -14981,7 +14981,7 @@ build: fix broken mingw cross-compilation (Eric Blake)<br/> </li> - <li>Bug fixes:<br/> + <li>Bug Fixes:<br/> fix memory leak in qemuProcessHandleGraphics() (Wen Congyang),<br/> do not lock vm while allocating memory (Wen Congyang),<br/> Fix libxl driver startup (Daniel Veillard),<br/> @@ -15347,7 +15347,7 @@ commandtest: avoid printing loader-control variables from commandhelper (Diego Elio Pettenò)<br/> </li> - <li>Bug fixes:<br/> + <li>Bug Fixes:<br/> qemu: Error prompt when saving a shutoff domain (Osier Yang),<br/> cgroup: preserve correct errno on failure (Eric Blake),<br/> qemu: Fix command line generation with faked host CPU (Jiri Denemark),<br/> @@ -15605,7 +15605,7 @@ Fix warning when macvtap support is disabled (Jean-Baptiste Rouault)<br/> </li> - <li>Bug fixes:<br/> + <li>Bug Fixes:<br/> virExec: fix logic bug (Eric Blake),<br/> Set broadcast address for IPv4 addresses on virtual network bridges (Laine Stump),<br/> Fix misuse of VIR_ERR_INVALID_DOMAIN (Matthias Bolte),<br/> @@ -16419,7 +16419,7 @@ daemon: dispatch.c should include stdio.h (and stdarg.h) (Ryota Ozaki)<br/> </li> - <li>Bug fixes:<br/> + <li>Bug Fixes:<br/> qemu: Fix PCI address allocation (Jiri Denemark),<br/> Don't leak delay string when freeing virInterfaceBridgeDefs (Laine Stump),<br/> qemu: don't lose error on setting monitor capabilities (Eric Blake),<br/> @@ -18019,7 +18019,7 @@ Fix compilation for configure --disable-nls (Matthias Bolte)<br/> </li> - <li>Bug fixes:<br/> + <li>Bug Fixes:<br/> cpu: Fix memory leaks in x86FeatureLoad and x86ModelLoad (Matthias Bolte),<br/> Make Xen VT-d PCI attach/detach work (Chris Lalancette),<br/> Fix detection of JSON when restarting libvirtd (Daniel P. Berrange),<br/> @@ -18171,7 +18171,7 @@ fix virDomainMigrateToURI doc (Dan Kenigsberg)<br/> </li> - <li>Bug fixes:<br/> + <li>Bug Fixes:<br/> 504262 Check for duplicated UUID in XM Xen defines (Daniel Veillard),<br/> 512069 fix domain XML schemas for backward compatibility (Daniel Veillard),<br/> qemu-kvm needs -enable-kvm flag for VT optimization (Steve Yarmie),<br/> @@ -18588,7 +18588,7 @@ <h3>0.7.1: Sep 15 2009</h3> <ul> - <li>New features:<br/> + <li>Features:<br/> Add support for encrypted (qcow) volume creation. (Miloslav Trmač),<br/> Secret manipulation public API (Miloslav Trmač),<br/> Multipath storage support module (Dave Allan),<br/> @@ -18614,7 +18614,7 @@ Fix win32 platform build (Daniel P. Berrange)<br/> </li> - <li>Bug fixes:<br/> + <li>Bug Fixes:<br/> VBox bug when starting machine from old versions (Pritesh Kothari),<br/> ESX avoid potential leaks (Matthias Bolte),<br/> Fix more OOM handling bugs (Daniel P. Berrange),<br/> @@ -18665,7 +18665,7 @@ Fix memleak if esxOpen fails (Matthias Bolte)<br/> </li> - <li>Improvement:<br/> + <li>Improvements:<br/> support lzop save compression for qemu (Charles Duffy),<br/> VBox 3.0.6 API change support (Pritesh Kothari),<br/> Add UUID definition required by storage encryption import (Daniel P. Berrange),<br/> @@ -18823,7 +18823,7 @@ <h3>0.7.0: Aug 5 2009</h3> <ul> - <li>New features:<br/> + <li>Features:<br/> Interface implementation based on netcf (Laine Stump, Daniel Veillard),<br/> Add new net filesystem glusterfs (Harshavardhana),<br/> Initial VMWare ESX driver (Matthias Bolte),<br/> @@ -18869,7 +18869,7 @@ rpm spec cleanup and split off client only package (Daniel Veillard)<br/> </li> - <li>Bug fixes:<br/> + <li>Bug Fixes:<br/> Add uniqueness checking for LXC define/create methods (Daniel P. Berrange),<br/> Fix removal of transient VMs when LXC aborts (Daniel P. Berrange),<br/> Don't try to activate cgroups if not present for LXC (Daniel P. Berrange),<br/> @@ -19089,7 +19089,7 @@ <h3>0.6.5: Jul 3 2009</h3> <ul> - <li>New features:<br/> + <li>Features:<br/> create storage columes on disk backend (Henrik Persson),<br/> drop of capabilities based on libcap-ng when possible (Daniel Berrange)<br/> </li> @@ -19106,7 +19106,7 @@ documentation for OpenNebula driver (Abel Miguez Rodriguez)<br/> </li> - <li>Bug fixes:<br/> + <li>Bug Fixes:<br/> forbid autostart on transcient networks,<br/> xen device removal crash (Daniel Berrange),<br/> re-detection of transient VMs after libvirtd restart (Daniel Berrange),<br/> @@ -19167,7 +19167,7 @@ <h3>0.6.4: May 29 2009</h3> <ul> - <li>New features:<br/> + <li>Features:<br/> new API virStorageVolCreateXMLFrom (Cole Robinson),<br/> full VBox graphic capabilities (Pritesh Kothari),<br/> Interface config APIs (Laine Stump),<br/> @@ -19187,7 +19187,7 @@ inconsistencies in storage volume docs and schemas (Ryota Ozaki)<br/> </li> - <li>Bug fixes:<br/> + <li>Bug Fixes:<br/> fix hostdev managed handling (Mark McLoughlin),<br/> lxc_controller should not cash without args (Guido Gunther),<br/> bug fixes in I/O routines (Guido Gunther),<br/> @@ -19250,7 +19250,7 @@ <h3>0.6.3: Apr 24 2009</h3> <ul> - <li>New features:<br/> + <li>Features:<br/> VirtualBox driver support (Pritesh Kothari),<br/> virt-xml-validate new command (Daniel Berrange)<br/> </li> @@ -19269,7 +19269,7 @@ VirtualBox Documentation (Pritesh Kothari)<br/> </li> - <li>Bug fixes:<br/> + <li>Bug Fixes:<br/> veth off-by-one error (Dan Smith),<br/> vcpupin to inactive Xen crash (Takahashi Tomohiro),<br/> virsh ttyconsole return value,<br/> @@ -19301,7 +19301,7 @@ <h3>0.6.2: Apr 3 2009</h3> <ul> - <li>New features:<br/> + <li>Features:<br/> support SASL auth for VNC server (Daniel Berrange),<br/> memory ballooning in QEMU (Daniel Berrange),<br/> SCSI HBA storage pool support (Dave Allan),<br/> @@ -19319,7 +19319,7 @@ missing disk bus values in RNG schemas<br/> </li> - <li>Bug fixes:<br/> + <li>Bug Fixes:<br/> tap vs vbd type on block detach (Cole Robinson and Takahashi Tomohiro),<br/> bad free on storage volume error (Daniel Berrange),<br/> maplenght computations in remote driver (Daniel Berrange),<br/> @@ -19367,7 +19367,7 @@ <h3>0.6.1: Mar 3 2009</h3> <ul> - <li>New features:<br/> + <li>Features:<br/> new APIs for Node device detach reattach and reset (Mark McLoughlin),<br/> sVirt mandatory access control support (James Morris and Dan Walsh)<br/> </li> @@ -19387,7 +19387,7 @@ new example program (David Allan)<br/> </li> - <li>Bug fixes:<br/> + <li>Bug Fixes:<br/> NULL dereference in LXC (Jim Meyering),<br/> fix domain error reporting (John Levon),<br/> fix loop of libvirtd --timeout (Daniel Berrange),<br/> @@ -19446,7 +19446,7 @@ <h3>0.6.0: Jan 31 2009</h3> <ul> - <li>New features:<br/> + <li>Features:<br/> thread safety of the API and event handling (Daniel Berrange),<br/> allow QEmu domains to survive daemon restart (Guido Günther),<br/> extended logging capabilities,<br/> @@ -19478,7 +19478,7 @@ provide RNG schemas for all XML formats used in libvirt APIs (Daniel Berrange)<br/> </li> - <li>Bug fixes:<br/> + <li>Bug Fixes:<br/> segfault on virtual network without bridge name (Cole Robinson),<br/> various locking fixes (Cole Robinson),<br/> fix serial and parallel devices on tcp/unix/telnet (Guido Günther),<br/> @@ -19573,7 +19573,7 @@ documentation copy and paste errors and typo (Cole Robinson)<br/> </li> - <li>Bug fixes:<br/> + <li>Bug Fixes:<br/> add a delay in storage backend for disks to show up (Chris Lalancette),<br/> fix parsing for CDRom device with no source (Daniel Berrange),<br/> use xenstore to list domains to avoid some bugs (Guido Günther),<br/> @@ -19600,7 +19600,7 @@ <h3>0.5.0: Nov 25 2008</h3> <ul> - <li>New features:<br/> + <li>Features:<br/> CPU and scheduler support for LXC (Dan Smith),<br/> SDL display configuration (Daniel Berrange),<br/> domain lifecycle event support for QEmu and Xen with python bindings (Ben Guthro and Daniel Berrange),<br/> @@ -19628,7 +19628,7 @@ UML driver docs (Daniel Berrange)<br/> </li> - <li>Bug fixes:<br/> + <li>Bug Fixes:<br/> Xen interfaces ordering (Jim Fehlig),<br/> startup timeout with multiple pty (Cole Robinson),<br/> segfault if QEmu without active virtual network (Cole Robinson),<br/> @@ -19721,7 +19721,7 @@ missing include file (Richard Jones)<br/> </li> - <li>Bug fixes:<br/> + <li>Bug Fixes:<br/> avoid a segfault if missing qemu emulator (Cole Robinson),<br/> reading vncdisplay from xend domain (Cole Robinson),<br/> segfault in OpenVZ (Evgeniy Sokolov),<br/> @@ -19747,7 +19747,7 @@ <h3>0.4.5: Sep 8 2008</h3> <ul> - <li>New features:<br/> + <li>Features:<br/> NETNS support for Linux containers (Dan Smith),<br/> unified XML domain and network parsing for all drivers (Daniel Berrange),<br/> OpenVZ features improvements (Evgeniy Sokolov),<br/> @@ -19777,7 +19777,7 @@ memory unit fixups (matthew chan)<br/> </li> - <li>Bug fixes:<br/> + <li>Bug Fixes:<br/> memory leaks and testing for OOM (Daniel Berrange),<br/> do_open driver bug (Evgeniy Sokolov),<br/> don't use polkit auth when running as non-root (Daniel Berrange),<br/> @@ -19870,7 +19870,7 @@ <h3>0.4.4: Jun 25 2008</h3> <ul> - <li>Bug fixes:<br/> + <li>Bug Fixes:<br/> QEmu network serialization (Kaitlin Rupert),<br/> internal memory allocation fixes (Chris Lalancette Jim Meyering),<br/> virsh large file config problem (Jim Meyering),<br/> @@ -19892,7 +19892,7 @@ <h3>0.4.3: Jun 12 2008</h3> <ul> - <li>New features:<br/> + <li>Features:<br/> Linux Container start and stop (Dave Leskovec),<br/> Network interface model settings (Daniel Berrange),<br/> serial and parallel device support for QEmu and Xen (Daniel Berrange),<br/> @@ -19914,7 +19914,7 @@ docs for remote listen-tls/tcp fixes (Kenneth Nagin)<br/> </li> - <li>Bug fixes:<br/> + <li>Bug Fixes:<br/> save change to config file for Xen (Ryan Scott),<br/> fix /var/run/libvirt/ group ownership (Anton Protopopov),<br/> ancient libparted workaround (Soren Hansen),<br/> @@ -19942,7 +19942,7 @@ better error messages for xend driver (Richard Jones)<br/> </li> - <li>Code cleanups:<br/> + <li>Cleanups:<br/> OpenVZ compilation (Richard Jones),<br/> conn dom and net fields deprecation in error structures (Richard Jones),<br/> Xen-ism on UUID (Richard Jones),<br/> @@ -19977,7 +19977,7 @@ <h3>0.4.2: Apr 8 2008</h3> <ul> - <li>New features:<br/> + <li>Features:<br/> memory operation for QEmu/KVM driver (Cole Robinson),<br/> new routed networking schemas (Mads Olesen)<br/> </li> @@ -19988,7 +19988,7 @@ string fixes (Francesco Tombolini)<br/> </li> - <li>Bug fixes:<br/> + <li>Bug Fixes:<br/> pointer errors in qemu (Jim Meyering),<br/> iSCSI login fix (Chris Lalancette),<br/> well formedness error in test driver capabilities (Cole Robinson),<br/> @@ -20025,7 +20025,7 @@ xen and hvm added to test driver capabilities (Cole Robinson)<br/> </li> - <li>Code cleanup:<br/> + <li>Cleanups:<br/> remove unused getopt header (Jim Meyering),<br/> mark more strings as translatable (Guido Günther and Jim Meyering),<br/> convert error strings to something meaningful and translatable (Jim Meyering),<br/> @@ -20036,7 +20036,7 @@ <h3>0.4.1: Mar 3 2008</h3> <ul> - <li>New features:<br/> + <li>Features:<br/> build on MacOSX (Richard Jones),<br/> storage management (Daniel Berrange),<br/> Xenner - Xen on KVM - support (Daniel Berrange)<br/> @@ -20049,7 +20049,7 @@ add storage APIs documentation (Daniel Berrange)<br/> </li> - <li>Bug fixes:<br/> + <li>Bug Fixes:<br/> OpenVZ code compilation (Mikhail Pokidko),<br/> crash in policykit auth handling (Daniel Berrange),<br/> large config files (Daniel Berrange),<br/> @@ -20091,7 +20091,7 @@ various improvements for Xenner (Daniel Berrange)<br/> </li> - <li>Code cleanups:<br/> + <li>Cleanups:<br/> avoid warnings (Daniel Berrange),<br/> virRun helper function (Dan Berrange),<br/> iptable code fixes (Mark McLoughlin),<br/> @@ -20123,7 +20123,7 @@ <h3>0.4.0: Dec 18 2007</h3> <ul> - <li>New features:<br/> + <li>Features:<br/> Compilation on Windows cygwin/mingw (Richard Jones),<br/> Ruby bindings (David Lutterkort),<br/> SASL based authentication for libvirt remote support (Daniel Berrange),<br/> @@ -20144,7 +20144,7 @@ authentication documentation updates (Daniel Berrange)<br/> </li> - <li>Bug fixes:<br/> + <li>Bug Fixes:<br/> NUMA topology error handling (Beth Kon),<br/> NUMA topology cells without CPU (Beth Kon),<br/> XML to/from XM bridge config (Daniel Berrange),<br/> @@ -20193,7 +20193,7 @@ separate qparams module for handling query parameters (Richard Jones)<br/> </li> - <li>Code cleanups:<br/> + <li>Cleanups:<br/> remove virDomainRestart from API as it was never used (Richard Jones),<br/> constify params for attach/detach APIs (Daniel Berrange),<br/> gcc printf attribute checkings (Jim Meyering),<br/> @@ -20225,7 +20225,7 @@ <h3>0.3.3: Sep 30 2007</h3> <ul> - <li>New features:<br/> + <li>Features:<br/> Avahi mDNS daemon export (Daniel Berrange),<br/> NUMA support (Beth Kan)<br/> </li> @@ -20235,7 +20235,7 @@ typos (Eduardo Pereira)<br/> </li> - <li>Bug fixes:<br/> + <li>Bug Fixes:<br/> memory corruption on large dumps (Masayuki Sunou),<br/> fix virsh vncdisplay command exit (Masayuki Sunou),<br/> Fix network stats TX/RX result (Richard Jones),<br/> @@ -20265,7 +20265,7 @@ Python bindings for block and interface statistics<br/> </li> - <li>Code cleanups:<br/> + <li>Cleanups:<br/> virDrvOpenRemoteFlags definition (Richard Jones),<br/> configure tests and output (Daniel Berrange)<br/> </li> @@ -20273,7 +20273,7 @@ <h3>0.3.2: Aug 21 2007</h3> <ul> - <li>New features:<br/> + <li>Features:<br/> KVM migration and save/restore (Jim Paris),<br/> added API for migration (Richard Jones),<br/> added APIs for block device and interface statistic (Richard Jones)<br/> @@ -20285,7 +20285,7 @@ hypervisor support page update (Richard Jones)<br/> </li> - <li>Bug fixes:<br/> + <li>Bug Fixes:<br/> remove a couple of leaks in QEmu/KVM backend (Daniel berrange),<br/> fix GnuTLS 1.0 compatibility (Richard Jones),<br/> --config/-f option mistake for libvirtd (Richard Jones),<br/> @@ -20299,7 +20299,7 @@ virsh schedinfo cleanup (Saori Fukuta)<br/> </li> - <li>Improvement:<br/> + <li>Improvements:<br/> virsh new ttyconsole command,<br/> networking API implementation for test driver (Daniel berrange),<br/> qemu/kvm feature reporting of ACPI/APIC (David Lutterkort),<br/> @@ -20327,7 +20327,7 @@ Relax-NG early grammar for the network XML (David Lutterkort)<br/> </li> - <li>Bug fixes:<br/> + <li>Bug Fixes:<br/> leaks in disk XML parsing (Masayuki Sunou),<br/> hypervisor alignment call problems on PPC64 (Christian Ehrhardt),<br/> dead client registration in daemon event loop (Daniel Berrange),<br/> @@ -20372,7 +20372,7 @@ matrix of libvirt API/hypervisor support with version information (Richard Jones)<br/> </li> - <li>Bug fixes:<br/> + <li>Bug Fixes:<br/> examples Makefile.am generation (Richard Jones),<br/> SetMem fix (Mark Johnson),<br/> URI handling and ordering of drivers (Daniel Berrange),<br/> @@ -20429,7 +20429,7 @@ virsh help messages for dumpxml and net-dumpxml (Chris Wright)<br/> </li> - <li>Bug fixes:<br/> + <li>Bug Fixes:<br/> RelaxNG schemas regexp fix (Robin Green),<br/> RelaxNG arch bug (Mark McLoughlin),<br/> large buffers bug fixes (Shigeki Sakamoto),<br/> @@ -20490,7 +20490,7 @@ ilocalization problem raised by Thomas Canniot<br/> </li> - <li>Bug fixes:<br/> + <li>Bug Fixes:<br/> virsh memory values test (Masayuki Sunou),<br/> operations without libvirt_qemud (Atsushi SAKAI),<br/> fix spec file (Florian La Roche, Jeremy Katz, Michael Schwendt),<br/> @@ -20604,7 +20604,7 @@ Add support for network configuration (Mark McLoughlin)<br/> </li> - <li>Bug fixes:<br/> + <li>Bug Fixes:<br/> avoid a crash in connect (Daniel Berrange),<br/> virsh args parsing (Richard Jones)<br/> </li> @@ -20876,7 +20876,7 @@ virDomainLookupByID (Jim Fehlig)<br/> </li> - <li>Improvements<br/> + <li>Improvements:<br/> enhancement and fixes of the XML description format (David Lutterkort and Jim Fehlig),<br/> virsh: more options, create, nodeinfo (Karel Zak),<br/> virsh: renaming of some options (Karel Zak),<br/> @@ -20912,7 +20912,7 @@ <h3>0.0.5: Feb 23 2006</h3> <ul> - <li>Features<br/> + <li>Features:<br/> Added XML description parsing, dependance to libxml2, implemented the creation API virDomainCreateLinux(),<br/> new APIs to lookup and name domain by UUID,<br/> Adding regression tests in python and examples in C,<br/> -- 2.4.3

There were some inconsistencies, eg. the number of digits used for the day. The month name was also spelled out instead of abbreviated in some instances. --- docs/news.html.in | 114 +++++++++++++++++++++++++++--------------------------- 1 file changed, 57 insertions(+), 57 deletions(-) diff --git a/docs/news.html.in b/docs/news.html.in index 463a868..f455b1b 100644 --- a/docs/news.html.in +++ b/docs/news.html.in @@ -13,7 +13,7 @@ to gauge progress. </p> - <h3>v1.2.20: Oct 02 2015</h3> + <h3>1.2.20: Oct 02 2015</h3> <ul> <li>Security:<br/> storage: Handle failure from refreshVol (John Ferlan),<br/> @@ -406,7 +406,7 @@ </li> </ul> - <h3>v1.2.18: Aug 03 2015</h3> + <h3>1.2.18: Aug 03 2015</h3> <ul> <li>Features:<br/> libxl: support dom0 (Jim Fehlig),<br/> @@ -1010,7 +1010,7 @@ </li> </ul> - <h3>1.2.16: Jun 1 2015</h3> + <h3>1.2.16: Jun 01 2015</h3> <ul> <li>Features:<br/> Introduce pci-serial (Michal Privoznik),<br/> @@ -1208,7 +1208,7 @@ </li> </ul> - <h3>1.2.15: May 4 2015</h3> + <h3>1.2.15: May 04 2015</h3> <ul> <li>Features:<br/> Implement virDomainAddIOThread and virDomainDelIOThread (John Ferlan),<br/> @@ -1601,7 +1601,7 @@ </li> </ul> - <h3>1.2.14: Apr 2 2015</h3> + <h3>1.2.14: Apr 02 2015</h3> <ul> <li>Features:<br/> qemu: Implement memory device hotplug (Peter Krempa),<br/> @@ -1963,7 +1963,7 @@ </li> </ul> - <h3>1.2.13: Mar 2 2015</h3> + <h3>1.2.13: Mar 02 2015</h3> <ul> <li>Features:<br/> a lot of NUMA updates and improvments (Peter Krempa)<br/> @@ -2804,7 +2804,7 @@ </li> </ul> - <h3>1.2.10: Nov 3 2014</h3> + <h3>1.2.10: Nov 03 2014</h3> <ul> <li>Features:<br/> vbox: various drivers improvements (Taowei Luo),<br/> @@ -3027,7 +3027,7 @@ </li> </ul> - <h3>1.2.9: Oct 1 2014</h3> + <h3>1.2.9: Oct 01 2014</h3> <ul> <li>Features:<br/> Introduce virNodeAllocPages (Michal Privoznik),<br/> @@ -3341,7 +3341,7 @@ </li> </ul> - <h3>1.2.8: Sep 2 2014</h3> + <h3>1.2.8: Sep 02 2014</h3> <ul> <li>Features:<br/> blockcopy: virDomainBlockCopy with XML destination, typed params (Eric Blake),<br/> @@ -3655,7 +3655,7 @@ </li> </ul> - <h3>1.2.7: Aug 2 2014</h3> + <h3>1.2.7: Aug 02 2014</h3> <ul> <li>Features:<br/> Introduce virConnectGetDomainCapabilities (Michal Privoznik)<br/> @@ -3967,7 +3967,7 @@ </li> </ul> - <h3>1.2.6: Jul 2 2014</h3> + <h3>1.2.6: Jul 02 2014</h3> <ul> <li>Features:<br/> libxl: add migration support and fixes (Jim Fehlig),<br/> @@ -4264,7 +4264,7 @@ </li> </ul> - <h3>1.2.5: Jun 2 2014</h3> + <h3>1.2.5: Jun 02 2014</h3> <ul> <li>Security:<br/> LSN-2014-0003: Don't expand entities when parsing XML (Daniel P. Berrange)<br/> @@ -4434,7 +4434,7 @@ </li> </ul> - <h3>1.2.4: May 4 2014</h3> + <h3>1.2.4: May 04 2014</h3> <ul> <li>Documentation:<br/> Device{Attach,Detach}: Document S4 limitations (Michal Privoznik),<br/> @@ -4719,7 +4719,7 @@ </li> </ul> - <h3>1.2.3: Apr 1 2014</h3> + <h3>1.2.3: Apr 01 2014</h3> <ul> <li>Features:<br/> add new virDomainCoreDumpWithFormat API (Qiao Nuohan),<br/> @@ -5154,7 +5154,7 @@ </li> </ul> - <h3>1.2.2: Mar 2 2014</h3> + <h3>1.2.2: Mar 02 2014</h3> <ul> <li>Features:<br/> bhyve: add a basic driver (Roman Bogorodskiy),<br/> @@ -5839,7 +5839,7 @@ </li> </ul> - <h3>1.2.0: Dec 2 2013</h3> + <h3>1.2.0: Dec 02 2013</h3> <ul> <li>Features:<br/> Add support for gluster pool (Eric Blake),<br/> @@ -6054,7 +6054,7 @@ </li> </ul> - <h3>1.1.4: Nov 4 2013</h3> + <h3>1.1.4: Nov 04 2013</h3> <ul> <li>Features:<br/> Add support for AArch64 architecture (Pranavkumar Sawargaonkar),<br/> @@ -6345,7 +6345,7 @@ </li> </ul> - <h3>1.1.3: Oct 1 2013</h3> + <h3>1.1.3: Oct 01 2013</h3> <ul> <li>Features:<br/> VMware: Initial VMware Fusion support and various improvements (Doug Goldstein),<br/> @@ -6684,7 +6684,7 @@ </li> </ul> - <h3>1.1.2: Sep 2 2013</h3> + <h3>1.1.2: Sep 02 2013</h3> <ul> <li>Features:<br/> various improvements to libxl driver (Jim Fehlig, Bamvor Jian Zhang),<br/> @@ -6986,7 +6986,7 @@ </li> </ul> - <h3>1.1.1: July 30 2013</h3> + <h3>1.1.1: Jul 30 2013</h3> <ul> <li>Features:<br/> Adding device removal or deletion events (Jiri Denemark),<br/> @@ -7398,7 +7398,7 @@ </li> </ul> - <h3>1.1.0: July 1 2013</h3> + <h3>1.1.0: Jul 01 2013</h3> <ul> <li>Features:<br/> Extensible migration APIs (Jiri Denemark),<br/> @@ -7638,7 +7638,7 @@ </li> </ul> - <h3>1.0.6: June 3 2013</h3> + <h3>1.0.6: Jun 03 2013</h3> <ul> <li>Features:<br/> Move VirtualBox driver into libvirtd (Daniel P. Berrange),<br/> @@ -8084,7 +8084,7 @@ </li> </ul> - <h3>1.0.5: May 2 2013</h3> + <h3>1.0.5: May 02 2013</h3> <ul> <li>Features:<br/> Add NVRAM device (Li Zhang),<br/> @@ -8436,7 +8436,7 @@ </li> </ul> - <h3>1.0.4: Apr 1 2013</h3> + <h3>1.0.4: Apr 01 2013</h3> <ul> <li>Features:<br/> qemu: support passthrough for iscsi disks (Paolo Bonzini),<br/> @@ -8649,7 +8649,7 @@ </li> </ul> - <h3>1.0.3: Mar 5 2013</h3> + <h3>1.0.3: Mar 05 2013</h3> <ul> <li>Features:<br/> Introduce virDomainMigrate*CompressionCache APIs (Jiri Denemark),<br/> @@ -9880,7 +9880,7 @@ </li> </ul> - <h3>1.0.0: Nov 2 2012</h3> + <h3>1.0.0: Nov 02 2012</h3> <ul> <li>Features:<br/> virNodeGetCPUMap: Define public API. (Viktor Mihajlovski),<br/> @@ -10241,7 +10241,7 @@ </li> </ul> - <h3>0.10.2: September 24 2012</h3> + <h3>0.10.2: Sep 24 2012</h3> <ul> <li>Features:<br/> network: define new API virNetworkUpdate (Laine Stump),<br/> @@ -10521,7 +10521,7 @@ </li> </ul> - <h3>0.10.1: August 31 2012</h3> + <h3>0.10.1: Aug 31 2012</h3> <ul> <li>Bug Fixes:<br/> conf: Avoid formatting auto-generated DAC labels (Marcelo Cerri),<br/> @@ -10569,7 +10569,7 @@ </li> </ul> - <h3>0.10.0: August 29 2012</h3> + <h3>0.10.0: Aug 29 2012</h3> <ul> <li>Features:<br/> agent: add qemuAgentArbitraryCommand() for general qemu agent command (MATSUDA Daiki),<br/> @@ -11131,7 +11131,7 @@ </li> </ul> - <h3>0.9.13: July 2 2012</h3> + <h3>0.9.13: July 02 2012</h3> <ul> <li>Features:<br/> S390: support for s390(x) (Thang Pham and Viktor Mihajlovski),<br/> @@ -11689,7 +11689,7 @@ </li> </ul> - <h3>0.9.11: Apr 3 2012</h3> + <h3>0.9.11: Apr 03 2012</h3> <ul> <li>Features:<br/> Add support for the suspend event (Osier Yang),<br/> @@ -12322,7 +12322,7 @@ </li> </ul> - <h3>0.9.9: Jan 7 2012</h3> + <h3>0.9.9: Jan 07 2012</h3> <ul> <li>Features:<br/> Add new API virDomain{S,G}etInterfaceParameters (Hu Tao),<br/> @@ -12486,7 +12486,7 @@ </li> </ul> - <h3>0.9.8: Dec 8 2011</h3> + <h3>0.9.8: Dec 08 2011</h3> <ul> <li>Features:<br/> Add support for QEMU 1.0 (Jiri Denemark),<br/> @@ -12774,7 +12774,7 @@ </li> </ul> - <h3>0.9.7: Nov 8 2011</h3> + <h3>0.9.7: Nov 08 2011</h3> <ul> <li>Features:<br/> esx: support vSphere 5.x (Patrice LACHANCE),<br/> @@ -13513,7 +13513,7 @@ </li> </ul> - <h3>0.9.4: Aug 3 2011</h3> + <h3>0.9.4: Aug 03 2011</h3> <ul> <li>Features:<br/> bandwidth QoS control (Michal Privoznik),<br/> @@ -13943,7 +13943,7 @@ </li> </ul> - <h3>0.9.3: Jul 4 2011</h3> + <h3>0.9.3: Jul 04 2011</h3> <ul> <li>Features:<br/> vcpupin: introduce the new libvirt API (virDomainGetVcpupinInfo) (Taku Izumi),<br/> @@ -14284,7 +14284,7 @@ </li> </ul> - <h3>0.9.2: Jun 6 2011</h3> + <h3>0.9.2: Jun 06 2011</h3> <ul> <li>Features:<br/> Framework for lock manager plugins (Daniel P. Berrange),<br/> @@ -14691,7 +14691,7 @@ </li> </ul> - <h3>0.9.1: May 5 2011</h3> + <h3>0.9.1: May 05 2011</h3> <ul> <li>Features:<br/> support various persistent domain updates (KAMEZAWA Hiroyuki),<br/> @@ -14925,7 +14925,7 @@ </li> </ul> - <h3>0.9.0: Apr 4 2011</h3> + <h3>0.9.0: Apr 04 2011</h3> <ul> <li>Features:<br/> Support cputune cpu usage tuning (Osier Yang and Nikunj A. Dadhania),<br/> @@ -15561,7 +15561,7 @@ </li> </ul> - <h3>0.8.7: Jan 4 2011</h3> + <h3>0.8.7: Jan 04 2011</h3> <ul> <li>Features:<br/> Preliminary support for VirtualBox 4.0 (Matthias Bolte),<br/> @@ -16395,7 +16395,7 @@ </li> </ul> - <h3>0.8.3: Aug 4 2010</h3> + <h3>0.8.3: Aug 04 2010</h3> <ul> <li>Features:<br/> esx: Support vSphere 4.1 (Matthias Bolte),<br/> @@ -16569,7 +16569,7 @@ </li> </ul> - <h3>0.8.2: Jul 5 2010</h3> + <h3>0.8.2: Jul 05 2010</h3> <ul> <li>Features:<br/> phyp: adding support for IVM (Eduardo Otubo),<br/> @@ -17468,7 +17468,7 @@ </li> </ul> - <h3>0.7.7: Mar 5 2010</h3> + <h3>0.7.7: Mar 05 2010</h3> <ul> <li>Features:<br/> Introduce public API for domain async job handling (Daniel P. Berrange),<br/> @@ -17730,7 +17730,7 @@ </li> </ul> - <h3>0.7.6: Feb 3 2010</h3> + <h3>0.7.6: Feb 03 2010</h3> <ul> <li>Features:<br/> Implement support for multi IQN (David Allan),<br/> @@ -18821,7 +18821,7 @@ </li> </ul> - <h3>0.7.0: Aug 5 2009</h3> + <h3>0.7.0: Aug 05 2009</h3> <ul> <li>Features:<br/> Interface implementation based on netcf (Laine Stump, Daniel Veillard),<br/> @@ -19087,7 +19087,7 @@ </li> </ul> - <h3>0.6.5: Jul 3 2009</h3> + <h3>0.6.5: Jul 03 2009</h3> <ul> <li>Features:<br/> create storage columes on disk backend (Henrik Persson),<br/> @@ -19299,7 +19299,7 @@ </li> </ul> - <h3>0.6.2: Apr 3 2009</h3> + <h3>0.6.2: Apr 03 2009</h3> <ul> <li>Features:<br/> support SASL auth for VNC server (Daniel Berrange),<br/> @@ -19365,7 +19365,7 @@ </li> </ul> - <h3>0.6.1: Mar 3 2009</h3> + <h3>0.6.1: Mar 03 2009</h3> <ul> <li>Features:<br/> new APIs for Node device detach reattach and reset (Mark McLoughlin),<br/> @@ -19561,7 +19561,7 @@ </li> </ul> - <h3>0.5.1: Dec 4 2008</h3> + <h3>0.5.1: Dec 04 2008</h3> <ul> <li>Portability:<br/> fix missing dep in spec file,<br/> @@ -19745,7 +19745,7 @@ </li> </ul> - <h3>0.4.5: Sep 8 2008</h3> + <h3>0.4.5: Sep 08 2008</h3> <ul> <li>Features:<br/> NETNS support for Linux containers (Dan Smith),<br/> @@ -19975,7 +19975,7 @@ </li> </ul> - <h3>0.4.2: Apr 8 2008</h3> + <h3>0.4.2: Apr 08 2008</h3> <ul> <li>Features:<br/> memory operation for QEmu/KVM driver (Cole Robinson),<br/> @@ -20034,7 +20034,7 @@ </li> </ul> - <h3>0.4.1: Mar 3 2008</h3> + <h3>0.4.1: Mar 03 2008</h3> <ul> <li>Features:<br/> build on MacOSX (Richard Jones),<br/> @@ -20358,7 +20358,7 @@ </li> </ul> - <h3>0.3.0: Jul 9 2007</h3> + <h3>0.3.0: Jul 09 2007</h3> <ul> <li>Features:<br/> Secure Remote support (Richard Jones). @@ -20421,7 +20421,7 @@ </li> </ul> - <h3>0.2.3: Jun 8 2007</h3> + <h3>0.2.3: Jun 08 2007</h3> <ul> <li>Documentation:<br/> documentation for upcoming remote access (Richard Jones),<br/> @@ -20730,7 +20730,7 @@ </li> </ul> - <h3>0.1.5: Sep 5 2006</h3> + <h3>0.1.5: Sep 05 2006</h3> <ul> <li>Features:<br/> Support for new hypercalls change in Xen changeset 86d26e6ec89b<br/> @@ -20805,7 +20805,7 @@ </li> </ul> - <h3>0.1.2: Jul 3 2006</h3> + <h3>0.1.2: Jul 03 2006</h3> <ul> <li>Features:<br/> proxy mechanism for unprivileged read-only access by http<br/> @@ -20936,7 +20936,7 @@ </li> </ul> - <h3>0.0.3: Feb 9 2006</h3> + <h3>0.0.3: Feb 09 2006</h3> <ul> <li>Features:<br/> Switch name from 'libvir' to libvirt,<br/> -- 2.4.3

On Wed, Oct 14, 2015 at 10:35:56AM +0200, Andrea Bolognani wrote:
Oh boy, where to start :)
Patch 01 fixes the XSLT stylesheet used to generate the plain text NEWS file from docs/news.html.in. This has been broken for at least two years, based on the oldest release archive available on the website.
Patches 02-05 clean up some very simple mistakes.
Patches 06-09 are the juicy bits: very old entries were not as tidy as recent ones, so I went through them and polished them up to bring them up to standard. It would be great if someone who was around from the early days, ideally DV, could go over patch 09 in particular, since categorizing old changes I know barely nothing about is by definition prone to error.
I don't think you need to worry about that since you kept most of them categorized as they were.
Patches 10-15 go over everything one last time for that extra shiny finish.
Cheers.
PS: Patch 07 contains an awfully long line that git-send-email warns me about. I'll try to sent it anyway, but if it doesn't make it to the list that's probably the reason.
I see you followed the majority with your decisions, so that's good, even though in some cases some new wind would be nice, but that can be done after this series. I feel like we all agree about the future split and so there is no need for waiting till we reach a consensus. So ACK from me, with all the things that I pointed out fixed (unless they are fixed in another patch and I missed that). It'd be also nice to leave the first patch at the end or after the split, as mentioned in reply to that particular patch. I leave it up to you whether you want to wait for anyone else's cross-check (multiple puns intended). Have a pleasant day, Martin
participants (3)
-
Andrea Bolognani
-
Daniel P. Berrange
-
Martin Kletzander