Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-osc-lib for openSUSE:Factory 
checked in at 2022-10-01 17:44:09
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-osc-lib (Old)
 and      /work/SRC/openSUSE:Factory/.python-osc-lib.new.2275 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-osc-lib"

Sat Oct  1 17:44:09 2022 rev:18 rq:1007455 version:2.6.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-osc-lib/python-osc-lib.changes    
2022-06-19 21:12:00.846228770 +0200
+++ /work/SRC/openSUSE:Factory/.python-osc-lib.new.2275/python-osc-lib.changes  
2022-10-01 17:44:34.385824705 +0200
@@ -1,0 +2,7 @@
+Sat Oct  1 13:52:45 UTC 2022 - [email protected]
+
+- update to version 2.6.2
+  - Do not output log on bash autocomplete generation
+  - doc: Comment out language option
+
+-------------------------------------------------------------------

Old:
----
  osc-lib-2.6.0.tar.gz

New:
----
  osc-lib-2.6.2.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-osc-lib.spec ++++++
--- /var/tmp/diff_new_pack.V9KwQj/_old  2022-10-01 17:44:34.857825564 +0200
+++ /var/tmp/diff_new_pack.V9KwQj/_new  2022-10-01 17:44:34.861825571 +0200
@@ -17,13 +17,13 @@
 
 
 Name:           python-osc-lib
-Version:        2.6.0
+Version:        2.6.2
 Release:        0
 Summary:        OpenStackClient Library
 License:        Apache-2.0
 Group:          Development/Languages/Python
 URL:            https://docs.openstack.org/developer/osc-lib
-Source0:        
https://files.pythonhosted.org/packages/source/o/osc-lib/osc-lib-2.6.0.tar.gz
+Source0:        
https://files.pythonhosted.org/packages/source/o/osc-lib/osc-lib-2.6.2.tar.gz
 BuildRequires:  openstack-macros
 BuildRequires:  python3-cliff >= 3.2.0
 BuildRequires:  python3-fixtures
@@ -75,7 +75,7 @@
 Documentation for the OpenStack client library.
 
 %prep
-%autosetup -p1 -n osc-lib-2.6.0
+%autosetup -p1 -n osc-lib-2.6.2
 %py_req_cleanup
 
 %build

++++++ osc-lib-2.6.0.tar.gz -> osc-lib-2.6.2.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/osc-lib-2.6.0/AUTHORS new/osc-lib-2.6.2/AUTHORS
--- old/osc-lib-2.6.0/AUTHORS   2022-05-20 22:07:18.000000000 +0200
+++ new/osc-lib-2.6.2/AUTHORS   2022-08-24 15:23:41.000000000 +0200
@@ -37,6 +37,7 @@
 Daniel Speichert <[email protected]>
 Dao Cong Tien <[email protected]>
 Dave Chen <[email protected]>
+David Hill <[email protected]>
 David Moreau Simard <[email protected]>
 Dean Troyer <[email protected]>
 Dina Belova <[email protected]>
@@ -121,6 +122,7 @@
 Steve Martinelli <[email protected]>
 Steve Martinelli <[email protected]>
 Swapnil Kulkarni (coolsvap) <[email protected]>
+Takashi Kajinami <[email protected]>
 Tang Chen <[email protected]>
 Tang Chen <[email protected]>
 Telles Nobrega <[email protected]>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/osc-lib-2.6.0/ChangeLog new/osc-lib-2.6.2/ChangeLog
--- old/osc-lib-2.6.0/ChangeLog 2022-05-20 22:07:18.000000000 +0200
+++ new/osc-lib-2.6.2/ChangeLog 2022-08-24 15:23:41.000000000 +0200
@@ -1,6 +1,16 @@
 CHANGES
 =======
 
+2.6.2
+-----
+
+* doc: Comment out language option
+
+2.6.1
+-----
+
+* Do not output log on bash autocomplete generation
+
 2.6.0
 -----
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/osc-lib-2.6.0/PKG-INFO new/osc-lib-2.6.2/PKG-INFO
--- old/osc-lib-2.6.0/PKG-INFO  2022-05-20 22:07:18.967539800 +0200
+++ new/osc-lib-2.6.2/PKG-INFO  2022-08-24 15:23:41.457710500 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.2
 Name: osc-lib
-Version: 2.6.0
+Version: 2.6.2
 Summary: OpenStackClient Library
 Home-page: https://docs.openstack.org/osc-lib/latest/
 Author: OpenStack
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/osc-lib-2.6.0/osc_lib/shell.py 
new/osc-lib-2.6.2/osc_lib/shell.py
--- old/osc-lib-2.6.0/osc_lib/shell.py  2022-05-20 22:06:51.000000000 +0200
+++ new/osc-lib-2.6.2/osc_lib/shell.py  2022-08-24 15:23:01.000000000 +0200
@@ -144,7 +144,8 @@
             return ret_val
 
         finally:
-            self.log.info("END return value: %s", ret_val)
+            if 'complete' not in argv:
+                self.log.info("END return value: %s", ret_val)
 
     def init_profile(self):
         self.do_profile = osprofiler_profiler and self.options.profile
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/osc-lib-2.6.0/osc_lib.egg-info/PKG-INFO 
new/osc-lib-2.6.2/osc_lib.egg-info/PKG-INFO
--- old/osc-lib-2.6.0/osc_lib.egg-info/PKG-INFO 2022-05-20 22:07:18.000000000 
+0200
+++ new/osc-lib-2.6.2/osc_lib.egg-info/PKG-INFO 2022-08-24 15:23:41.000000000 
+0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.2
 Name: osc-lib
-Version: 2.6.0
+Version: 2.6.2
 Summary: OpenStackClient Library
 Home-page: https://docs.openstack.org/osc-lib/latest/
 Author: OpenStack
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/osc-lib-2.6.0/osc_lib.egg-info/pbr.json 
new/osc-lib-2.6.2/osc_lib.egg-info/pbr.json
--- old/osc-lib-2.6.0/osc_lib.egg-info/pbr.json 2022-05-20 22:07:18.000000000 
+0200
+++ new/osc-lib-2.6.2/osc_lib.egg-info/pbr.json 2022-08-24 15:23:41.000000000 
+0200
@@ -1 +1 @@
-{"git_version": "65c73fd", "is_release": true}
\ No newline at end of file
+{"git_version": "d438afa", "is_release": true}
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/osc-lib-2.6.0/releasenotes/source/conf.py 
new/osc-lib-2.6.2/releasenotes/source/conf.py
--- old/osc-lib-2.6.0/releasenotes/source/conf.py       2022-05-20 
22:06:51.000000000 +0200
+++ new/osc-lib-2.6.2/releasenotes/source/conf.py       2022-08-24 
15:23:01.000000000 +0200
@@ -107,7 +107,7 @@
 #
 # This is also used if you do content translation via gettext catalogs.
 # Usually you set "language" from the command line for these cases.
-language = None
+# language = None
 
 # There are two options for replacing |today|: either, you set today to some
 # non-false value, then it is used:

Reply via email to