[Pkg-libvirt-commits] [Git][libvirt-team/libvirt-python][upstream/latest] New upstream version 11.9.0

Pino Toscano (@pino) gitlab at salsa.debian.org
Wed Nov 5 06:59:39 GMT 2025



Pino Toscano pushed to branch upstream/latest at Libvirt Packaging Team / libvirt-python


Commits:
1016052f by Pino Toscano at 2025-11-05T07:56:51+01:00
New upstream version 11.9.0
- - - - -


6 changed files:

- AUTHORS
- ChangeLog
- PKG-INFO
- VERSION
- examples/consolecallback.py
- libvirt-python.spec


Changes:

=====================================
AUTHORS
=====================================
@@ -59,6 +59,7 @@ The individual contributors are
    Lei Li <lilei at linux.vnet.ibm.com>
    Lukas Billy <lbilly at redhat.com>
    Luyao Huang <lhuang at redhat.com>
+   Marc Hartmayer <mhartmay at linux.ibm.com>
    Marc Hartmayer <mhartmay at linux.vnet.ibm.com>
    Marcelo Cerri <mhcerri at linux.vnet.ibm.com>
    Marian Neagul <marian at info.uvt.ro>


=====================================
ChangeLog
=====================================
@@ -1,3 +1,28 @@
+ 2025- 10- 6 Michal Privoznik <mprivozn at redhat.com>
+    
+    ci: refresh with 'lcitool manifest'
+    This drops Fedora 40 and introduces Fedora 42 and drops
+    deprecated setting of env vars in dockerfiles.
+    
+    
+    
+ 2025- 10- 2 Marc Hartmayer <mhartmay at linux.ibm.com>
+    
+    examples/consolecallback.py: Use hex-encoding for `^]`
+    Use hex encoding for ^] to prevent potential rendering issues in web browsers
+    when viewing the file on GitLab.
+    
+    While at it, make the file an executable as a Shebang line is present.
+    
+    Suggested-by: Dawson Rosell <dawson.rosell at ibm.com>
+    Reviewed-by: Boris Fiuczynski <fiuczy at linux.ibm.com>
+    
+    
+ 2025- 10- 1 Jiri Denemark <jdenemar at redhat.com>
+    
+    Post-release version bump to 11.9.0
+    
+    
  2025- 9- 11 Jiri Denemark <jdenemar at redhat.com>
     
     spec: Set dist_name when creating a distribution tarball


=====================================
PKG-INFO
=====================================
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: libvirt-python
-Version: 11.8.0
+Version: 11.9.0
 Summary: The libvirt virtualization API python binding
 Home-page: http://www.libvirt.org
 Maintainer: Libvirt Maintainers


=====================================
VERSION
=====================================
@@ -1 +1 @@
-11.8.0
+11.9.0


=====================================
examples/consolecallback.py
=====================================
@@ -53,7 +53,7 @@ def check_console(console: Console) -> bool:
 
 def stdin_callback(watch: int, fd: int, events: int, console: Console) -> None:
     readbuf = os.read(fd, 1024)
-    if readbuf.startswith(b"
"):
+    if readbuf.startswith(b"\x1d"):
         console.run_console = False
         return
     if console.stream:


=====================================
libvirt-python.spec
=====================================
@@ -16,7 +16,7 @@
 
 Summary: The libvirt virtualization API python3 binding
 Name: libvirt-python
-Version: 11.8.0
+Version: 11.9.0
 Release: 1%{?dist}
 Source0: https://libvirt.org/sources/python/%{dist_name}-%{version}.tar.gz
 Url: https://libvirt.org



View it on GitLab: https://salsa.debian.org/libvirt-team/libvirt-python/-/commit/1016052f84bfec5c6708a26e33e6d08b4e992f29

-- 
View it on GitLab: https://salsa.debian.org/libvirt-team/libvirt-python/-/commit/1016052f84bfec5c6708a26e33e6d08b4e992f29
You're receiving this email because of your account on salsa.debian.org.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-libvirt-commits/attachments/20251105/15c7ec9e/attachment-0001.htm>


More information about the Pkg-libvirt-commits mailing list