Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-cli-helpers for 
openSUSE:Factory checked in at 2026-05-18 17:46:53
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-cli-helpers (Old)
 and      /work/SRC/openSUSE:Factory/.python-cli-helpers.new.1966 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-cli-helpers"

Mon May 18 17:46:53 2026 rev:18 rq:1353613 version:2.15.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-cli-helpers/python-cli-helpers.changes    
2026-04-20 16:11:41.834140916 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-cli-helpers.new.1966/python-cli-helpers.changes
  2026-05-18 17:47:07.806104315 +0200
@@ -1,0 +2,6 @@
+Sun May 17 19:10:54 UTC 2026 - Dirk Müller <[email protected]>
+
+- update to 2.15.0:
+  * Add `mysql_heavy` table format.
+
+-------------------------------------------------------------------

Old:
----
  cli_helpers-2.14.0.tar.gz

New:
----
  cli_helpers-2.15.0.tar.gz

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

Other differences:
------------------
++++++ python-cli-helpers.spec ++++++
--- /var/tmp/diff_new_pack.KAeF5b/_old  2026-05-18 17:47:08.446130763 +0200
+++ /var/tmp/diff_new_pack.KAeF5b/_new  2026-05-18 17:47:08.450130928 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           python-cli-helpers
-Version:        2.14.0
+Version:        2.15.0
 Release:        0
 Summary:        Helpers for building command-line apps
 License:        BSD-3-Clause

++++++ cli_helpers-2.14.0.tar.gz -> cli_helpers-2.15.0.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cli_helpers-2.14.0/CHANGELOG 
new/cli_helpers-2.15.0/CHANGELOG
--- old/cli_helpers-2.14.0/CHANGELOG    2026-04-13 17:13:15.000000000 +0200
+++ new/cli_helpers-2.15.0/CHANGELOG    2026-05-16 15:01:26.000000000 +0200
@@ -1,5 +1,11 @@
 # Changelog
 
+## Version 2.15.0
+
+(released on 2026-05-16)
+
+- Add `mysql_heavy` table format.
+
 ## Version 2.14.0
 
 (released on 2026-04-13)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cli_helpers-2.14.0/PKG-INFO 
new/cli_helpers-2.15.0/PKG-INFO
--- old/cli_helpers-2.14.0/PKG-INFO     2026-04-13 17:14:27.000000000 +0200
+++ new/cli_helpers-2.15.0/PKG-INFO     2026-05-16 15:03:33.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.4
 Name: cli_helpers
-Version: 2.14.0
+Version: 2.15.0
 Summary: Helpers for building command-line apps
 Home-page: https://github.com/dbcli/cli_helpers
 Author: dbcli
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cli_helpers-2.14.0/cli_helpers/__init__.py 
new/cli_helpers-2.15.0/cli_helpers/__init__.py
--- old/cli_helpers-2.14.0/cli_helpers/__init__.py      2026-04-13 
17:13:30.000000000 +0200
+++ new/cli_helpers-2.15.0/cli_helpers/__init__.py      2026-05-16 
15:02:07.000000000 +0200
@@ -1 +1 @@
-__version__ = "2.14.0"
+__version__ = "2.15.0"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/cli_helpers-2.14.0/cli_helpers/tabular_output/tabulate_adapter.py 
new/cli_helpers-2.15.0/cli_helpers/tabular_output/tabulate_adapter.py
--- old/cli_helpers-2.14.0/cli_helpers/tabular_output/tabulate_adapter.py       
2026-03-21 11:41:59.000000000 +0100
+++ new/cli_helpers-2.15.0/cli_helpers/tabular_output/tabulate_adapter.py       
2026-05-16 15:01:26.000000000 +0200
@@ -92,6 +92,17 @@
     with_header_hide=None,
 )
 
+tabulate._table_formats["mysql_heavy"] = tabulate.TableFormat(
+    lineabove=tabulate.Line("┏", "━", "┳", "┓"),
+    linebelowheader=tabulate.Line("┣", "━", "╋", "┫"),
+    linebetweenrows=None,
+    linebelow=tabulate.Line("┗", "━", "┻", "┛"),
+    headerrow=tabulate.DataRow("┃", "┃", "┃"),
+    datarow=tabulate.DataRow("┃", "┃", "┃"),
+    padding=1,
+    with_header_hide=None,
+)
+
 # "minimal" is the same as "plain", but without headers
 tabulate._table_formats["minimal"] = tabulate._table_formats["plain"]
 
@@ -128,6 +139,7 @@
     "double",
     "mysql",
     "mysql_unicode",
+    "mysql_heavy",
 )
 
 supported_formats = supported_markup_formats + supported_table_formats
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cli_helpers-2.14.0/cli_helpers.egg-info/PKG-INFO 
new/cli_helpers-2.15.0/cli_helpers.egg-info/PKG-INFO
--- old/cli_helpers-2.14.0/cli_helpers.egg-info/PKG-INFO        2026-04-13 
17:14:27.000000000 +0200
+++ new/cli_helpers-2.15.0/cli_helpers.egg-info/PKG-INFO        2026-05-16 
15:03:32.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.4
 Name: cli_helpers
-Version: 2.14.0
+Version: 2.15.0
 Summary: Helpers for building command-line apps
 Home-page: https://github.com/dbcli/cli_helpers
 Author: dbcli

Reply via email to