Blame SPECS/libvirt-python.spec

b79911
b79911
%define with_python3 0
b79911
%if 0%{?fedora} > 18
b79911
%define with_python3 1
b79911
%endif
b79911
b79911
Summary: The libvirt virtualization API python2 binding
b79911
Name: libvirt-python
b79911
Version: 1.2.8
8d788e
Release: 7%{?dist}.1%{?extra_release}
b79911
Source0: http://libvirt.org/sources/python/%{name}-%{version}.tar.gz
b79911
b79911
Patch1: libvirt-python-libvirt-override-fix-some-build-warnings.patch
b79911
Patch2: libvirt-python-override-Fix-two-uninitialized-variables-in-convertDomainStatsRecord.patch
b79911
Patch3: libvirt-python-generator-Free-strings-after-libvirt_charPtrWrap.patch
b79911
Patch4: libvirt-python-Fix-parsing-of-flags-argument-for-bulk-stats-functions.patch
b79911
Patch5: libvirt-python-flags-cannot-get-right-value-for-blockCopy-function.patch
b79911
Patch6: libvirt-python-virDomainBlockCopy-initialize-flags-to-0.patch
b79911
Patch7: libvirt-python-implement-new-tunable-event.patch
b79911
Patch8: libvirt-python-RHEL-change-version-checking-from-1.2.9-to-1.2.8-for-tunable-event.patch
b79911
Patch9: libvirt-python-Check-return-value-of-libvirt_uintUnwrap.patch
b79911
Patch10: libvirt-python-event-Add-bindings-for-agent-lifecycle-event.patch
b79911
Patch11: libvirt-python-RHEL-only-downgrade-version-check-for-agent-lifecycle-event.patch
b79911
b79911
Url: http://libvirt.org
b79911
License: LGPLv2+
b79911
Group: Development/Libraries
b79911
BuildRequires: git
8d788e
BuildRequires: libvirt-devel >= 1.2.8-16.el7_1.1
b79911
BuildRequires: python-devel
b79911
BuildRequires: python-nose
b79911
BuildRequires: python-lxml
b79911
%if %{with_python3}
b79911
BuildRequires: python3-devel
b79911
BuildRequires: python3-nose
b79911
BuildRequires: python3-lxml
b79911
%endif
b79911
b79911
# Don't want provides for python shared objects
b79911
%{?filter_provides_in: %filter_provides_in %{python_sitearch}/.*\.so}
b79911
%{?filter_setup}
b79911
b79911
%description
b79911
The libvirt-python package contains a module that permits applications
b79911
written in the Python programming language to use the interface
b79911
supplied by the libvirt library to use the virtualization capabilities
b79911
of recent versions of Linux (and other OSes).
b79911
b79911
%if %{with_python3}
b79911
%package -n libvirt-python3
b79911
Summary: The libvirt virtualization API python3 binding
b79911
Url: http://libvirt.org
b79911
License: LGPLv2+
b79911
Group: Development/Libraries
b79911
b79911
%description -n libvirt-python3
b79911
The libvirt-python package contains a module that permits applications
b79911
written in the Python programming language to use the interface
b79911
supplied by the libvirt library to use the virtualization capabilities
b79911
of recent versions of Linux (and other OSes).
b79911
%endif
b79911
b79911
%prep
b79911
%setup -q
b79911
b79911
# Patches have to be stored in a temporary file because RPM has
b79911
# a limit on the length of the result of any macro expansion;
b79911
# if the string is longer, it's silently cropped
b79911
%{lua:
b79911
    tmp = os.tmpname();
b79911
    f = io.open(tmp, "w+");
b79911
    count = 0;
b79911
    for i, p in ipairs(patches) do
b79911
        f:write(p.."\n");
b79911
        count = count + 1;
b79911
    end;
b79911
    f:close();
b79911
    print("PATCHCOUNT="..count.."\n")
b79911
    print("PATCHLIST="..tmp.."\n")
b79911
}
b79911
b79911
git init -q
b79911
git config user.name rpm-build
b79911
git config user.email rpm-build
b79911
git config gc.auto 0
b79911
git add .
b79911
git commit -q -a --author 'rpm-build <rpm-build>' \
b79911
           -m '%{name}-%{version} base'
b79911
b79911
COUNT=$(grep '\.patch$' $PATCHLIST | wc -l)
b79911
if [ $COUNT -ne $PATCHCOUNT ]; then
b79911
    echo "Found $COUNT patches in $PATCHLIST, expected $PATCHCOUNT"
b79911
    exit 1
b79911
fi
b79911
if [ $COUNT -gt 0 ]; then
b79911
    xargs git am <$PATCHLIST || exit 1
