Compare commits

...

12 Commits
master ... f19

Author SHA1 Message Date
Cole Robinson 70259b9e6d Rebased to version 1.0.5.9
Fix crash in virDBusAddWatch (bz #885445)
Cleanup migration ports when migration is cancelled (bz #1018530)
CVE-2013-6458 libvirt: qemu: job usage issue in several APIs leading to libvirtd crash (bz #1054206, bz #1048631)
CVE-2013-6436 libvirt: crash in lxcDomainGetMemoryParameters (bz #1049136, bz #1042252)
2014-01-16 21:04:56 -05:00
Cole Robinson 22b38f48dd Rebased to version 1.0.5.8
Fix occasional libvirt-guests.service startup failure
Fix return code of baselineCPU python API (bz #1033039)
Don't reload libvirt-guests when libvirt-client is updated (bz #962225)
Fix infinite loop in libvirt_lxc (bz #1005570)
Fix vdsm-tool segfault during vdsm startup (bz #1034312)
2013-12-14 16:04:21 -05:00
Cole Robinson 3cd39d3433 Fix attaching ISO from cifs filesystem (bz #1012085)
Fix crash with libxl driver and vcpu affinity (bz #1013045)
2013-11-17 18:16:40 -05:00
Cole Robinson 849affdb91 Explicitly BuildRequires libgcrypt 2013-11-06 14:03:25 -05:00
Cole Robinson 7794640832 Rebased to version 1.0.5.7
Fix memory limit to not incorrectly invoke OOM killer on qemu (bz #966939)
2013-11-06 13:28:55 -05:00
Cole Robinson e28b6e1c9e Fix virsh vol-resize (bz #1014874)
Fix nwfilter crash during firewalld install (bz #1014933)
Allow QoS change with update-device (bz #1014200)
2013-10-06 15:05:58 -04:00
Cole Robinson d9ecf7e613 Fix snapshot restore when VM has disabled usb support (bz #1011520) 2013-09-24 10:30:12 -04:00
Cole Robinson d6a3b6d110 Rebased to version 1.0.5.6
Fix blockjobinfo python API (bz #999077)
CVE-2013-4311: Insecure polkit usage (bz #1009539, bz #1005332)
CVE-2013-4296: Invalid free memory stats (bz #1006173, bz #1009667)
CVE-2013-4291: Supplementary groups handling (bz #1006509, bz #1006511)
CVE-2013-5651: virBitmapParse out-of-bounds (bz #1006493)
Fix virsh change-media with block disk type (bz #951192)
Fix changing VNC listen address (bz #1006697)
2013-09-20 17:27:27 -04:00
Cole Robinson e087e97da0 Rebased to version 1.0.5.5
Really fix /dev/tty inside a container (bz #982317)
Fix possible deadlock from getpwuid_r (bz #964358)
2013-08-01 19:33:57 -04:00
Cole Robinson fbb6556eab Rebased to version 1.0.5.4
Fix crash on migration
2013-07-12 13:15:40 -04:00
Cole Robinson dcfcd3ea1c Rebased to version 1.0.5.3
Allow /dev/tty in LXC container (bz #982317)
Fix cpu hot-add with latest qemu (bz #979260)
Fix crash in udev logging (bz #969152)
2013-07-11 18:38:15 -04:00
Cole Robinson 2ad6f244f3 Rebased to version 1.0.5.2
Don't error if disk resize isn't multiple of 512 (bz #951495)
Fix racey cgroup error at VM startup (bz #965169)
Fix crash in nwfilter at daemon shutdown (bz #967740)
Fix 'tray is locked' error on media eject (bz #967914)
Error on invalid combo of --tunnelled and --copy-storage (bz #968043)
2013-06-12 17:53:54 -04:00
2 changed files with 70 additions and 4 deletions

View File

@ -340,7 +340,7 @@
Summary: Library providing a simple virtualization API
Name: libvirt
Version: 1.0.5.1
Version: 1.0.5.9
Release: 1%{?dist}%{?extra_release}
License: LGPLv2+
Group: Development/Libraries
@ -410,6 +410,7 @@ BuildRequires: readline-devel
BuildRequires: ncurses-devel
BuildRequires: gettext
BuildRequires: libtasn1-devel
BuildRequires: libgcrypt-devel
BuildRequires: gnutls-devel
BuildRequires: libattr-devel
%if %{with_libvirtd}
@ -474,8 +475,7 @@ BuildRequires: cyrus-sasl-devel
%endif
%if %{with_polkit}
%if 0%{?fedora} >= 12 || 0%{?rhel} >= 6
# Only need the binary, not -devel
BuildRequires: polkit >= 0.93
BuildRequires: polkit-devel >= 0.93
%else
BuildRequires: PolicyKit-devel >= 0.6
%endif
@ -2005,6 +2005,72 @@ fi
%endif
%changelog
* Thu Jan 16 2014 Cole Robinson <crobinso@redhat.com> - 1.0.5.9-1
- Rebased to version 1.0.5.9
- Fix crash in virDBusAddWatch (bz #885445)
- Cleanup migration ports when migration is cancelled (bz #1018530)
- CVE-2013-6458 libvirt: qemu: job usage issue in several APIs leading to
libvirtd crash (bz #1054206, bz #1048631)
- CVE-2013-6436 libvirt: crash in lxcDomainGetMemoryParameters (bz #1049136,
bz #1042252)
* Sat Dec 14 2013 Cole Robinson <crobinso@redhat.com> - 1.0.5.8-1
- Rebased to version 1.0.5.8
- Fix occasional libvirt-guests.service startup failure
- Fix return code of baselineCPU python API (bz #1033039)
- Don't reload libvirt-guests when libvirt-client is updated (bz #962225)
- Fix infinite loop in libvirt_lxc (bz #1005570)
- Fix vdsm-tool segfault during vdsm startup (bz #1034312)
* Sun Nov 17 2013 Cole Robinson <crobinso@redhat.com> - 1.0.5.7-2
- Fix attaching ISO from cifs filesystem (bz #1012085)
- Fix crash with libxl driver and vcpu affinity (bz #1013045)
* Wed Nov 06 2013 Cole Robinson <crobinso@redhat.com> - 1.0.5.7-1
- Rebased to version 1.0.5.7
- Fix memory limit to not incorrectly invoke OOM killer on qemu (bz #966939)
* Sun Oct 06 2013 Cole Robinson <crobinso@redhat.com> - 1.0.5.6-3
- Fix virsh vol-resize (bz #1014874)
- Fix nwfilter crash during firewalld install (bz #1014933)
- Allow QoS change with update-device (bz #1014200)
* Tue Sep 24 2013 Cole Robinson <crobinso@redhat.com> - 1.0.5.6-2
- Fix snapshot restore when VM has disabled usb support (bz #1011520)
* Fri Sep 20 2013 Cole Robinson <crobinso@redhat.com> - 1.0.5.6-1
- Rebased to version 1.0.5.6
- Fix blockjobinfo python API (bz #999077)
- CVE-2013-4311: Insecure polkit usage (bz #1009539, bz #1005332)
- CVE-2013-4296: Invalid free memory stats (bz #1006173, bz #1009667)
- CVE-2013-4291: Supplementary groups handling (bz #1006509, bz #1006511)
- CVE-2013-5651: virBitmapParse out-of-bounds (bz #1006493)
- Fix virsh change-media with block disk type (bz #951192)
- Fix changing VNC listen address (bz #1006697)
* Thu Aug 01 2013 Cole Robinson <crobinso@redhat.com> - 1.0.5.5-1
- Rebased to version 1.0.5.5
- Really fix /dev/tty inside a container (bz #982317)
- Fix possible deadlock from getpwuid_r (bz #964358)
* Fri Jul 12 2013 Cole Robinson <crobinso@redhat.com> - 1.0.5.4-1
- Rebased to version 1.0.5.4
- Fix crash on migration
* Thu Jul 11 2013 Cole Robinson <crobinso@redhat.com> - 1.0.5.3-1
- Rebased to version 1.0.5.3
- Allow /dev/tty in LXC container (bz #982317)
- Fix cpu hot-add with latest qemu (bz #979260)
- Fix crash in udev logging (bz #969152)
* Wed Jun 12 2013 Cole Robinson <crobinso@redhat.com> - 1.0.5.2-1
- Rebased to version 1.0.5.2
- Don't error if disk resize isn't multiple of 512 (bz #951495)
- Fix racey cgroup error at VM startup (bz #965169)
- Fix crash in nwfilter at daemon shutdown (bz #967740)
- Fix 'tray is locked' error on media eject (bz #967914)
- Error on invalid combo of --tunnelled and --copy-storage (bz #968043)
* Sun May 19 2013 Cole Robinson <crobinso@redhat.com> - 1.0.5.1-1
- Rebased to version 1.0.5.1
- Follow updated packaging guidelines for user alloc (bz #924501)

View File

@ -1 +1 @@
a5cfdbeccf6dc02d38dc28994bd50d74 libvirt-1.0.5.1.tar.gz
afa29733960ea46fd0c1294d87298923 libvirt-1.0.5.9.tar.gz