Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package perl-Sys-Virt for openSUSE:Factory checked in at 2026-04-04 19:05:33 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/perl-Sys-Virt (Old) and /work/SRC/openSUSE:Factory/.perl-Sys-Virt.new.21863 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "perl-Sys-Virt" Sat Apr 4 19:05:33 2026 rev:115 rq:1344221 version:12.2.0 Changes: -------- --- /work/SRC/openSUSE:Factory/perl-Sys-Virt/perl-Sys-Virt.changes 2026-03-08 17:27:03.691241354 +0100 +++ /work/SRC/openSUSE:Factory/.perl-Sys-Virt.new.21863/perl-Sys-Virt.changes 2026-04-04 19:07:01.344153327 +0200 @@ -1,0 +2,6 @@ +Wed Apr 1 20:22:38 UTC 2026 - James Fehlig <[email protected]> + +- Update to 12.2.0 + - Add all new APIs and constants available in libvirt 12.2.0 + +------------------------------------------------------------------- Old: ---- Sys-Virt-12.1.0.tar.gz New: ---- Sys-Virt-12.2.0.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ perl-Sys-Virt.spec ++++++ --- /var/tmp/diff_new_pack.MUi1J2/_old 2026-04-04 19:07:02.340194165 +0200 +++ /var/tmp/diff_new_pack.MUi1J2/_new 2026-04-04 19:07:02.344194329 +0200 @@ -1,7 +1,7 @@ # # spec file for package perl-Sys-Virt # -# Copyright (c) 2026 SUSE LLC +# Copyright (c) 2026 SUSE LLC and contributors # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: perl-Sys-Virt -Version: 12.1.0 +Version: 12.2.0 Release: 0 %define cpan_name Sys-Virt Summary: Represent and manage a libvirt hypervisor connection ++++++ Sys-Virt-12.1.0.tar.gz -> Sys-Virt-12.2.0.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Sys-Virt-12.1.0/Build.PL new/Sys-Virt-12.2.0/Build.PL --- old/Sys-Virt-12.1.0/Build.PL 2026-03-02 19:01:49.000000000 +0100 +++ new/Sys-Virt-12.2.0/Build.PL 2026-04-01 16:28:06.000000000 +0200 @@ -17,7 +17,7 @@ use strict; use warnings; -my $libvirtver = "12.1.0"; +my $libvirtver = "12.2.0"; my $stat = system "pkg-config --atleast-version=$libvirtver libvirt"; die "cannot run pkg-config to check libvirt version" if $stat == -1; die "libvirt >= $libvirtver is required\n" unless $stat == 0; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Sys-Virt-12.1.0/Changes new/Sys-Virt-12.2.0/Changes --- old/Sys-Virt-12.1.0/Changes 2026-03-02 19:01:49.000000000 +0100 +++ new/Sys-Virt-12.2.0/Changes 2026-04-01 16:28:06.000000000 +0200 @@ -1,5 +1,11 @@ Revision history for perl module Sys::Virt +12.2.0 2026-04-01 + + - Add VIR_DOMAIN_BLOCK_COPY_TARGET_ZEROED constant + - Add VIR_MIGRATE_PARAM_MIGRATE_DISKS_TARGET_ZERO constant + - Add VIR_CONNECT_GET_DOMAIN_CAPABILITIES_EXPAND_CPU_FEATURES constant + 12.1.0 2026-03-03 - Add VIR_DOMAIN_STATS_BLOCK_SUFFIX_LATENCY_HISTOGRAM_* constants diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Sys-Virt-12.1.0/README new/Sys-Virt-12.2.0/README --- old/Sys-Virt-12.1.0/README 2026-03-02 19:01:49.000000000 +0100 +++ new/Sys-Virt-12.2.0/README 2026-04-01 16:28:06.000000000 +0200 @@ -8,6 +8,6 @@ Module::Build build system. For installation instructions, consult the INSTALL file. -The current minimum required version of libvirt is 12.1.0 +The current minimum required version of libvirt is 12.2.0 -- End diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Sys-Virt-12.1.0/lib/Sys/Virt/Domain.pm new/Sys-Virt-12.2.0/lib/Sys/Virt/Domain.pm --- old/Sys-Virt-12.1.0/lib/Sys/Virt/Domain.pm 2026-03-02 19:01:49.000000000 +0100 +++ new/Sys-Virt-12.2.0/lib/Sys/Virt/Domain.pm 2026-04-01 16:28:06.000000000 +0200 @@ -1231,6 +1231,10 @@ during the switchover phase. If set to 0 or omitted, QEMU will estimate a suitable default. +=item C<Sys::Virt::Domain::MIGRATE_PARAM_MIGRATE_DISKS_TARGET_ZERO> + +List of target disks that can be assumed to be initialized to all zeros. + =back =item $ddom = $dom->migrate(destcon, flags=0, dname=undef, uri=undef, bandwidth=0) @@ -4570,6 +4574,11 @@ Force the copy job to synchronously propagate guest writes into the destination image, so that the copy is guaranteed to converge +=item Sys::Virt::Domain::BLOCK_COPY_TARGET_ZEROED + +The target image is guaranteed to be pre-zeroed so all +reads will return zeros. + =back =head2 DOMAIN BLOCK JOB ABORT CONSTANTS diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Sys-Virt-12.1.0/lib/Sys/Virt.pm new/Sys-Virt-12.2.0/lib/Sys/Virt.pm --- old/Sys-Virt-12.1.0/lib/Sys/Virt.pm 2026-03-02 19:01:49.000000000 +0100 +++ new/Sys-Virt-12.2.0/lib/Sys/Virt.pm 2026-04-01 16:28:06.000000000 +0200 @@ -92,7 +92,7 @@ use Sys::Virt::DomainCheckpoint; use Sys::Virt::Stream; -our $VERSION = '12.1.0'; +our $VERSION = '12.2.0'; require XSLoader; XSLoader::load('Sys::Virt', $VERSION); @@ -1958,6 +1958,10 @@ Disable deprecated features when reporting CPU model information. +=item $Sys::Virt::DOMAIN_CAPABILITIES_EXPAND_CPU_FEATURES + +Expand base CPU features implied by the model name. + =back =item my $xml = $con->get_storage_pool_capabilities($flags=0); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Sys-Virt-12.1.0/lib/Sys/Virt.xs new/Sys-Virt-12.2.0/lib/Sys/Virt.xs --- old/Sys-Virt-12.1.0/lib/Sys/Virt.xs 2026-03-02 19:01:49.000000000 +0100 +++ new/Sys-Virt-12.2.0/lib/Sys/Virt.xs 2026-04-01 16:28:06.000000000 +0200 @@ -9913,6 +9913,7 @@ REGISTER_CONSTANT_STR(VIR_NODE_SEV_CPU0_ID, SEV_CPU0_ID); REGISTER_CONSTANT(VIR_CONNECT_GET_DOMAIN_CAPABILITIES_DISABLE_DEPRECATED_FEATURES, DOMAIN_CAPABILITIES_DISABLE_DEPRECATED_FEATURES); + REGISTER_CONSTANT(VIR_CONNECT_GET_DOMAIN_CAPABILITIES_EXPAND_CPU_FEATURES, DOMAIN_CAPABILITIES_EXPAND_CPU_FEATURES); stash = gv_stashpv( "Sys::Virt::Event", TRUE ); @@ -10087,6 +10088,7 @@ REGISTER_CONSTANT_STR(VIR_MIGRATE_PARAM_COMPRESSION_ZSTD_LEVEL, MIGRATE_PARAM_ZSTD_LEVEL); REGISTER_CONSTANT_STR(VIR_MIGRATE_PARAM_MIGRATE_DISKS_DETECT_ZEROES, MIGRATE_PARAM_DISKS_DETECT_ZEROES); REGISTER_CONSTANT_STR(VIR_MIGRATE_PARAM_BANDWIDTH_AVAIL_SWITCHOVER, MIGRATE_PARAM_BANDWIDTH_AVAIL_SWITCHOVER); + REGISTER_CONSTANT_STR(VIR_MIGRATE_PARAM_MIGRATE_DISKS_TARGET_ZERO, MIGRATE_PARAM_MIGRATE_DISKS_TARGET_ZERO); REGISTER_CONSTANT(VIR_DOMAIN_MIGRATE_MAX_SPEED_POSTCOPY, MIGRATE_MAX_SPEED_POSTCOPY); @@ -10600,6 +10602,7 @@ REGISTER_CONSTANT(VIR_DOMAIN_BLOCK_COPY_SHALLOW, BLOCK_COPY_SHALLOW); REGISTER_CONSTANT(VIR_DOMAIN_BLOCK_COPY_TRANSIENT_JOB, BLOCK_COPY_TRANSIENT_JOB); REGISTER_CONSTANT(VIR_DOMAIN_BLOCK_COPY_SYNCHRONOUS_WRITES, BLOCK_COPY_SYNCHRONOUS_WRITES); + REGISTER_CONSTANT(VIR_DOMAIN_BLOCK_COPY_TARGET_ZEROED, BLOCK_COPY_TARGET_ZEROED); REGISTER_CONSTANT(VIR_DOMAIN_BLOCK_JOB_SPEED_BANDWIDTH_BYTES, BLOCK_JOB_SPEED_BANDWIDTH_BYTES); ++++++ _service ++++++ --- /var/tmp/diff_new_pack.MUi1J2/_old 2026-04-04 19:07:02.564203349 +0200 +++ /var/tmp/diff_new_pack.MUi1J2/_new 2026-04-04 19:07:02.580204005 +0200 @@ -1,7 +1,7 @@ <services> <service name="tar_scm" mode="manual"> <param name="filename">Sys-Virt</param> - <param name="revision">v12.1.0</param> + <param name="revision">v12.2.0</param> <param name="scm">git</param> <param name="submodules">disable</param> <param name="url">https://gitlab.com/libvirt/libvirt-perl.git</param>