b79911
fi
b79911
echo "Applied $COUNT patches"
b79911
rm -f $PATCHLIST
b79911
b79911
b79911
%build
b79911
CFLAGS="$RPM_OPT_FLAGS" %{__python} setup.py build
b79911
%if %{with_python3}
b79911
CFLAGS="$RPM_OPT_FLAGS" %{__python3} setup.py build
b79911
%endif
b79911
b79911
%install
b79911
%{__python} setup.py install --skip-build --root=%{buildroot}
b79911
%if %{with_python3}
b79911
%{__python3} setup.py install --skip-build --root=%{buildroot}
b79911
%endif
b79911
rm -f %{buildroot}%{_libdir}/python*/site-packages/*egg-info
b79911
b79911
%check
b79911
%{__python} setup.py test
b79911
%if %{with_python3}
b79911
%{__python3} setup.py test
b79911
%endif
b79911
b79911
%files
b79911
%defattr(-,root,root)
b79911
%doc ChangeLog AUTHORS NEWS README COPYING COPYING.LESSER examples/
b79911
%{_libdir}/python2*/site-packages/libvirt.py*
b79911
%{_libdir}/python2*/site-packages/libvirt_qemu.py*
b79911
%{_libdir}/python2*/site-packages/libvirt_lxc.py*
b79911
%{_libdir}/python2*/site-packages/libvirtmod*
b79911
b79911
%if %{with_python3}
b79911
%files -n libvirt-python3
b79911
%defattr(-,root,root)
b79911
%doc ChangeLog AUTHORS NEWS README COPYING COPYING.LESSER examples/
b79911
%{_libdir}/python3*/site-packages/libvirt.py*
b79911
%{_libdir}/python3*/site-packages/libvirt_qemu.py*
b79911
%{_libdir}/python3*/site-packages/libvirt_lxc.py*
b79911
%{_libdir}/python3*/site-packages/__pycache__/libvirt.cpython-*.py*
b79911
%{_libdir}/python3*/site-packages/__pycache__/libvirt_qemu.cpython-*.py*
b79911
%{_libdir}/python3*/site-packages/__pycache__/libvirt_lxc.cpython-*.py*
b79911
%{_libdir}/python3*/site-packages/libvirtmod*
b79911
%endif
b79911
b79911
%changelog
8d788e
* Wed Feb 25 2015 Jiri Denemark <jdenemar@redhat.com> - 1.2.8-7.el7_1.1
8d788e
- Rebuild libvirt python bindings for COPY_DEV flag (rhbz#1196067)
8d788e
b79911
* Wed Dec 17 2014 Jiri Denemark <jdenemar@redhat.com> - 1.2.8-7
b79911
- Rebuild libvirt-python to pick up the new flag for fetching backing chain statistics (rhbz#1175276)
b79911
b79911
* Tue Nov 25 2014 Jiri Denemark <jdenemar@redhat.com> - 1.2.8-6
b79911
- event: Add bindings for agent lifecycle event (rhbz#1167336)
b79911
- RHEL-only: downgrade version check for agent lifecycle event (rhbz#1167336)
b79911
b79911
* Thu Nov  6 2014 Jiri Denemark <jdenemar@redhat.com> - 1.2.8-5
b79911
- Fix parsing of 'flags' argument for bulk stats functions (rhbz#1155016)
b79911
- flags cannot get right value for blockCopy function (rhbz#1155484)
b79911
- virDomainBlockCopy: initialize flags to 0 (rhbz#1155484)
b79911
- implement new tunable event (rhbz#1147639)
b79911
- RHEL: change version checking from 1.2.9 to 1.2.8 for tunable event (rhbz#1147639)
b79911
- Check return value of libvirt_uintUnwrap (rhbz#1161039)
b79911
- Rebuild libvirt-python to pick up new additions to libvirt.h (rhbz#1160792)
b79911
b79911
* Mon Sep 29 2014 Jiri Denemark <jdenemar@redhat.com> - 1.2.8-4
b79911
- Rebuild libvirt-python to pick up new additions to libvirt.h (rhbz#1147022)
b79911
b79911
* Fri Sep 19 2014 Jiri Denemark <jdenemar@redhat.com> - 1.2.8-3
b79911
- generator: Free strings after libvirt_charPtrWrap (rhbz#1140998)
b79911
- Rebuild to pick up the new flag for removing NVRAM files (rhbz#1144284)
b79911
b79911
* Wed Sep 10 2014 Jiri Denemark <jdenemar@redhat.com> - 1.2.8-2
b79911
- override: Fix two uninitialized variables in convertDomainStatsRecord (rhbz#1136354)
b79911
- Rebuild to pick up the new flag for completed migration stats (rhbz#1138570)
b79911
b79911
* Tue Sep  2 2014 Jiri Denemark <jdenemar@redhat.com> - 1.2.8-1
b79911
- Rebased to libvirt-python-1.2.8 (rhbz#1116978)
b79911
- libvirt-override: fix some build warnings (rhbz#1116978)
b79911
b79911
* Tue Aug  5 2014 Jiri Denemark <jdenemar@redhat.com> - 1.2.7-1
b79911
- Rebased to libvirt-python-1.2.7 (rhbz#1116978)
b79911
b79911
* Fri Aug  1 2014 Jiri Denemark <jdenemar@redhat.com> - 1.2.6-1
b79911
- Rebased to libvirt-python-1.2.6 (rhbz#1116978)
b79911
b79911
* Mon Mar 24 2014 Jiri Denemark <jdenemar@redhat.com> - 1.1.1-29
b79911
- nwfilter: Increase buffer size for libpcap (rhbz#1078347)
b79911
- nwfilter: Display pcap's error message when pcap setup fails (rhbz#1078347)
b79911
- nwfilter: Fix double free of pointer (rhbz#1071181)
b79911
b79911
* Tue Mar 18 2014 Jiri Denemark <jdenemar@redhat.com> - 1.1.1-28
b79911
- qemu: Forbid "sgio" support for SCSI generic host device (rhbz#957292)
b79911
- qemu: monitor: Fix invalid parentheses (rhbz#1075973)
b79911
- qemu: Introduce qemuDomainDefCheckABIStability (rhbz#1076503)
b79911
b79911
* Wed Mar 12 2014 Jiri Denemark <jdenemar@redhat.com> - 1.1.1-27
b79911
- spec: Let translations be properly updated (rhbz#1030368)
b79911
- Update translation to supported languages (rhbz#1030368)
b79911
- Add a mutex to serialize updates to firewall (rhbz#1074003)
b79911
b79911
* Wed Mar  5 2014 Jiri Denemark <jdenemar@redhat.com> - 1.1.1-26
b79911
- virNetDevVethCreate: Serialize callers (rhbz#1014604)
b79911
- qemuBuildNicDevStr: Adapt to new advisory on multiqueue (rhbz#1071888)
b79911
b79911
* Wed Feb 26 2014 Jiri Denemark <jdenemar@redhat.com> - 1.1.1-25
b79911
- maint: fix comma style issues: conf (rhbz#1032370)
b79911
- Allow <source> for type=block to have no dev (rhbz#1032370)
b79911
- Allow LUN type disks to have no source (rhbz#1032370)
b79911
- virsh-volume: Unify strigification of volume type (rhbz#1032370)
b79911
- conf: Refactor virDomainDiskSourcePoolDefParse (rhbz#1032370)
b79911
- conf: Split out code to parse the source of a disk definition (rhbz#1032370)
b79911
- conf: Rename virDomainDiskHostDefFree to virDomainDiskHostDefClear (rhbz#1032370)
b79911
- conf: Refactor virDomainDiskSourceDefParse (rhbz#1032370)
b79911
- storage: fix RNG validation of gluster via netfs (rhbz#1032370)
b79911
- maint: fix comment typos. (rhbz#1032370)
b79911
- storage: use valid XML for awkward volume names (rhbz#1032370)
b79911
- build: Don't fail on '< ' or '> ' with old xmllint (rhbz#1032370)
b79911
- storage: allow interleave in volume XML (rhbz#1032370)
b79911
- storage: expose volume meta-type in XML (rhbz#1032370)
b79911
- storage: initial support for linking with libgfapi (rhbz#1032370)
b79911
- storage: document existing pools (rhbz#1032370)
b79911
- storage: document gluster pool (rhbz#1032370)
b79911
- storage: implement rudimentary glusterfs pool refresh (rhbz#1032370)
b79911
- storage: add network-dir as new storage volume type (rhbz#1032370)
b79911
- storage: improve directory support in gluster pool (rhbz#1032370)
b79911
- storage: improve allocation stats reported on gluster files (rhbz#1032370)
b79911
- storage: improve handling of symlinks in gluster (rhbz#1032370)
b79911
- storage: probe qcow2 volumes in gluster pool (rhbz#1032370)
b79911
- storage: fix typo in previous patch (rhbz#1032370)
b79911
- conf: Export virStorageVolType enum helper functions (rhbz#1032370)
b79911
- test: Implement fake storage pool driver in qemuxml2argv test (rhbz#1032370)
b79911
- storage: reduce number of stat calls (rhbz#1032370)
b79911
- storage: use simpler 'char *' (rhbz#1032370)
b79911
- storage: refactor backing chain division of labor (rhbz#1032370)
b79911
- storage: always probe type with buffer (rhbz#1032370)
b79911
- storage: don't read storage volumes in nonblock mode (rhbz#1032370)
b79911
- storage: skip selinux cleanup when fd not available (rhbz#1032370)
b79911
- storage: use correct type for array count (rhbz#1032370)
b79911
- storage: allow interleave in pool XML (rhbz#1032370)
b79911
- qemuxml2argv: Add test to verify correct usage of disk type="volume" (rhbz#1032370)
b79911
- qemuxml2argv: Add test for disk type='volume' with iSCSI pools (rhbz#1032370)
b79911
- tests: Fix comment for fake storage pool driver (rhbz#1032370)
b79911
- conf: Support disk source formatting without needing a virDomainDiskDefPtr (rhbz#1032370)
b79911
- conf: Clean up virDomainDiskSourceDefFormatInternal (rhbz#1032370)
b79911
- conf: Split out seclabel formating code for disk source (rhbz#1032370)
b79911
- conf: Export disk source formatter and parser (rhbz#1032370)
b79911
- snapshot: conf: Use common parsing and formatting functions for source (rhbz#1032370)
b79911
- snapshot: conf: Fix NULL dereference when <driver> element is empty (rhbz#1032370)
b79911
- conf: Add functions to copy and free network disk source definitions (rhbz#1032370)
b79911
- qemu: snapshot: Detect internal snapshots also for sheepdog and RBD (rhbz#1032370)
b79911
- conf: Add helper do clear disk source authentication struct (rhbz#1032370)
b79911
- qemu: snapshot: Touch up error message (rhbz#1032370)
b79911
- qemu: snapshot: Add functions similar to disk source pool translation (rhbz#1032370)
b79911
- qemu: Refactor qemuTranslateDiskSourcePool (rhbz#1032370)
b79911
- qemu: Split out formatting of network disk source URI (rhbz#1032370)
b79911
- qemu: Simplify call pattern of qemuBuildDriveURIString (rhbz#1032370)
b79911
- qemu: Use qemuBuildNetworkDriveURI to handle http/ftp and friends (rhbz#1032370)
b79911
- qemu: Migrate sheepdog source generation into common function (rhbz#1032370)
b79911
- qemu: Split out NBD command generation (rhbz#1032370)
b79911
- qemu: Unify formatting of RBD sources (rhbz#1032370)
b79911
- qemu: Refactor disk source string formatting (rhbz#1032370)
b79911
- qemu: Clear old translated pool source (rhbz#1032370)
b79911
- qemu: snapshots: Declare supported and unsupported snapshot configs (rhbz#1032370)
b79911
- domainsnapshotxml2xmltest: Clean up labels and use bool instead of int (rhbz#1032370)
b79911
- domainsnapshotxml2xmltest: Allow for better testing of snapshots (rhbz#1032370)
b79911
- domainsnapshotxml2xml: Move files with conflicting names (rhbz#1032370)
b79911
- domainsnapshotxml2xmltest: Add existing files as new tests (rhbz#1032370)
b79911
- domainsnapshotxml2xmltest: Add test case for empty driver element (rhbz#1032370)
b79911
- qemu: Fix indentation in qemuTranslateDiskSourcePool (rhbz#1032370)
b79911
- qemu: snapshot: Fix incorrect disk type for auto-generated disks (rhbz#1032370)
b79911
- storage: fix omitted slash in gluster volume URI (rhbz#1032370)
b79911
- virsh: domain: Fix undefine with storage of 'volume' disks (rhbz#1032370)
b79911
- snapshot: schema: Split out snapshot disk driver definition (rhbz#1032370)
b79911
- storage: Add gluster pool filter and fix virsh pool listing (rhbz#1032370)
b79911
- storage: fix bogus target in gluster volume xml (rhbz#1032370)
b79911
- storage: Improve error message when a storage backend is missing (rhbz#1032370)
b79911
- storage: Break long lines and clean up spaces in storage backend header (rhbz#1032370)
b79911
- storage: Support deletion of volumes on gluster pools (rhbz#1032370)
b79911
- qemu: snapshot: Avoid libvirtd crash when qemu crashes while snapshotting (rhbz#1032370)
b79911
- qemu: snapshot: Forbid snapshots when backing is a scsi passthrough disk (rhbz#1034993)
b79911
- qemu: Avoid crash in qemuDiskGetActualType (rhbz#1032370)
b79911
- snapshot: Add support for specifying snapshot disk backing type (rhbz#1032370)
b79911
- conf: Move qemuDiskGetActualType to virDomainDiskGetActualType (rhbz#1032370)
b79911
- conf: Move qemuSnapshotDiskGetActualType to virDomainSnapshotDiskGetActualType (rhbz#1032370)
b79911
- storage: Add file storage APIs in the default storage driver (rhbz#1032370)
b79911
- storage: add file functions for local and block files (rhbz#1032370)
b79911
- storage: Add storage file backends for gluster (rhbz#1032370)
b79911
- qemu: Switch snapshot deletion to the new API functions (rhbz#1032370)
b79911
- qemu: snapshot: Use new APIs to detect presence of existing storage files (rhbz#1032370)
b79911
- qemu: snapshot: Add support for external active snapshots on gluster (rhbz#1032370)
b79911
- storage: Fix build with older compilers afeter gluster snapshot series (rhbz#1032370)
b79911
- storage: gluster: Don't leak private data when storage file init fails (rhbz#1032370)
b79911
- spec: Use correct versions of libgfapi in RHEL builds (rhbz#1032370)
b79911
- spec: Fix braces around macros (rhbz#1032370)
b79911
- build: use --with-systemd-daemon as configure option (rhbz#1032695)
b79911
- spec: require device-mapper-devel for storage-disk (rhbz#1032695)
b79911
- spec: make systemd_daemon usage configurable (rhbz#1032695)
b79911
b79911
* Tue Feb 25 2014 Jiri Denemark <jdenemar@redhat.com> - 1.1.1-24
b79911
- Block info query: Add check for transient domain (rhbz#1065531)
b79911
- Fix minor typos in messages and docs (rhbz#1045643)
b79911
- LXC: Free variable vroot in lxcDomainDetachDeviceHostdevUSBLive() (rhbz#1045643)
b79911
- LXC: free dst before lxcDomainAttachDeviceDiskLive returns (rhbz#1045643)
b79911
- maint: fix comment typos (rhbz#1045643)
b79911
- storage: avoid short reads while chasing backing chain (rhbz#1045643)
b79911
- Don't block use of USB with containers (rhbz#1045643)
b79911
- Fix path used for USB device attach with LXC (rhbz#1045643)
b79911
- Record hotplugged USB device in LXC live guest config (rhbz#1045643)
b79911
- Fix reset of cgroup when detaching USB device from LXC guests (rhbz#1045643)
b79911
- Disks are always block devices, never character devices (rhbz#1045643)
b79911
- Move check for cgroup devices ACL upfront in LXC hotplug (rhbz#1045643)
b79911
- Add virFileMakeParentPath helper function (rhbz#1045643)
b79911
- Add helper for running code in separate namespaces (rhbz#1045643)
b79911
- CVE-2013-6456: Avoid unsafe use of /proc/$PID/root in LXC shutdown/reboot code (CVE-2013-6456)
b79911
- CVE-2013-6456: Avoid unsafe use of /proc/$PID/root in LXC disk hotplug (CVE-2013-6456)
b79911
- CVE-2013-6456: Avoid unsafe use of /proc/$PID/root in LXC USB hotplug (CVE-2013-6456)
b79911
- CVE-2013-6456: Avoid unsafe use of /proc/$PID/root in LXC block hostdev hotplug (CVE-2013-6456)
b79911
- CVE-2013-6456: Avoid unsafe use of /proc/$PID/root in LXC chardev hostdev hotplug (CVE-2013-6456)
b79911
- CVE-2013-6456: Avoid unsafe use of /proc/$PID/root in LXC hotunplug code (CVE-2013-6456)
b79911
- Ignore additional fields in iscsiadm output (rhbz#1067173)
b79911
- qemuBuildNicDevStr: Set vectors= on Multiqueue (rhbz#1066209)
b79911
- Don't depend on syslog.service (rhbz#1032695)
b79911
- libvirt-guests: Run only after libvirtd (rhbz#1032695)
b79911
- virSystemdCreateMachine: Set dependencies for slices (rhbz#1032695)
b79911
- libvirt-guests: Wait for libvirtd to initialize (rhbz#1032695)
b79911
- virNetServerRun: Notify systemd that we're accepting clients (rhbz#1032695)
b79911
b79911
* Wed Feb 12 2014 Jiri Denemark <jdenemar@redhat.com> - 1.1.1-23
b79911
- Generate a valid imagelabel even for type 'none' (rhbz#1061657)
b79911
- qemu: keep pre-migration domain state after failed migration (rhbz#1057407)
b79911
- schema: Fix guest timer specification schema according to the docs (rhbz#1056205)
b79911
- conf: Enforce supported options for certain timers (rhbz#1056205)
b79911
- qemu: hyperv: Add support for timer enlightenments (rhbz#1056205)
b79911
- build: correctly check for SOICGIFVLAN GET_VLAN_VID_CMD command (rhbz#1062665)
b79911
- util: Add "shareable" field for virSCSIDevice struct (rhbz#957292)
b79911
- util: Fix the indention (rhbz#957292)
b79911
- qemu: Don't fail if the SCSI host device is shareable between domains (rhbz#957292)
b79911
- util: Add one argument for several scsi utils (rhbz#957292)
b79911
- tests: Add tests for scsi utils (rhbz#957292)
b79911
- qemu: Fix the error message for scsi host device's shareable checking (rhbz#957292)
b79911
- util: Accept test data path for scsi device's sg_path (rhbz#957292)
b79911
- tests: Modify the scsi util tests (rhbz#957292)
b79911
- event: move event filtering to daemon (regression fix) (rhbz#1047964)
b79911
b79911
* Wed Feb  5 2014 Jiri Denemark <jdenemar@redhat.com> - 1.1.1-22
b79911
- Add a read/write lock implementation (rhbz#1034807)
b79911
- Push nwfilter update locking up to top level (rhbz#1034807)
b79911
- utils: Introduce functions for kernel module manipulation (rhbz#1045124)
b79911
- virCommand: Introduce virCommandSetDryRun (rhbz#1045124)
b79911
- tests: Add test for new virkmod functions (rhbz#1045124)
b79911
- Honor blacklist for modprobe command (rhbz#1045124)
b79911
- qemu: Be sure we're using the updated value of backend during hotplug (rhbz#1056360)
b79911
- network: Permit upstream forwarding of unqualified DNS names (rhbz#1061099)
b79911
- network: Only prevent forwarding of DNS requests for unqualified names (rhbz#1061099)
b79911
- network: Change default of forwardPlainNames to 'yes' (rhbz#1061099)
b79911
b79911
* Wed Jan 29 2014 Jiri Denemark <jdenemar@redhat.com> - 1.1.1-21
b79911
- util: Correct the NUMA node range checking (rhbz#1045958)
b79911
- storage: Add document for possible problem on volume detection (rhbz#726797)
b79911
- storage: Fix autostart of pool with "fc_host" type adapter (rhbz#726797)
b79911
b79911
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 1.1.1-20
b79911
- Mass rebuild 2014-01-24
b79911
b79911
* Wed Jan 22 2014 Jiri Denemark <jdenemar@redhat.com> - 1.1.1-19
b79911
- CVE-2013-6436: Fix crash in lxcDomainGetMemoryParameters (rhbz#1049137)
b79911
- Fix crash in lxcDomainSetMemoryParameters (rhbz#1052062)
b79911
- Don't crash if a connection closes early (CVE-2014-1447)
b79911
- Really don't crash if a connection closes early (CVE-2014-1447)
b79911
- qemu: Change the default unix monitor timeout (rhbz#892273)
b79911
- virSecuritySELinuxSetFileconHelper: Don't fail on read-only NFS (rhbz#996543)
b79911
- qemu: Avoid operations on NULL monitor if VM fails early (rhbz#1054785)
b79911
- virt-login-shell: Fix regressions in behavior (rhbz#1015247)
b79911
- pci: Make reattach work for unbound devices (rhbz#1046919)
b79911
- pci: Fix failure paths in detach (rhbz#1046919)
b79911
- qemu: Don't detach devices if passthrough doesn't work (rhbz#1046919)
b79911
- Fix migration with QEMU 1.6 (rhbz#1053405)
b79911
- build: More workarounds for if_bridge.h (rhbz#1042937)
b79911
- build: Fix build with latest rawhide kernel headers (rhbz#1042937)
b79911
- aarch64: Disable -fstack-protector. (rhbz#1042937)
b79911
- AArch64: Parse cputopology from /proc/cpuinfo. (rhbz#1042937)
b79911
- virDomainEventCallbackListFree: Don't leak @list->callbacks (rhbz#1047964)
b79911
- Fix memory leak in virObjectEventCallbackListRemoveID() (rhbz#1047964)
b79911
- event: Filter global events by domain:getattr ACL (CVE-2014-0028)
b79911
- Doc: Improve the document for nodesuspend (rhbz#1045089)
b79911
- Doc: Add "note" for node-memory-tune (rhbz#1045089)
b79911
b79911
* Wed Jan  8 2014 Jiri Denemark <jdenemar@redhat.com> - 1.1.1-18
b79911
- qemu: Ask for -enable-fips when FIPS is required (rhbz#1035474)
b79911
- qemu: Properly set MaxMemLock when hotplugging with VFIO (rhbz#1035490)
b79911
- qemu: Avoid duplicate security label restore on hostdev attach failure (rhbz#1035490)
b79911
- qemu: Re-add hostdev interfaces to hostdev array on libvirtd restart (rhbz#1045002)
b79911
- domain: Don't try to interpret <driver> as virtio config for hostdev interfaces (rhbz#1046337)
b79911
- virBitmapParse: Fix behavior in case of error and fix up callers (rhbz#1047234)
b79911
- qemu: Fix live pinning to memory node on NUMA system (rhbz#1047234)
b79911
- qemu: Clean up qemuDomainSetNumaParameters (rhbz#1047234)
b79911
- qemu: Range check numa memory placement mode (rhbz#1047234)
b79911
- virkeycode: Allow ANSI_A (rhbz#1044806)
b79911
- Fix argument order of qemuMigrationPerformJob(). (rhbz#1049338)
b79911
- qemu: Do not access stale data in virDomainBlockStats (CVE-2013-6458)
b79911
- qemu: Avoid using stale data in virDomainGetBlockInfo (CVE-2013-6458)
b79911
- qemu: Fix job usage in qemuDomainBlockJobImpl (CVE-2013-6458)
b79911
- qemu: Fix job usage in qemuDomainBlockCopy (rhbz#1048643)
b79911
- qemu: Fix job usage in virDomainGetBlockIoTune (CVE-2013-6458)
b79911
- PanicCheckABIStability: Need to check for existence (rhbz#996520)
b79911
- virsh: Improve usability of '--print-xml' flag for attach-disk command (rhbz#1049529)
b79911
- virsh: Don't use legacy API if --current is used on device hot(un)plug (rhbz#1049529)
b79911
- virsh: Use inactive definition when removing disk from config (rhbz#1049529)
b79911
b79911
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 1.1.1-17
b79911
- Mass rebuild 2013-12-27
b79911
b79911
* Wed Dec 18 2013 Jiri Denemark <jdenemar@redhat.com> - 1.1.1-16
b79911
- qemu: Check for reboot-timeout on monitor (rhbz#1042690)
b79911
- virsh: Fix return value error of cpu-stats (rhbz#1043388)
b79911
- tools: Fix virsh connect man page (rhbz#1043260)
b79911
- conf: Introduce generic ISA address (rhbz#996520)
b79911
- conf: Add support for panic device (rhbz#996520)
b79911
- qemu: Add support for -device pvpanic (rhbz#996520)
b79911
- Fix invalid read in virNetSASLSessionClientStep debug log (rhbz#1043864)
b79911
- virsh: man: Mention that volumes need to be in storage pool for undefine (rhbz#1044445)
b79911
b79911
* Fri Dec 13 2013 Jiri Denemark <jdenemar@redhat.com> - 1.1.1-15
b79911
- spec: Don't save/restore running VMs on libvirt-client update (rhbz#1033626)
b79911
- qemu: hotplug: Only label hostdev after checking device conflicts (rhbz#1025108)
b79911
- qemu: hotplug: Fix double free on USB collision (rhbz#1025108)
b79911
- qemu: hotplug: Fix adding USB devices to the driver list (rhbz#1025108)
b79911
- docs: Enhance memoryBacking/locked documentation (rhbz#1035954)
b79911
- util: Fix two virCompareLimitUlong bugs (rhbz#1024272)
b79911
- cgroups: Redefine what "unlimited" means wrt memory limits (rhbz#1024272)
b79911
- qemu: Report VIR_DOMAIN_MEMORY_PARAM_UNLIMITED properly (rhbz#1024272)
b79911
- qemu: Fix minor inconsistency in error message (rhbz#1024272)
b79911
- conf: Don't format memtune with unlimited values (rhbz#1024272)
b79911
- qemu_process: Read errors from child (rhbz#1035955)
b79911
- network: Properly update iptables rules during net-update (rhbz#1035336)
b79911
- Tie SASL callbacks lifecycle to virNetSessionSASLContext (rhbz#1039991)
b79911
- screenshot: Implement multiple screen support (rhbz#1026966)
b79911
- Switch to private redhat namespace for QMP I/O error reason (rhbz#1026966)
b79911
- Support virtio disk hotplug in JSON mode (rhbz#1026966)
b79911
b79911
* Fri Dec  6 2013 Jiri Denemark <jdenemar@redhat.com> - 1.1.1-14
b79911
- nodedev: Resolve Relax-NG validity error (rhbz#1035792)
b79911
- test-lib: Make case skipping possible (rhbz#1034380)
b79911
- tests: Don't test user config file if ran as root (rhbz#1034380)
b79911
- Improve cgroups docs to cover systemd integration (rhbz#1004340)
b79911
- Fix busy wait loop in LXC container I/O handling (rhbz#1032705)
b79911
- tests: Guarantee abs_srcdir in all C tests (rhbz#1035403)
b79911
- Introduce standard methods for sorting strings with qsort (rhbz#1035403)
b79911
- Add virFileIsMountPoint function (rhbz#1035403)
b79911
- Pull lxcContainerGetSubtree out into shared virfile module (rhbz#1035403)
b79911
- Fix bug in identifying sub-mounts (rhbz#1035403)
b79911
- LXC: Ensure security context is set when mounting images (rhbz#923903)
b79911
- Ensure to zero out the virDomainBlockJobInfo arg (rhbz#1028846)
b79911
- qemu: Default to vfio for nodedev-detach (rhbz#1035188)
b79911
- daemon: Run virStateCleanup conditionally (rhbz#1033061)
b79911
- qemu: Add "-boot strict" to commandline whenever possible (rhbz#1037593)
b79911
- tests: Add forgotten boot-strict test files (rhbz#1037593)
b79911
- conf: Fix XML formatting of RNG device info (rhbz#1035118)
b79911
- qemu: Improve error when setting invalid count of vcpus via agent (rhbz#1035108)
b79911
- Add qxl ram size to ABI stability check (rhbz#1035123)
b79911
b79911
* Fri Nov 22 2013 Jiri Denemark <jdenemar@redhat.com> - 1.1.1-13
b79911
- virsh-domain: Mark --live and --config mutually exclusive in vcpucount (rhbz#1024245)
b79911
- virSecurityLabelDefParseXML: Don't parse label on model='none' (rhbz#1028962)
b79911
- qemuMonitorIO: Don't use @mon after it's unrefed (rhbz#1018267)
b79911
- qemu: Allow hotplug of multiple SCSI devices (rhbz#1031062)
b79911
- qemu: Call qemuSetupHostdevCGroup later during hotplug (rhbz#1025108)
b79911
- virscsi: Hostdev SCSI AdapterId retrieval fix (rhbz#1031079)
b79911
- storage: Returns earlier if source adapter of the scsi pool is a HBA (rhbz#1027680)
b79911
- spec: Restrict virt-login-shell usage (rhbz#1033614)
b79911
- spec: Don't save/restore running VMs on libvirt-client update (rhbz#1033626)
b79911
- Don't start a nested job in qemuMigrationPrepareAny (rhbz#1018267)
b79911
b79911
* Fri Nov  8 2013 Jiri Denemark <jdenemar@redhat.com> - 1.1.1-12
b79911
- virpci: Don't error on unbinded devices (rhbz#1019387)
b79911
- network: Fix connections count in case of allocate failure (rhbz#1020135)
b79911
- qemu: Clean up migration ports when migration cancelled (rhbz#1019237)
b79911
- qemuMigrationBeginPhase: Check for 'drive-mirror' for NBD (rhbz#1022393)
b79911
- Allow root directory in filesystem source dir schema (rhbz#1028107)
b79911
- Use a port from the migration range for NBD as well (rhbz#1025699)
b79911
- qemu: Avoid double free of VM (rhbz#1018267)
b79911
- util: Use size_t instead of unsigned int for num_virtual_functions (rhbz#1025397)
b79911
- pci: Properly handle out-of-order SRIOV virtual functions (rhbz#1025397)
b79911
- conf: Do better job when comparing features ABI compatibility (rhbz#1008989)
b79911
- schema: Rename option 'hypervtristate' to 'featurestate' (rhbz#1008989)
b79911
- conf: Mark user provided strings in error messages when parsing XML (rhbz#1008989)
b79911
- cpu: Add support for loading and storing CPU data (rhbz#1008989)
b79911
- cpu: x86: Rename struct cpuX86cpuid as virCPUx86CPUID (rhbz#1008989)
b79911
- cpu: x86: Rename struct cpuX86Data as virCPUx86Data (rhbz#1008989)
b79911
- cpu: x86: Rename x86DataFree() as virCPUx86DataFree() (rhbz#1008989)
b79911
- Ensure 'arch' is always set in cpuArchNodeData (rhbz#1008989)
b79911
- cpu: x86: Rename x86MakeCPUData as virCPUx86MakeData (rhbz#1008989)
b79911
- cpu: x86: Rename x86DataAddCpuid as virCPUx86DataAddCPUID (rhbz#1008989)
b79911
- cpu: x86: Rename data_iterator and DATA_ITERATOR_INIT (rhbz#1008989)
b79911
- cpu: x86: Fix return types of x86cpuidMatch and x86cpuidMatchMasked (rhbz#1008989)
b79911
- cpu: x86: Use whitespace to clarify context and use consistent labels (rhbz#1008989)
b79911
- cpu: x86: Clean up error messages in x86VendorLoad() (rhbz#1008989)
b79911
- cpu: Export few x86-specific APIs (rhbz#1008989)
b79911
- cpu: x86: Parse the CPU feature map only once (rhbz#1008989)
b79911
- cpu_x86: Refactor storage of CPUID data to add support for KVM features (rhbz#1008989)
b79911
- qemu: Add monitor APIs to fetch CPUID data from QEMU (rhbz#1008989)
b79911
- cpu: x86: Add internal CPUID features support and KVM feature bits (rhbz#1008989)
b79911
- conf: Refactor storing and usage of feature flags (rhbz#1008989)
b79911
- qemu: Add support for paravirtual spinlocks in the guest (rhbz#1008989)
b79911
- qemu: process: Validate specific CPUID flags of a guest (rhbz#1008989)
b79911
b79911
* Fri Nov  1 2013 Jiri Denemark <jdenemar@redhat.com> - 1.1.1-11
b79911
- Add helpers for getting env vars in a setuid environment (rhbz#1015247)
b79911
- Only allow 'stderr' log output when running setuid (CVE-2013-4400)
b79911
- Close all non-stdio FDs in virt-login-shell (CVE-2013-4400)
b79911
- Don't link virt-login-shell against libvirt.so (CVE-2013-4400)
b79911
- build: Fix linking virt-login-shell (rhbz#1015247)
b79911
- build: Fix build of virt-login-shell on systems with older gnutls (rhbz#1015247)
b79911
- Set a sane $PATH for virt-login-shell (rhbz#1015247)
b79911
- spec: Fix rpm build when lxc disabled (rhbz#1015247)
b79911
- Move virt-login-shell into libvirt-login-shell sub-RPM (rhbz#1015247)
b79911
- Make virCommand env handling robust in setuid env (rhbz#1015247)
b79911
- Remove all direct use of getenv (rhbz#1015247)
b79911
- Block all use of getenv with syntax-check (rhbz#1015247)
b79911
- Only allow the UNIX transport in remote driver when setuid (rhbz#1015247)
b79911
- Don't allow remote driver daemon autostart when running setuid (rhbz#1015247)
b79911
- Add stub getegid impl for platforms lacking it (rhbz#1015247)
b79911
- Remove (nearly) all use of getuid()/getgid() (rhbz#1015247)
b79911
- Block all use of libvirt.so in setuid programs (rhbz#1015247)
b79911
- spec: Clean up distribution of ChangeLog (and others) (rhbz#1024393)
b79911
- Push RPM deps down into libvirt-daemon-driver-XXXX sub-RPMs (rhbz#1024393)
b79911
b79911
* Wed Oct 23 2013 Jiri Denemark <jdenemar@redhat.com> - 1.1.1-10
b79911
- qemu_process: Make qemuProcessReadLog() more versatile and reusable (rhbz#1001738)
b79911
- qemu: monitor: Add infrastructure to access VM logs for better err msgs (rhbz#1001738)
b79911
- qemu: monitor: Produce better errors on monitor hangup (rhbz#1001738)
b79911
- qemu: Wire up better early error reporting (rhbz#1001738)
b79911
- qemu: process: Silence coverity warning when rewinding log file (rhbz#1001738)
b79911
- qemu: hostdev: Refactor PCI passhrough handling (rhbz#1001738)
b79911
- qemu: hostdev: Fix function spacing and header formatting (rhbz#1001738)
b79911
- qemu: hostdev: Add checks if PCI passthrough is available in the host (rhbz#1001738)
b79911
- qemu: Prefer VFIO for PCI device passthrough (rhbz#1001738)
b79911
- qemu: Init @pcidevs in qemuPrepareHostdevPCIDevices (rhbz#1001738)
b79911
- Fix max stream packet size for old clients (rhbz#950416)
b79911
- Adjust legacy max payload size to account for header information (rhbz#950416)
b79911
- rpc: Correct the wrong payload size checking (rhbz#950416)
b79911
- qemu: Simplify calling qemuDomainHostdevNetConfigRestore (rhbz#1005682)
b79911
- qemu: Move qemuDomainRemoveNetDevice to avoid forward reference (rhbz#1005682)
b79911
- qemu: Fix removal of <interface type='hostdev'> (rhbz#1005682)
b79911
- remote: Fix regression in event deregistration (rhbz#1020376)
b79911
- qemu: managedsave: Add support for compressing managed save images (rhbz#1017227)
b79911
- qemu: snapshot: Add support for compressing external snapshot memory (rhbz#1017227)
b79911
- Migration: Introduce VIR_MIGRATE_PARAM_LISTEN_ADDRESS (rhbz#1015215)
b79911
- virsocket: Introduce virSocketAddrIsWildcard (rhbz#1015215)
b79911
- qemu: Implement support for VIR_MIGRATE_PARAM_LISTEN_ADDRESS (rhbz#1015215)
b79911
- qemu_conf: Introduce "migration_address" (rhbz#1015215)
b79911
- qemu: Include listenAddress in debug prints (rhbz#1015215)
b79911
- docs: Expand description of host-model CPU mode (rhbz#1014682)
b79911
- qemu: Avoid assigning unavailable migration ports (rhbz#1019237)
b79911
- qemu: Make migration port range configurable (rhbz#1019237)
b79911
- qemu: Fix augeas support for migration ports (rhbz#1019237)
b79911
- Fix perms for virConnectDomainXML{To, From}Native (CVE-2013-4401)
b79911
b79911
* Tue Oct 15 2013 Jiri Denemark <jdenemar@redhat.com> - 1.1.1-9
b79911
- virNetDevBandwidthEqual: Make it more robust (rhbz#1014503)
b79911
- qemu_hotplug: Allow QoS update in qemuDomainChangeNet (rhbz#1014503)
b79911
- qemu: Check actual netdev type rather than config netdev type during init (rhbz#1012824)
b79911
- Fix crash in libvirtd when events are registered & ACLs active (CVE-2013-4399) (rhbz#1011429)
b79911
- Remove virConnectPtr arg from virNWFilterDefParse* (rhbz#1015108)
b79911
- Don't pass virConnectPtr in nwfilter 'struct domUpdateCBStruct' (rhbz#1015108)
b79911
- Remove use of virConnectPtr from all remaining nwfilter code (rhbz#1015108)
b79911
- Don't set netdev offline in container cleanup (rhbz#1014604)
b79911
- Avoid reporting an error if veth device is already deleted (rhbz#1014604)
b79911
- Avoid deleting NULL veth device name (rhbz#1014604)
b79911
- Retry veth device creation on failure (rhbz#1014604)
b79911
- Use 'vnet' as prefix for veth devices (rhbz#1014604)
b79911
- Free cmd in virNetDevVethDelete (rhbz#1014604)
b79911
- Free cmd in virNetDevVethCreate (rhbz#1014604)
b79911
- LXC: Fix handling of RAM filesystem size units (rhbz#1015689)
b79911
- build: Add lxc testcase to dist list (rhbz#1015689)
b79911
- tests: Work with older dbus (rhbz#1018730)
b79911
- virdbus: Add virDBusHasSystemBus() (rhbz#1018730)
b79911
- virsystemd: Don't fail to start VM if DBus isn't available or compiled in (rhbz#1018730)
b79911
- DBus: Introduce virDBusIsServiceEnabled (rhbz#1018730)
b79911
- Change way we fake dbus method calls (rhbz#1018730)
b79911
- Fix virsystemdtest for previous commit (rhbz#1018730)
b79911
- LXC: Workaround machined uncleaned data with containers running systemd. (rhbz#1018730)
b79911
- Allow use of a private dbus bus connection (rhbz#998365)
b79911
- Add a method for closing the dbus system bus connection (rhbz#998365)
b79911
- Make LXC controller use a private dbus connection & close it (rhbz#998365)
b79911
- Fix flaw in detecting log format (rhbz#927072)
b79911
- Fix exit status of lxc controller (rhbz#927072)
b79911
- Improve error reporting with LXC controller (rhbz#927072)
b79911
- nwfilter: Don't fail to start if DBus isn't available (rhbz#927072)
b79911
- Don't ignore all dbus connection errors (rhbz#927072)
b79911
- LXC: Check the existence of dir before resolving symlinks (rhbz#927072)
b79911
- Ensure lxcContainerMain reports errors on stderr (rhbz#927072)
b79911
- Ensure lxcContainerResolveSymlinks reports errors (rhbz#927072)
b79911
- Improve log filtering in virLXCProcessReadLogOutputData (rhbz#927072)
b79911
- Initialize threading & error layer in LXC controller (rhbz#1018725)
b79911
- qemu_migration: Avoid crashing if domain dies too quickly (rhbz#1018267)
b79911
- Convert uuid to a string before printing it (rhbz#1019023)
b79911
b79911
* Wed Oct  2 2013 Jiri Denemark <jdenemar@redhat.com> - 1.1.1-8
b79911
- conf: Don't crash on invalid chardev source definition of RNGs and other (rhbz#1012196)
b79911
- rpc: Increase bound limit for virDomainGetJobStats (rhbz#1012818)
b79911
- qemu: Free all driver data in qemuStateCleanup (rhbz#1011330)
b79911
- qemu: Don't leak reference to virQEMUDriverConfigPtr (rhbz#1011330)
b79911
- qemu: Eliminate redundant if clauses in qemuCollectPCIAddress (rhbz#1003983)
b79911
- qemu: Allow some PCI devices to be attached to PCIe slots (rhbz#1003983)
b79911
- qemu: Replace multiple strcmps with a switch on an enum (rhbz#1003983)
b79911
- qemu: Support ich9-intel-hda audio device (rhbz#1003983)
b79911
- qemu: Turn if into switch in qemuDomainValidateDevicePCISlotsQ35 (rhbz#1003983)
b79911
- qemu: Prefer to put a Q35 machine's dmi-to-pci-bridge at 00:1E.0 (rhbz#1003983)
b79911
b79911
* Wed Sep 25 2013 Jiri Denemark <jdenemar@redhat.com> - 1.1.1-7
b79911
- Fix crash in remoteDispatchDomainMemoryStats (CVE-2013-4296)
b79911
- LXC: Don't mount securityfs when user namespace enabled (rhbz#872648)
b79911
- Move array of mounts out of lxcContainerMountBasicFS (rhbz#872648)
b79911
- Ensure root filesystem is recursively mounted readonly (rhbz#872648)
b79911
- qemu: Fix seamless SPICE migration (rhbz#1010861)
b79911
- qemu: Use "ide" as device name for implicit SATA controller on Q35 (rhbz#1008903)
b79911
- qemu: Only parse basename when determining emulator properties (rhbz#1010617)
b79911
- qemu: Recognize -machine accel=kvm when parsing native (rhbz#1010617)
b79911
- qemu: Don't leave shutdown inhibited on attach failure (rhbz#1010617)
b79911
- qemu: Don't leak vm on failure (rhbz#1010617)
b79911
- Fix typo in identity code which is pre-requisite for CVE-2013-4311 (rhbz#1006272)
b79911
b79911
* Thu Sep 19 2013 Jiri Denemark <jdenemar@redhat.com> - 1.1.1-6
b79911
- Also store user & group ID values in virIdentity (rhbz#1006272)
b79911
- Ensure system identity includes process start time (rhbz#1006272)
b79911
- Add support for using 3-arg pkcheck syntax for process (CVE-2013-4311)
b79911
- Free slicename in virSystemdCreateMachine (rhbz#1008619)
b79911
- qemu: Fix checking of ABI stability when restoring external checkpoints (rhbz#1008340)
b79911
- qemu: Use "migratable" XML definition when doing external checkpoints (rhbz#1008340)
b79911
- qemu: Fix memleak after commit 59898a88ce8431bd3ea249b8789edc2ef9985827 (rhbz#1008340)
b79911
- qemu: Avoid dangling job in qemuDomainSetBlockIoTune (rhbz#700443)
b79911
b79911
* Sat Sep 14 2013 Jiri Denemark <jdenemar@redhat.com> - 1.1.1-5
b79911
- Pass AM_LDFLAGS to driver modules too (rhbz#1006299)
b79911
- virsh domjobinfo: Do not return 1 if job is NONE (rhbz#1006864)
b79911
- Fix polkit permission names for storage pools, vols & node devices (rhbz#700443)
b79911
- Fix naming of permission for detecting storage pools (rhbz#700443)
b79911
- security: Provide supplemental groups even when parsing label (CVE-2013-4291) (rhbz#1006513)
b79911
- virFileNBDDeviceAssociate: Avoid use of uninitialized variable (CVE-2013-4297)
b79911
- Rename "struct interface_driver" to virNetcfDriverState (rhbz#983026)
b79911
- netcf driver: Use a single netcf handle for all connections (rhbz#983026)
b79911
- virDomainDefParseXML: Set the argument of virBitmapFree to NULL after calling virBitmapFree (rhbz#1006722)
b79911
- Add test for the nodemask double free crash (rhbz#1006722)
b79911
- qemu: Fix checking of guest ABI compatibility when reverting snapshots (rhbz#1006886)
b79911
b79911
* Fri Sep  6 2013 Jiri Denemark <jdenemar@redhat.com> - 1.1.1-4
b79911
- Don't crash in qemuBuildDeviceAddressStr (rhbz#1003526)
b79911
- Fix leaks in python bindings (rhbz#1003828)
b79911
- Process virtlockd.conf instead of libvirtd.conf (rhbz#1003685)
b79911
- test_virtlockd.aug.in: Use the correct file (rhbz#1003685)
b79911
- qemu: Make domain renaming work during migration (rhbz#999352)
b79911
- qemu: Handle huge number of queues correctly (rhbz#651941)
b79911
- conf: Remove the actual hostdev when removing a network (rhbz#1003537)
b79911
- conf: Don't deref NULL actual network in virDomainNetGetActualHostdev() (rhbz#1003537)
b79911
- python: Fix a PyList usage mistake (rhbz#1002558)
b79911
- Add '<nat>' element to '<forward>' network schemas (rhbz#1004364)
b79911
- Always specify qcow2 compat level on qemu-img command line (rhbz#997977)
b79911
- selinux: Distinguish failure to label from request to avoid label (rhbz#924153)
b79911
- selinux: Enhance test to cover nfs label failure (rhbz#924153)
b79911
b79911
* Fri Aug 30 2013 Jiri Denemark <jdenemar@redhat.com> - 1.1.1-3
b79911
- RPC: Don't accept client if it would overcommit max_clients (rhbz#981729)
b79911
- Introduce max_queued_clients (rhbz#981729)
b79911
- conf: Add default USB controller in qemu post-parse callback (rhbz#819968)
b79911
- qemu: Rename some functions in qemu_command.c (rhbz#819968)
b79911
- qemu: Eliminate almost-duplicate code in qemu_command.c (rhbz#819968)
b79911
- qemu: Enable auto-allocate of all PCI addresses (rhbz#819968)
b79911
- qemu: Add pcie-root controller (rhbz#819968)
b79911
- qemu: Add dmi-to-pci-bridge controller (rhbz#819968)
b79911
- qemu: Fix handling of default/implicit devices for q35 (rhbz#819968)
b79911
- qemu: Properly set/use device alias for pci controllers (rhbz#819968)
b79911
- qemu: Enable using implicit sata controller in q35 machines (rhbz#819968)
b79911
- qemu: Improve error reporting during PCI address validation (rhbz#819968)
b79911
- qemu: Refactor qemuDomainCheckDiskPresence for only disk presence check (rhbz#910171)
b79911
- qemu: Add helper functions for diskchain checking (rhbz#910171)
b79911
- qemu: Check presence of each disk and its backing file as well (rhbz#910171)
b79911
- conf: Add startupPolicy attribute for harddisk (rhbz#910171)
b79911
- qemu: Support to drop disk with 'optional' startupPolicy (rhbz#910171)
b79911
- Split TLS test into two separate tests (rhbz#994158)
b79911
- Avoid re-generating certs every time (rhbz#994158)
b79911
- Change data passed into TLS test cases (rhbz#994158)
b79911
- Fix validation of CA certificate chains (rhbz#994158)
b79911
- Fix parallel runs of TLS test suites (rhbz#994158)
b79911
- tests: Fix parallel runs of TLS test suites (rhbz#994158)
b79911
- Add a man page for virtlockd daemon (rhbz#991494)
b79911
- Add an example config file for virtlockd (rhbz#991494)
b79911
- Properly handle -h / -V for --help/--version aliases in virtlockd/libvirtd (rhbz#991494)
b79911
- Make check for /dev/loop device names stricter to avoid /dev/loop-control (rhbz#924815)
b79911
- Ensure securityfs is mounted readonly in container (rhbz#872642)
b79911
- Add info about access control checks into API reference (rhbz#700443)
b79911
- Record the where the auto-generated data comes from (rhbz#700443)
b79911
- Add documentation for access control system (rhbz#700443)
b79911
- virsh-domain: Flip logic in cmdSetvcpus (rhbz#996552)
b79911
- Honour root prefix in lxcContainerMountFSBlockAuto (rhbz#924815)
b79911
- util: Add virGetUserDirectoryByUID (rhbz#988491)
b79911
- Introduce a virt-login-shell binary (rhbz#988491)
b79911
- build: Fix compilation of virt-login-shell.c (rhbz#988491)
b79911
- Fix double-free and broken logic in virt-login-shell (rhbz#988491)
b79911
- Address missed feedback from review of virt-login-shell (rhbz#988491)
b79911
- Ensure that /dev exists in the container root filesystem (rhbz#924815)
b79911
- remote: Fix a segfault in remoteDomainCreateWithFlags (rhbz#994855)
b79911
- build: Avoid -lgcrypt with newer gnutls (rhbz#951637)
b79911
- virnettlscontext: Resolve Coverity warnings (UNINIT) (rhbz#994158)
b79911
- build: Fix missing max_queued_clients in augeas test file for libvirtd.conf (rhbz#981729)
b79911
- virsh-domain: Fix memleak in cmdCPUBaseline (rhbz#997798)
b79911
- Fix typo in domain name in polkit acl example (rhbz#700443)
b79911
- Update polkit examples to use 'lookup' method (rhbz#700443)
b79911
- Add bounds checking on virDomainMigrate*Params RPC calls (CVE-2013-4292) (rhbz#1002667)
b79911
- Add bounds checking on virDomainGetJobStats RPC call (rhbz#1002667)
b79911
- Add bounds checking on virDomain{SnapshotListAllChildren, ListAllSnapshots} RPC calls (rhbz#1002667)
b79911
- Add bounds checking on virConnectListAllDomains RPC call (rhbz#1002667)
b79911
- Add bounds checking on virConnectListAllStoragePools RPC call (rhbz#1002667)
b79911
- Add bounds checking on virStoragePoolListAllVolumes RPC call (rhbz#1002667)
b79911
- Add bounds checking on virConnectListAllNetworks RPC call (rhbz#1002667)
b79911
- Add bounds checking on virConnectListAllInterfaces RPC call (rhbz#1002667)
b79911
- Add bounds checking on virConnectListAllNodeDevices RPC call (rhbz#1002667)
b79911
- Add bounds checking on virConnectListAllNWFilters RPC call (rhbz#1002667)
b79911
- Add bounds checking on virConnectListAllSecrets RPC call (rhbz#1002667)
b79911
- Prohibit unbounded arrays in XDR protocols (rhbz#1002667)
b79911
- virbitmap: Refactor virBitmapParse to avoid access beyond bounds of array (rhbz#997906)
b79911
- virbitmaptest: Fix function header formatting (rhbz#997906)
b79911
- virbitmaptest: Add test for out of bounds condition (rhbz#997906)
b79911
- virsh-domain: Fix memleak in cmdUndefine with storage (rhbz#999057)
b79911
- virsh: Modify vshStringToArray to duplicate the elements too (rhbz#999057)
b79911
- virsh: Don't leak list of volumes when undefining domain with storage (rhbz#999057)
b79911
- Fix URI connect precedence (rhbz#999323)
b79911
- tests: Add URI precedence checking (rhbz#999323)
b79911
- Don't free NULL network in cmdNetworkUpdate (rhbz#1001094)
b79911
- virsh: Fix debugging (rhbz#1001628)
b79911
- qemu: Remove hostdev entry when freeing the depending network entry (rhbz#1002669)
b79911
- Set security label on FD for virDomainOpenGraphics (rhbz#999925)
b79911
- virsh: Free the caps list properly if one of them is invalid (rhbz#1001957)
b79911
- virsh: Free the formatting string when listing pool details (rhbz#1001957)
b79911
- virsh-pool.c: Don't jump over variable declaration (rhbz#1001957)
b79911
- virsh: Free the list from ListAll APIs even for 0 items (rhbz#1001957)
b79911
- virsh: Free messages after logging them to a file (rhbz#1001957)
b79911
- Reverse logic allowing partial DHCP host XML (rhbz#1001078)
b79911
- virsh: Print cephx and iscsi usage (rhbz#1000155)
b79911
- qemu_conf: Fix broken logic for adding passthrough iscsi lun (rhbz#1000159)
b79911
- Report secret usage error message similarly (rhbz#1000168)
b79911
- docs: Update the formatdomain disk examples (rhbz#1000169)
b79911
- docs: Update formatsecrets to include more examples of each type (rhbz#1000169)
b79911
- docs: Update iSCSI storage pool example (rhbz#1000169)
b79911
- docs: Reformat <disk> attribute description in formatdomain (rhbz#1000169)
b79911
- qemuBuildNicDevStr: Add mq=on for multiqueue networking (rhbz#651941)
b79911
- migration: Do not restore labels on failed migration (rhbz#822052)
b79911
- qemu: Drop qemuDomainMemoryLimit (rhbz#1001143)
b79911
- docs: Discourage users to set hard_limit (rhbz#1001143)
b79911
- docs: Clean 09adfdc62de2b up (rhbz#1001143)
b79911
- qemuSetupMemoryCgroup: Handle hard_limit properly (rhbz#1001143)
b79911
- qemuBuildCommandLine: Fall back to mem balloon if there's no hard_limit (rhbz#1001143)
b79911
- qemuDomainAttachHostPciDevice: Fall back to mem balloon if there's no hard_limit (rhbz#1001143)
b79911
b79911
* Fri Aug  2 2013 Jiri Denemark <jdenemar@redhat.com> - 1.1.1-2
b79911
- spec: Change --enable-werror handling to match upstream
b79911
- Delete obsolete / unused python test files (rhbz#884103)
b79911
- Remove reference to python/tests from RPM %doc (rhbz#884103)
b79911
- spec: Explicitly claim ownership of channel subdir (rhbz#884103)
b79911
- Add APIs for formatting systemd slice/scope names (rhbz#980929)
b79911
- Add support for systemd cgroup mount (rhbz#980929)
b79911
- Cope with races while killing processes (rhbz#980929)
b79911
- Enable support for systemd-machined in cgroups creation (rhbz#980929)
b79911
- Ensure LXC/QEMU APIs set the filename for errors (rhbz#991348)
b79911
- Avoid crash if NULL is passed for filename/funcname in logging (rhbz#991348)
b79911
b79911
* Tue Jul 30 2013 Jiri Denemark <jdenemar@redhat.com> - 1.1.1-1
b79911
- Rebased to libvirt-1.1.1
b79911
b79911
* Fri Jul 12 2013 Jiri Denemark <jdenemar@redhat.com> - 1.1.0-2
b79911
- qemu: Fix double free in qemuMigrationPrepareDirect (rhbz#977961)
b79911
- Fix crash when multiple event callbacks were registered (CVE-2013-2230)
b79911
- Paused domain should remain paused after migration (rhbz#981139)
b79911
b79911
* Mon Jul  1 2013 Jiri Denemark <jdenemar@redhat.com> - 1.1.0-1
b79911
- Rebased to libvirt-1.1.0
b79911
b79911
* Mon Jun  3 2013 Jiri Denemark <jdenemar@redhat.com> - 1.0.6-1
b79911
- Rebased to libvirt-1.0.6
b79911
b79911
* Mon May 13 2013 Jiri Denemark <jdenemar@redhat.com> - 1.0.5-2
b79911
- virInitctlRequest: Don't hardcode 384 bytes size
b79911
- network: Fix network driver startup for qemu:///session
b79911
- virInitctlRequest: Unbreak make syntax check
b79911
- virInitctlRequest: Unbreak make syntax check
b79911
- build: Always include sanitytest in tarball
b79911
- qemu: Fix stupid typos in VFIO cgroup setup/teardown
b79911
- build: Always include libvirt_lxc.syms in tarball
b79911
- build: Clean up stray files found by 'make distcheck'
b79911
- spec: Proper soft static allocation of qemu uid
b79911
- Fix F_DUPFD_CLOEXEC operation args
b79911
- build: Fix mingw build of virprocess.c
b79911
- Fix potential use of undefined variable in remote dispatch code
b79911
- build: Avoid non-portable cast of pthread_t
b79911
- Fix release of resources with lockd plugin
b79911
- Fixup rpcgen code on kFreeBSD too
b79911
- Make detect_scsi_host_caps a function on all architectures
b79911
- qemu: Allocate network connections sooner during domain startup
b79911
- tests: Files named '.*-invalid.xml' should fail validation
b79911
- conf: Don't crash on a tpm device with no backends
b79911
- Don't mention disk controllers in generic controller errors
b79911
- iscsi: Don't leak portal string when starting a pool
b79911
- util: Fix virFileOpenAs return value and resulting error logs
b79911
b79911
* Thu May  2 2013 Jiri Denemark <jdenemar@redhat.com> - 1.0.5-1
b79911
- Rebased to libvirt-1.0.5
b79911
b79911
* Fri Apr 19 2013 Daniel Mach <dmach@redhat.com> - 1.0.4-1.1
b79911
- Rebuild for cyrus-sasl
b79911
b79911
* Mon Apr  8 2013 Jiri Denemark <jdenemar@redhat.com> - 1.0.4-1
b79911
- Rebased to libvirt-1.0.4
b79911
b79911
* Mon Apr 08 2013 Richard W.M. Jones <rjones@redhat.com> - 1.0.3-2
b79911
- Rebuild against gnutls 3.
b79911
b79911
* Tue Mar  5 2013 Jiri Denemark <jdenemar@redhat.com> - 1.0.3-1
b79911
- Rebased to libvirt-1.0.3
b79911
b79911
* Thu Jan 31 2013 Jiri Denemark <jdenemar@redhat.com> - 1.0.2-1
b79911
- Rebased to libvirt-1.0.2
b79911
b79911
* Tue Dec 18 2012 Jiri Denemark <jdenemar@redhat.com> - 1.0.1-1
b79911
- Rebased to libvirt-1.0.1
b79911
b79911
* Wed Nov 14 2012 Jiri Denemark <jdenemar@redhat.com> - 1.0.0-1
b79911
- Rebased to libvirt-1.0.0
b79911
b79911
* Tue Oct 30 2012 Cole Robinson <crobinso@redhat.com> - 0.10.2.1-2
b79911
- Disable libxl on F18 too
b79911
b79911
* Sat Oct 27 2012 Cole Robinson <crobinso@redhat.com> - 0.10.2.1-1
b79911
- Rebased to version 0.10.2.1
b79911
- Fix lvm volume creation when alloc=0 (bz #866481)
b79911
- Clarify virsh send-keys man page example (bz #860004)
b79911
- Fix occasional deadlock via virDomainDestroy (bz #859009)
b79911
- Fix LXC deadlock from ctrl-c (bz #848119)
b79911
- Fix occasional selinux denials with macvtap (bz #798605)
b79911
- Fix multilib conflict with systemtap files (bz #831425)
b79911
- Don't trigger keytab warning in system logs (bz #745203)
b79911
- Fix qemu domxml-2-native NIC model out (bz #636832)
b79911
- Fix error message if not enough space for lvm vol (bz #609104)
b79911
b79911
* Thu Oct 25 2012 Cole Robinson <crobinso@redhat.com> - 0.10.2-4
b79911
- Disable libxl driver, since it doesn't build with xen 4.2 in rawhide
b79911
b79911
* Mon Sep 24 2012 Richard W.M. Jones <rjones@redhat.com> - 0.10.2-3
b79911
- Re-add Use-qemu-system-i386-as-binary-instead-of-qemu.patch
b79911
  NB: This patch is Fedora-specific and not upstream.
b79911
- Add upstream patches: don't duplicate environment variables (RHBZ#859596).
b79911
b79911
* Mon Sep 24 2012 Daniel Veillard <veillard@redhat.com> - 0.10.2-1
b79911
- Upstream release 0.10.2
b79911
- network: define new API virNetworkUpdate
b79911
- add support for QEmu sandbox support
b79911
- blockjob: add virDomainBlockCommit
b79911
- New APIs to get/set Node memory parameters
b79911
- new API virConnectListAllSecrets
b79911
- new API virConnectListAllNWFilters
b79911
- new API virConnectListAllNodeDevices
b79911
- parallels: add support of containers to the driver
b79911
- new API virConnectListAllInterfaces
b79911
- new API virConnectListAllNetworks
b79911
- new API virStoragePoolListAllVolumes
b79911
- Add PMSUSPENDED life cycle event
b79911
- new API virStorageListAllStoragePools
b79911
- Add per-guest S3/S4 state configuration
b79911
- qemu: Support for Block Device IO Limits
b79911
- a lot of bug fixes, improvements and portability work
b79911
b79911
* Fri Sep 21 2012 Richard W.M. Jones <rjones@redhat.com> - 0.10.1-5
b79911
- Add (upstream) patches to label sockets for SELinux (RHBZ#853393).
b79911
b79911
* Thu Sep 13 2012 Richard W.M. Jones <rjones@redhat.com> - 0.10.1-4
b79911
- Fix for 32 bit qemu renamed to qemu-system-i386 (RHBZ#857026).
b79911
b79911
* Wed Sep 12 2012 Cole Robinson <crobinso@redhat.com> - 0.10.1-3
b79911
- Fix libvirtd segfault with old netcf-libs (bz 853381)
b79911
- Drop unneeded dnsmasq --filterwin2k
b79911
- Fix unwanted connection closing, needed for boxes
b79911
b79911
* Wed Sep  5 2012 Daniel P. Berrange <berrange@redhat.com> - 0.10.1-2
b79911
- Remove dep on ceph RPM (rhbz #854360)
b79911
b79911
* Fri Aug 31 2012 Daniel Veillard <veillard@redhat.com> - 0.10.1-1
b79911
- upstream release of 0.10.1
b79911
- many fixes from 0.10.0
b79911
b79911
* Wed Aug 29 2012 Daniel Veillard <veillard@redhat.com> - 0.10.0-1
b79911
- upstream release of 0.10.0
b79911
- agent: add qemuAgentArbitraryCommand() for general qemu agent command
b79911
- Introduce virDomainPinEmulator and virDomainGetEmulatorPinInfo functions
b79911
- network: use firewalld instead of iptables, when available
b79911
- network: make network driver vlan-aware
b79911
- esx: Implement network driver
b79911
- driver for parallels hypervisor
b79911
- Various LXC improvements
b79911
- Add virDomainGetHostname
b79911
- a lot of bug fixes, improvements and portability work
b79911
b79911
* Thu Aug 23 2012 Daniel Veillard <veillard@redhat.com> - 0.10.0-0rc1
b79911
- release candidate 1 of 0.10.0
b79911
b79911
* Tue Aug 14 2012 Daniel P. Berrange <berrange@redhat.com> - 0.10.0-0rc0.2
b79911
- Enable autotools to make previous patch work
b79911
b79911
* Tue Aug 14 2012 Daniel Veillard <veillard@redhat.com> - 0.10.0-0rc0.1
b79911
- fix security driver missing from the daemon
b79911
b79911
* Wed Aug  8 2012 Daniel Veillard <veillard@redhat.com> - 0.10.0-0rc0
b79911
- snapshot before 0.10.0 in a few weeks
b79911
- adds the parallel driver support
b79911
b79911
* Mon Jul 23 2012 Richard W.M. Jones <rjones@redhat.com> - 0.9.13-3
b79911
- Add upstream patch to fix RHBZ#842114.
b79911
b79911
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.13-2
b79911
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
b79911
b79911
* Mon Jul  2 2012 Daniel Veillard <veillard@redhat.com> - 0.9.13-1
b79911
- S390: support for s390(x)
b79911
- snapshot: implement new APIs for esx and vbox
b79911
- snapshot: new query APIs and many improvements
b79911
- virsh: Allow users to reedit rejected XML
b79911
- nwfilter: add DHCP snooping
b79911
- Enable driver modules in libvirt RPM
b79911
- Default to enable driver modules for libvirtd
b79911
- storage backend: Add RBD (RADOS Block Device) support
b79911
- sVirt support for LXC domains inprovement
b79911
- a lot of bug fixes, improvements and portability work
b79911
b79911
* Mon May 14 2012 Daniel Veillard <veillard@redhat.com> - 0.9.12-1
b79911
- qemu: allow snapshotting of sheepdog and rbd disks
b79911
- blockjob: add new APIs
b79911
- a lot of bug fixes, improvements and portability work
b79911
b79911
* Thu Apr 26 2012 Cole Robinson <crobinso@redhat.com> - 0.9.11.3-1
b79911
- Rebased to version 0.9.11.3
b79911
- Abide URI username when connecting to hypervisor (bz 811397)
b79911
- Fix managed USB mode (bz 814866)
b79911
- Fix crash connecting to ESX host (bz 811891)
b79911
b79911
* Wed Apr  4 2012 Daniel P. Berrange <berrange@redhat.com> - 0.9.11-1
b79911
- Update to 0.9.11 release
b79911
b79911
* Tue Apr  3 2012 Daniel P. Berrange <berrange@redhat.com> - 0.9.10-4
b79911
- Revert previous change
b79911
b79911
* Sat Mar 31 2012 Daniel P. Berrange <berrange@redhat.com> - 0.9.10-3
b79911
- Refactor RPM spec to allow install without default configs
b79911
b79911
* Thu Mar 15 2012 Daniel P. Berrange <berrange@redhat.com> - 0.9.10-2
b79911
- Rebuild for libparted soname break
b79911
b79911
* Mon Feb 13 2012 Daniel P. Berrange <berrange@redhat.com> - 0.9.10-1
b79911
- Update to 0.9.10
b79911
b79911
* Thu Jan 12 2012 Daniel P. Berrange <berrange@redhat.com> - 0.9.9-2
b79911
- Fix LXC I/O handling
b79911
b79911
* Sat Jan  7 2012 Daniel Veillard <veillard@redhat.com> - 0.9.9-1
b79911
- Add API virDomain{S,G}etInterfaceParameters
b79911
- Add API virDomain{G, S}etNumaParameters
b79911
- Add support for ppc64 qemu
b79911
- Support Xen domctl v8
b79911
- many improvements and bug fixes
b79911
b79911
* Thu Dec  8 2011 Daniel P. Berrange <berrange@redhat.com> - 0.9.8-2
b79911
- Fix install of libvirt-guests.service & libvirtd.service
b79911
b79911
* Thu Dec  8 2011 Daniel Veillard <veillard@redhat.com> - 0.9.8-1
b79911
- Add support for QEMU 1.0
b79911
- Add preliminary PPC cpu driver
b79911
- Add new API virDomain{Set, Get}BlockIoTune
b79911
- block_resize: Define the new API
b79911
- Add a public API to invoke suspend/resume on the host
b79911
- various improvements for LXC containers
b79911
- Define keepalive protocol and add virConnectIsAlive API
b79911
- Add support for STP and VLAN filtering
b79911
- many improvements and bug fixes
b79911
b79911
* Mon Nov 14 2011 Justin M. Forbes <jforbes@redhat.com> - 0.9.7-3
b79911
- Remove versioned buildreq for yajl as 2.0.x features are not required.
b79911
b79911
* Thu Nov 10 2011 Daniel P. Berrange <berrange@redhat.com> - 0.9.7-2
b79911
- Rebuild for yajl 2.0.1
b79911
b79911
* Tue Nov  8 2011 Daniel P. Berrange <berrange@redhat.com> - 0.9.7-1
b79911
- Update to 0.9.7 release
b79911
b79911
* Tue Oct 11 2011 Dan Horák <dan[at]danny.cz> - 0.9.6-3
b79911
- xenlight available only on Xen arches (#745020)
b79911
b79911
* Mon Oct  3 2011 Laine Stump <laine@redhat.com> - 0.9.6-2
b79911
- Make PCI multifunction support more manual - Bug 742836
b79911
- F15 build still uses cgconfig - Bug 738725
b79911
b79911
* Thu Sep 22 2011 Daniel Veillard <veillard@redhat.com> - 0.9.6-1
b79911
- Fix the qemu reboot bug and a few others bug fixes
b79911
b79911
* Tue Sep 20 2011 Daniel Veillard <veillard@redhat.com> - 0.9.5-1
b79911
- many snapshot improvements (Eric Blake)
b79911
- latency: Define new public API and structure (Osier Yang)
b79911
- USB2 and various USB improvements (Marc-André Lureau)
b79911
- storage: Add fs pool formatting (Osier Yang)
b79911
- Add public API for getting migration speed (Jim Fehlig)
b79911
- Add basic driver for Microsoft Hyper-V (Matthias Bolte)
b79911
- many improvements and bug fixes
b79911
b79911
* Wed Aug  3 2011 Daniel Veillard <veillard@redhat.com> - 0.9.4-1
b79911
- network bandwidth QoS control
b79911
- Add new API virDomainBlockPull*
b79911
- save: new API to manipulate save file images
b79911
- CPU bandwidth limits support
b79911
- allow to send NMI and key event to guests
b79911
- new API virDomainUndefineFlags
b79911
- Implement code to attach to external QEMU instances
b79911
- bios: Add support for SGA
b79911
- various missing python binding
b79911
- many improvements and bug fixes
b79911
b79911
* Sat Jul 30 2011 Dan Hor?k <dan[at]danny.cz> - 0.9.3-3
b79911
- xenlight available only on Xen arches
b79911
b79911
* Wed Jul  6 2011 Peter Robinson <pbrobinson@gmail.com> - 0.9.3-2
b79911
- Add ARM to NUMA platform excludes
b79911
b79911
* Mon Jul  4 2011 Daniel Veillard <veillard@redhat.com> - 0.9.3-1
b79911
- new API virDomainGetVcpupinInfo
b79911
- Add TXT record support for virtual DNS service
b79911
- Support reboots with the QEMU driver
b79911
- New API virDomainGetControlInfo API
b79911
- New API virNodeGetMemoryStats
b79911
- New API virNodeGetCPUTime
b79911
- New API for send-key
b79911
- New API virDomainPinVcpuFlags
b79911
- support multifunction PCI device
b79911
- lxc: various improvements
b79911
- many improvements and bug fixes
b79911
b79911
* Wed Jun 29 2011 Richard W.M. Jones <rjones@redhat.com> - 0.9.2-3
b79911
- Rebuild because of libparted soname bump (libparted.so.0 -> libparted.so.1).
b79911
b79911
* Tue Jun 21 2011 Laine Stump <laine@redhat.com> - 0.9.2-2
b79911
- add rule to require netcf-0.1.8 during build so that new transactional
b79911
  network change APIs are included.
b79911
- document that CVE-2011-2178 has been fixed (by virtue of rebase
b79911
  to 0.9.2 - see https://bugzilla.redhat.com/show_bug.cgi?id=709777)
b79911
b79911
* Mon Jun  6 2011 Daniel Veillard <veillard@redhat.com> - 0.9.2-1
b79911
- Framework for lock manager plugins
b79911
- API for network config change transactions
b79911
- flags for setting memory parameters
b79911
- virDomainGetState public API
b79911
- qemu: allow blkstat/blkinfo calls during migration
b79911
- Introduce migration v3 API
b79911
- Defining the Screenshot public API
b79911
- public API for NMI injection
b79911
- Various improvements and bug fixes
b79911
b79911
* Wed May 25 2011 Richard W.M. Jones <rjones@redhat.com> - 0.9.1-3
b79911
- Add upstream patches:
b79911
    0001-json-Avoid-passing-large-positive-64-bit-integers-to.patch
b79911
    0001-qemudDomainMemoryPeek-change-ownership-selinux-label.patch
b79911
    0002-remote-remove-bogus-virDomainFree.patch
b79911
  so that users can try out virt-dmesg.
b79911
- Change /var/cache mode to 0711.
b79911
b79911
* Thu May  5 2011 Daniel Veillard <veillard@redhat.com> - 0.9.1-1
b79911
- support various persistent domain updates
b79911
- improvements on memory APIs
b79911
- Add virDomainEventRebootNew
b79911
- various improvements to libxl driver
b79911
- Spice: support audio, images and stream compression
b79911
- Various improvements and bug fixes
b79911
b79911
* Thu Apr  7 2011 Daniel Veillard <veillard@redhat.com> - 0.9.0-1
b79911
- Support cputune cpu usage tuning
b79911
- Add public APIs for storage volume upload/download
b79911
- Add public API for setting migration speed on the fly
b79911
- Add libxenlight driver
b79911
- qemu: support migration to fd
b79911
- libvirt: add virDomain{Get,Set}BlkioParameters
b79911
- setmem: introduce a new libvirt API (virDomainSetMemoryFlags)
b79911
- Expose event loop implementation as a public API
b79911
- Dump the debug buffer to libvirtd.log on fatal signal
b79911
- Audit support
b79911
- Various improvements and bug fixes
b79911
b79911
* Mon Mar 14 2011 Daniel Veillard <veillard@redhat.com> - 0.8.8-3
b79911
- fix a lack of API check on read-only connections
b79911
- CVE-2011-1146
b79911
b79911
* Mon Feb 21 2011 Daniel P. Berrange <berrange@redhat.com> - 0.8.8-2
b79911
- Fix kernel boot with latest QEMU
b79911
b79911
* Thu Feb 17 2011 Daniel Veillard <veillard@redhat.com> - 0.8.8-1
b79911
- expose new API for sysinfo extraction
b79911
- cgroup blkio weight support
b79911
- smartcard device support
b79911
- qemu: Support per-device boot ordering
b79911
- Various improvements and bug fixes
b79911
b79911
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.7-2
b79911
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
b79911
b79911
* Thu Jan  6 2011 Daniel Veillard <veillard@redhat.com> - 0.8.7-1
b79911
- Preliminary support for VirtualBox 4.0
b79911
- IPv6 support
b79911
- Add VMware Workstation and Player driver driver
b79911
- Add network disk support
b79911
- Various improvements and bug fixes
b79911
- from 0.8.6:
b79911
- Add support for iSCSI target auto-discovery
b79911
- QED: Basic support for QED images
b79911
- remote console support
b79911
- support for SPICE graphics
b79911
- sysinfo and VMBIOS support
b79911
- virsh qemu-monitor-command
b79911
- various improvements and bug fixes
b79911
b79911
* Fri Oct 29 2010 Daniel Veillard <veillard@redhat.com> - 0.8.5-1
b79911
- Enable JSON and netdev features in QEMU >= 0.13
b79911
- framework for auditing integration
b79911
- framework DTrace/SystemTap integration
b79911
- Setting the number of vcpu at boot
b79911
- Enable support for nested SVM
b79911
- Virtio plan9fs filesystem QEMU
b79911
- Memory parameter controls
b79911
- various improvements and bug fixes
b79911
b79911
* Wed Sep 29 2010 jkeating - 0.8.4-3
b79911
- Rebuilt for gcc bug 634757
b79911
b79911
* Thu Sep 16 2010 Dan Horák <dan[at]danny.cz> - 0.8.4-2
b79911
- disable the nwfilterxml2xmltest also on s390(x)
b79911
b79911
* Mon Sep 13 2010 Daniel Veillard <veillard@redhat.com> - 0.8.4-1
b79911
- Upstream release 0.8.4
b79911
b79911
* Mon Aug 23 2010 Daniel P. Berrange <berrange@redhat.com> - 0.8.3-2
b79911
- Fix potential overflow in boot menu code
b79911
b79911
* Mon Aug 23 2010 Daniel P. Berrange <berrange@redhat.com> - 0.8.3-1
b79911
- Upstream release 0.8.3
b79911
b79911
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 0.8.2-3
b79911
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
b79911
b79911
* Mon Jul 12 2010 Daniel P. Berrange <berrange@redhat.com> - 0.8.2-2
b79911
- CVE-2010-2237 ignoring defined main disk format when looking up disk backing stores
b79911
- CVE-2010-2238 ignoring defined disk backing store format when recursing into disk
b79911
  image backing stores
b79911
- CVE-2010-2239 not setting user defined backing store format when creating new image
b79911
- CVE-2010-2242 libvirt: improperly mapped source privileged ports may allow for
b79911
  obtaining privileged resources on the host
b79911
b79911
* Mon Jul  5 2010 Daniel Veillard <veillard@redhat.com> - 0.8.2-1
b79911
- Upstream release 0.8.2
b79911
- phyp: adding support for IVM
b79911
- libvirt: introduce domainCreateWithFlags API
b79911
- add 802.1Qbh and 802.1Qbg switches handling
b79911
- Support for VirtualBox version 3.2
b79911
- Init script for handling guests on shutdown/boot
b79911
- qemu: live migration with non-shared storage for kvm
b79911
b79911
* Fri Apr 30 2010 Daniel Veillard <veillard@redhat.com> - 0.8.1-1
b79911
- Upstream release 0.8.1
b79911
- Starts dnsmasq from libvirtd with --dhcp-hostsfile
b79911
- Add virDomainGetBlockInfo API to query disk sizing
b79911
- a lot of bug fixes and cleanups
b79911
b79911
* Mon Apr 12 2010 Daniel Veillard <veillard@redhat.com> - 0.8.0-1
b79911
- Upstream release 0.8.0
b79911
- Snapshotting support (QEmu/VBox/ESX)
b79911
- Network filtering API
b79911
- XenAPI driver
b79911
- new APIs for domain events
b79911
- Libvirt managed save API
b79911
- timer subselection for domain clock
b79911
- synchronous hooks
b79911
- API to update guest CPU to host CPU
b79911
- virDomainUpdateDeviceFlags new API
b79911
- migrate max downtime API
b79911
- volume wiping API
b79911
- and many bug fixes
b79911
b79911
* Tue Mar 30 2010 Richard W.M. Jones <rjones@redhat.com> - 0.7.7-3.fc14
b79911
- No change, just rebuild against new libparted with bumped soname.
b79911
b79911
* Mon Mar 22 2010 Cole Robinson <crobinso@redhat.com> - 0.7.7-2.fc14
b79911
- Fix USB devices by product with security enabled (bz 574136)
b79911
- Set kernel/initrd in security driver, fixes some URL installs (bz 566425)
b79911
b79911
* Fri Mar  5 2010 Daniel Veillard <veillard@redhat.com> - 0.7.7-1
b79911
- macvtap support
b79911
- async job handling
b79911
- virtio channel
b79911
- computing baseline CPU
b79911
- virDomain{Attach,Detach}DeviceFlags
b79911
- assorted bug fixes and lots of cleanups
b79911
b79911
* Tue Feb 16 2010 Adam Jackson <ajax@redhat.com> 0.7.6-2
b79911
- libvirt-0.7.6-add-needed.patch: Fix FTBFS from --no-add-needed
b79911
- Add BuildRequires: xmlrpc-c-client for libxmlrpc_client.so
b79911
b79911
* Wed Feb  3 2010 Daniel Veillard <veillard@redhat.com> - 0.7.6-1
b79911
- upstream release of 0.7.6
b79911
- Use QEmu new device adressing when possible
b79911
- Implement CPU topology support for QEMU driver
b79911
- Implement SCSI controller hotplug/unplug for QEMU
b79911
- Implement support for multi IQN
b79911
- a lot of fixes and improvements
b79911
b79911
* Thu Jan 14 2010 Chris Weyl <cweyl@alumni.drew.edu> 0.7.5-3
b79911
- bump for libssh2 rebuild
b79911
b79911
* Tue Jan 12 2010 Daniel P. Berrange <berrange@redhat.com> - 0.7.5-2
b79911
- Rebuild for libparted soname change
b79911
b79911
* Wed Dec 23 2009 Daniel Veillard <veillard@redhat.com> - 0.7.5-1
b79911
- Add new API virDomainMemoryStats
b79911
- Public API and domain extension for CPU flags
b79911
- vbox: Add support for version 3.1
b79911
- Support QEMU's virtual FAT block device driver
b79911
- a lot of fixes
b79911
b79911
* Fri Nov 20 2009 Daniel Veillard <veillard@redhat.com> - 0.7.4-1
b79911
- upstream release of 0.7.4
b79911
- udev node device backend
b79911
- API to check object properties
b79911
- better QEmu monitor processing
b79911
- MAC address based port filtering for qemu
b79911
- support IPv6 and multiple addresses per interfaces
b79911
- a lot of fixes
b79911
b79911
* Thu Nov 19 2009 Daniel P. Berrange <berrange@redhat.com> - 0.7.2-6
b79911
- Really fix restore file labelling this time
b79911
b79911
* Wed Nov 11 2009 Daniel P. Berrange <berrange@redhat.com> - 0.7.2-5
b79911
- Disable numactl on s390[x]. Again.
b79911
b79911
* Wed Nov 11 2009 Daniel P. Berrange <berrange@redhat.com> - 0.7.2-4
b79911
- Fix QEMU save/restore permissions / labelling
b79911
b79911
* Thu Oct 29 2009 Mark McLoughlin <markmc@redhat.com> - 0.7.2-3
b79911
- Avoid compressing small log files (#531030)
b79911
b79911
* Thu Oct 29 2009 Mark McLoughlin <markmc@redhat.com> - 0.7.2-2
b79911
- Make libvirt-devel require libvirt-client, not libvirt
b79911
- Fix qemu machine types handling
b79911
b79911
* Wed Oct 14 2009 Daniel Veillard <veillard@redhat.com> - 0.7.2-1
b79911
- Upstream release of 0.7.2
b79911
- Allow to define ESX domains
b79911
- Allows suspend and resulme of LXC domains
b79911
- API for data streams
b79911
- many bug fixes
b79911
b79911
* Tue Oct 13 2009 Mark McLoughlin <markmc@redhat.com> - 0.7.1-12
b79911
- Fix restore of qemu guest using raw save format (#523158)
b79911
b79911
* Fri Oct  9 2009 Mark McLoughlin <markmc@redhat.com> - 0.7.1-11
b79911
- Fix libvirtd memory leak during error reply sending (#528162)
b79911
- Add several PCI hot-unplug typo fixes from upstream
b79911
b79911
* Tue Oct  6 2009 Mark McLoughlin <markmc@redhat.com> - 0.7.1-10
b79911
- Create /var/log/libvirt/{lxc,uml} dirs for logrotate
b79911
- Make libvirt-python dependon on libvirt-client
b79911
- Sync misc minor changes from upstream spec
b79911
b79911
* Tue Oct  6 2009 Mark McLoughlin <markmc@redhat.com> - 0.7.1-9
b79911
- Change logrotate config to weekly (#526769)
b79911
b79911
* Thu Oct  1 2009 Mark McLoughlin <markmc@redhat.com> - 0.7.1-8
b79911
- Disable sound backend, even when selinux is disabled (#524499)
b79911
- Re-label qcow2 backing files (#497131)
b79911
b79911
* Wed Sep 30 2009 Mark McLoughlin <markmc@redhat.com> - 0.7.1-7
b79911
- Fix USB device passthrough (#522683)
b79911
b79911
* Mon Sep 21 2009 Chris Weyl <cweyl@alumni.drew.edu> - 0.7.1-6
b79911
- rebuild for libssh2 1.2
b79911
b79911
* Mon Sep 21 2009 Mark McLoughlin <markmc@redhat.com> - 0.7.1-5
b79911
- Don't set a bogus error in virDrvSupportsFeature()
b79911
- Fix raw save format
b79911
b79911
* Thu Sep 17 2009 Mark McLoughlin <markmc@redhat.com> - 0.7.1-4
b79911
- A couple of hot-unplug memory handling fixes (#523953)
b79911
b79911
* Thu Sep 17 2009 Daniel Veillard <veillard@redhat.com> - 0.7.1-3
b79911
- disable numactl on s390[x]
b79911
b79911
* Thu Sep 17 2009 Daniel Veillard <veillard@redhat.com> - 0.7.1-2
b79911
- revamp of spec file for modularity and RHELs
b79911
b79911
* Tue Sep 15 2009 Daniel Veillard <veillard@redhat.com> - 0.7.1-1
b79911
- Upstream release of 0.7.1
b79911
- ESX, VBox driver updates
b79911
- mutipath support
b79911
- support for encrypted (qcow) volume
b79911
- compressed save image format for Qemu/KVM
b79911
- QEmu host PCI device hotplug support
b79911
- configuration of huge pages in guests
b79911
- a lot of fixes
b79911
b79911
* Mon Sep 14 2009 Mark McLoughlin <markmc@redhat.com> - 0.7.1-0.2.gitfac3f4c
b79911
- Update to newer snapshot of 0.7.1
b79911
- Stop libvirt using untrusted 'info vcpus' PID data (#520864)
b79911
- Support relabelling of USB and PCI devices
b79911
- Enable multipath storage support
b79911
- Restart libvirtd upon RPM upgrade
b79911
b79911
* Sun Sep  6 2009 Mark McLoughlin <markmc@redhat.com> - 0.7.1-0.1.gitg3ef2e05
b79911
- Update to pre-release git snapshot of 0.7.1
b79911
- Drop upstreamed patches
b79911
b79911
* Wed Aug 19 2009 Mark McLoughlin <markmc@redhat.com> - 0.7.0-6
b79911
- Fix migration completion with newer versions of qemu (#516187)
b79911
b79911
* Wed Aug 19 2009 Mark McLoughlin <markmc@redhat.com> - 0.7.0-5
b79911
- Add PCI host device hotplug support
b79911
- Allow PCI bus reset to reset other devices (#499678)
b79911
- Fix stupid PCI reset error message (bug #499678)
b79911
- Allow PM reset on multi-function PCI devices (bug #515689)
b79911
- Re-attach PCI host devices after guest shuts down (bug #499561)
b79911
- Fix list corruption after disk hot-unplug
b79911
- Fix minor 'virsh nodedev-list --tree' annoyance
b79911
b79911
* Thu Aug 13 2009 Daniel P. Berrange <berrange@redhat.com> - 0.7.0-4
b79911
- Rewrite policykit support (rhbz #499970)
b79911
- Log and ignore NUMA topology problems (rhbz #506590)
b79911
b79911
* Mon Aug 10 2009 Mark McLoughlin <markmc@redhat.com> - 0.7.0-3
b79911
- Don't fail to start network if ipv6 modules is not loaded (#516497)
b79911
b79911
* Thu Aug  6 2009 Mark McLoughlin <markmc@redhat.com> - 0.7.0-2
b79911
- Make sure qemu can access kernel/initrd (bug #516034)
b79911
- Set perms on /var/lib/libvirt/boot to 0711 (bug #516034)
b79911
b79911
* Wed Aug  5 2009 Daniel Veillard <veillard@redhat.com> - 0.7.0-1
b79911
- ESX, VBox3, Power Hypervisor drivers
b79911
- new net filesystem glusterfs
b79911
- Storage cloning for LVM and Disk backends
b79911
- interface implementation based on netcf
b79911
- Support cgroups in QEMU driver
b79911
- QEmu hotplug NIC support
b79911
- a lot of fixes
b79911
b79911
* Fri Jul  3 2009 Daniel Veillard <veillard@redhat.com> - 0.6.5-1
b79911
- release of 0.6.5
b79911
b79911
* Fri May 29 2009 Daniel Veillard <veillard@redhat.com> - 0.6.4-1
b79911
- release of 0.6.4
b79911
- various new APIs
b79911
b79911
* Fri Apr 24 2009 Daniel Veillard <veillard@redhat.com> - 0.6.3-1
b79911
- release of 0.6.3
b79911
- VirtualBox driver
b79911
b79911
* Fri Apr  3 2009 Daniel Veillard <veillard@redhat.com> - 0.6.2-1
b79911
- release of 0.6.2
b79911
b79911
* Wed Mar  4 2009 Daniel Veillard <veillard@redhat.com> - 0.6.1-1
b79911
- release of 0.6.1
b79911
b79911
* Sat Jan 31 2009 Daniel Veillard <veillard@redhat.com> - 0.6.0-1
b79911
- release of 0.6.0
b79911
b79911
* Tue Nov 25 2008 Daniel Veillard <veillard@redhat.com> - 0.5.0-1
b79911
- release of 0.5.0
b79911
b79911
* Tue Sep 23 2008 Daniel Veillard <veillard@redhat.com> - 0.4.6-1
b79911
- release of 0.4.6
b79911
b79911
* Mon Sep  8 2008 Daniel Veillard <veillard@redhat.com> - 0.4.5-1
b79911
- release of 0.4.5
b79911
b79911
* Wed Jun 25 2008 Daniel Veillard <veillard@redhat.com> - 0.4.4-1
b79911
- release of 0.4.4
b79911
- mostly a few bug fixes from 0.4.3
b79911
b79911
* Thu Jun 12 2008 Daniel Veillard <veillard@redhat.com> - 0.4.3-1
b79911
- release of 0.4.3
b79911
- lots of bug fixes and small improvements
b79911
b79911
* Tue Apr  8 2008 Daniel Veillard <veillard@redhat.com> - 0.4.2-1
b79911
- release of 0.4.2
b79911
- lots of bug fixes and small improvements
b79911
b79911
* Mon Mar  3 2008 Daniel Veillard <veillard@redhat.com> - 0.4.1-1
b79911
- Release of 0.4.1
b79911
- Storage APIs
b79911
- xenner support
b79911
- lots of assorted improvements, bugfixes and cleanups
b79911
- documentation and localization improvements
b79911
b79911
* Tue Dec 18 2007 Daniel Veillard <veillard@redhat.com> - 0.4.0-1
b79911
- Release of 0.4.0
b79911
- SASL based authentication
b79911
- PolicyKit authentication
b79911
- improved NUMA and statistics support
b79911
- lots of assorted improvements, bugfixes and cleanups
b79911
- documentation and localization improvements
b79911
b79911
* Sun Sep 30 2007 Daniel Veillard <veillard@redhat.com> - 0.3.3-1
b79911
- Release of 0.3.3
b79911
- Avahi support
b79911
- NUMA support
b79911
- lots of assorted improvements, bugfixes and cleanups
b79911
- documentation and localization improvements
b79911
b79911
* Tue Aug 21 2007 Daniel Veillard <veillard@redhat.com> - 0.3.2-1
b79911
- Release of 0.3.2
b79911
- API for domains migration
b79911
- APIs for collecting statistics on disks and interfaces
b79911
- lots of assorted bugfixes and cleanups
b79911
- documentation and localization improvements
b79911
b79911
* Tue Jul 24 2007 Daniel Veillard <veillard@redhat.com> - 0.3.1-1
b79911
- Release of 0.3.1
b79911
- localtime clock support
b79911
- PS/2 and USB input devices
b79911
- lots of assorted bugfixes and cleanups
b79911
- documentation and localization improvements
b79911
b79911
* Mon Jul  9 2007 Daniel Veillard <veillard@redhat.com> - 0.3.0-1
b79911
- Release of 0.3.0
b79911
- Secure remote access support
b79911
- unification of daemons
b79911
- lots of assorted bugfixes and cleanups
b79911
- documentation and localization improvements
b79911
b79911
* Fri Jun  8 2007 Daniel Veillard <veillard@redhat.com> - 0.2.3-1
b79911
- Release of 0.2.3
b79911
- lot of assorted bugfixes and cleanups
b79911
- support for Xen-3.1
b79911
- new scheduler API
b79911
b79911
* Tue Apr 17 2007 Daniel Veillard <veillard@redhat.com> - 0.2.2-1
b79911
- Release of 0.2.2
b79911
- lot of assorted bugfixes and cleanups
b79911
- preparing for Xen-3.0.5
b79911
b79911
* Thu Mar 22 2007 Jeremy Katz <katzj@redhat.com> - 0.2.1-2.fc7
b79911
- don't require xen; we don't need the daemon and can control non-xen now
b79911
- fix scriptlet error (need to own more directories)
b79911
- update description text
b79911
b79911
* Fri Mar 16 2007 Daniel Veillard <veillard@redhat.com> - 0.2.1-1
b79911
- Release of 0.2.1
b79911
- lot of bug and portability fixes
b79911
- Add support for network autostart and init scripts
b79911
- New API to detect the virtualization capabilities of a host
b79911
- Documentation updates
b79911
b79911
* Fri Feb 23 2007 Daniel P. Berrange <berrange@redhat.com> - 0.2.0-4.fc7
b79911
- Fix loading of guest & network configs
b79911
b79911
* Fri Feb 16 2007 Daniel P. Berrange <berrange@redhat.com> - 0.2.0-3.fc7
b79911
- Disable kqemu support since its not in Fedora qemu binary
b79911
- Fix for -vnc arg syntax change in 0.9.0  QEMU
b79911
b79911
* Thu Feb 15 2007 Daniel P. Berrange <berrange@redhat.com> - 0.2.0-2.fc7
b79911
- Fixed path to qemu daemon for autostart
b79911
- Fixed generation of <features> block in XML
b79911
- Pre-create config directory at startup
b79911
b79911
* Wed Feb 14 2007 Daniel Veillard <veillard@redhat.com> 0.2.0-1.fc7
b79911
- support for KVM and QEmu
b79911
- support for network configuration
b79911
- assorted fixes
b79911
b79911
* Mon Jan 22 2007 Daniel Veillard <veillard@redhat.com> 0.1.11-1.fc7
b79911
- finish inactive Xen domains support
b79911
- memory leak fix
b79911
- RelaxNG schemas for XML configs
b79911
b79911
* Wed Dec 20 2006 Daniel Veillard <veillard@redhat.com> 0.1.10-1.fc7
b79911
- support for inactive Xen domains
b79911
- improved support for Xen display and vnc
b79911
- a few bug fixes
b79911
- localization updates
b79911
b79911
* Thu Dec  7 2006 Jeremy Katz <katzj@redhat.com> - 0.1.9-2
b79911
- rebuild against python 2.5
b79911
b79911
* Wed Nov 29 2006 Daniel Veillard <veillard@redhat.com> 0.1.9-1
b79911
- better error reporting
b79911
- python bindings fixes and extensions
b79911
- add support for shareable drives
b79911
- add support for non-bridge style networking
b79911
- hot plug device support
b79911
- added support for inactive domains
b79911
- API to dump core of domains
b79911
- various bug fixes, cleanups and improvements
b79911
- updated the localization
b79911
b79911
* Tue Nov  7 2006 Daniel Veillard <veillard@redhat.com> 0.1.8-3
b79911
- it's pkgconfig not pgkconfig !
b79911
b79911
* Mon Nov  6 2006 Daniel Veillard <veillard@redhat.com> 0.1.8-2
b79911
- fixing spec file, added %%dist, -devel requires pkgconfig and xen-devel
b79911
- Resolves: rhbz#202320
b79911
b79911
* Mon Oct 16 2006 Daniel Veillard <veillard@redhat.com> 0.1.8-1
b79911
- fix missing page size detection code for ia64
b79911
- fix mlock size when getting domain info list from hypervisor
b79911
- vcpu number initialization
b79911
- don't label crashed domains as shut off
b79911
- fix virsh man page
b79911
- blktapdd support for alternate drivers like blktap
b79911
- memory leak fixes (xend interface and XML parsing)
b79911
- compile fix
b79911
- mlock/munlock size fixes
b79911
b79911
* Fri Sep 22 2006 Daniel Veillard <veillard@redhat.com> 0.1.7-1
b79911
- Fix bug when running against xen-3.0.3 hypercalls
b79911
- Fix memory bug when getting vcpus info from xend
b79911
b79911
* Fri Sep 22 2006 Daniel Veillard <veillard@redhat.com> 0.1.6-1
b79911
- Support for localization
b79911
- Support for new Xen-3.0.3 cdrom and disk configuration
b79911
- Support for setting VNC port
b79911
- Fix bug when running against xen-3.0.2 hypercalls
b79911
- Fix reconnection problem when talking directly to http xend
b79911
b79911
* Tue Sep  5 2006 Jeremy Katz <katzj@redhat.com> - 0.1.5-3
b79911
- patch from danpb to support new-format cd devices for HVM guests
b79911
b79911
* Tue Sep  5 2006 Daniel Veillard <veillard@redhat.com> 0.1.5-2
b79911
- reactivating ia64 support
b79911
b79911
* Tue Sep  5 2006 Daniel Veillard <veillard@redhat.com> 0.1.5-1
b79911
- new release
b79911
- bug fixes
b79911
- support for new hypervisor calls
b79911
- early code for config files and defined domains
b79911
b79911
* Mon Sep  4 2006 Daniel Berrange <berrange@redhat.com> - 0.1.4-5
b79911
- add patch to address dom0_ops API breakage in Xen 3.0.3 tree
b79911
b79911
* Mon Aug 28 2006 Jeremy Katz <katzj@redhat.com> - 0.1.4-4
b79911
- add patch to support paravirt framebuffer in Xen
b79911
b79911
* Mon Aug 21 2006 Daniel Veillard <veillard@redhat.com> 0.1.4-3
b79911
- another patch to fix network handling in non-HVM guests
b79911
b79911
* Thu Aug 17 2006 Daniel Veillard <veillard@redhat.com> 0.1.4-2
b79911
- patch to fix virParseUUID()
b79911
b79911
* Wed Aug 16 2006 Daniel Veillard <veillard@redhat.com> 0.1.4-1
b79911
- vCPUs and affinity support
b79911
- more complete XML, console and boot options
b79911
- specific features support
b79911
- enforced read-only connections
b79911
- various improvements, bug fixes
b79911
b79911
* Wed Aug  2 2006 Jeremy Katz <katzj@redhat.com> - 0.1.3-6
b79911
- add patch from pvetere to allow getting uuid from libvirt
b79911
b79911
* Wed Aug  2 2006 Jeremy Katz <katzj@redhat.com> - 0.1.3-5
b79911
- build on ia64 now
b79911
b79911
* Thu Jul 27 2006 Jeremy Katz <katzj@redhat.com> - 0.1.3-4
b79911
- don't BR xen, we just need xen-devel
b79911
b79911
* Thu Jul 27 2006 Daniel Veillard <veillard@redhat.com> 0.1.3-3
b79911
- need rebuild since libxenstore is now versionned
b79911
b79911
* Mon Jul 24 2006 Mark McLoughlin <markmc@redhat.com> - 0.1.3-2
b79911
- Add BuildRequires: xen-devel
b79911
b79911
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 0.1.3-1.1
b79911
- rebuild
b79911
b79911
* Tue Jul 11 2006 Daniel Veillard <veillard@redhat.com> 0.1.3-1
b79911
- support for HVM Xen guests
b79911
- various bugfixes
b79911
b79911
* Mon Jul  3 2006 Daniel Veillard <veillard@redhat.com> 0.1.2-1
b79911
- added a proxy mechanism for read only access using httpu
b79911
- fixed header includes paths
b79911
b79911
* Wed Jun 21 2006 Daniel Veillard <veillard@redhat.com> 0.1.1-1
b79911
- extend and cleanup the driver infrastructure and code
b79911
- python examples
b79911
- extend uuid support
b79911
- bug fixes, buffer handling cleanups
b79911
- support for new Xen hypervisor API
b79911
- test driver for unit testing
b79911
- virsh --conect argument
b79911
b79911
* Mon Apr 10 2006 Daniel Veillard <veillard@redhat.com> 0.1.0-1
b79911
- various fixes
b79911
- new APIs: for Node information and Reboot
b79911
- virsh improvements and extensions
b79911
- documentation updates and man page
b79911
- enhancement and fixes of the XML description format
b79911
b79911
* Tue Feb 28 2006 Daniel Veillard <veillard@redhat.com> 0.0.6-1
b79911
- added error handling APIs
b79911
- small bug fixes
b79911
- improve python bindings
b79911
- augment documentation and regression tests
b79911
b79911
* Thu Feb 23 2006 Daniel Veillard <veillard@redhat.com> 0.0.5-1
b79911
- new domain creation API
b79911
- new UUID based APIs
b79911
- more tests, documentation, devhelp
b79911
- bug fixes
b79911
b79911
* Fri Feb 10 2006 Daniel Veillard <veillard@redhat.com> 0.0.4-1
b79911
- fixes some problems in 0.0.3 due to the change of names
b79911
b79911
* Wed Feb  8 2006 Daniel Veillard <veillard@redhat.com> 0.0.3-1
b79911
- changed library name to libvirt from libvir, complete and test the python
b79911
  bindings
b79911
b79911
* Sun Jan 29 2006 Daniel Veillard <veillard@redhat.com> 0.0.2-1
b79911
- upstream release of 0.0.2, use xend, save and restore added, python bindings
b79911
  fixed
b79911
b79911
* Wed Nov  2 2005 Daniel Veillard <veillard@redhat.com> 0.0.1-1
b79911
- created