Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-markdownify for 
openSUSE:Factory checked in at 2026-07-02 20:09:55
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-markdownify (Old)
 and      /work/SRC/openSUSE:Factory/.python-markdownify.new.1982 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-markdownify"

Thu Jul  2 20:09:55 2026 rev:2 rq:1363030 version:1.2.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-markdownify/python-markdownify.changes    
2026-03-03 15:32:39.881338499 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-markdownify.new.1982/python-markdownify.changes
  2026-07-02 20:13:12.449189654 +0200
@@ -1,0 +2,8 @@
+Wed Jul  1 16:20:35 UTC 2026 - Dirk Müller <[email protected]>
+
+- update to 1.2.3:
+  * fix: allow `None` to be used for `strip_pre` and `warp_width`
+    params in types
+  * fix: preserve text nested inside `` by html.parser
+
+-------------------------------------------------------------------

Old:
----
  markdownify-1.2.2.tar.gz

New:
----
  markdownify-1.2.3.tar.gz

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

Other differences:
------------------
++++++ python-markdownify.spec ++++++
--- /var/tmp/diff_new_pack.tAZPV6/_old  2026-07-02 20:13:13.369221504 +0200
+++ /var/tmp/diff_new_pack.tAZPV6/_new  2026-07-02 20:13:13.369221504 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-markdownify
 #
-# Copyright (c) 2025 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
@@ -18,18 +18,18 @@
 
 %bcond_without libalternatives
 Name:           python-markdownify
-Version:        1.2.2
+Version:        1.2.3
 Release:        0
 Summary:        Convert HTML to markdown
 License:        MIT
 URL:            http://github.com/matthewwithanm/python-markdownify
 Source:         
https://files.pythonhosted.org/packages/source/m/markdownify/markdownify-%{version}.tar.gz
-BuildRequires:  python-rpm-macros
 BuildRequires:  %{python_module pip}
 BuildRequires:  %{python_module setuptools >= 61.2}
 BuildRequires:  %{python_module setuptools_scm >= 3.4.3}
 BuildRequires:  alts
 BuildRequires:  fdupes
+BuildRequires:  python-rpm-macros
 Requires:       alts
 Requires:       python-beautifulsoup4 >= 4.9
 Requires:       python-six >= 1.15

++++++ markdownify-1.2.2.tar.gz -> markdownify-1.2.3.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/markdownify-1.2.2/PKG-INFO 
new/markdownify-1.2.3/PKG-INFO
--- old/markdownify-1.2.2/PKG-INFO      2025-11-16 20:21:17.136577400 +0100
+++ new/markdownify-1.2.3/PKG-INFO      2026-06-30 22:27:37.607043700 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: markdownify
-Version: 1.2.2
+Version: 1.2.3
 Summary: Convert HTML to markdown.
 Author-email: Matthew Tretter <[email protected]>
 Project-URL: Homepage, http://github.com/matthewwithanm/python-markdownify
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/markdownify-1.2.2/markdownify/__init__.py 
new/markdownify-1.2.3/markdownify/__init__.py
--- old/markdownify-1.2.2/markdownify/__init__.py       2025-11-16 
20:21:03.000000000 +0100
+++ new/markdownify-1.2.3/markdownify/__init__.py       2026-06-30 
22:27:23.000000000 +0200
@@ -475,12 +475,12 @@
 
     def convert_br(self, el, text, parent_tags):
         if '_inline' in parent_tags:
-            return ' '
+            return text + ' ' if text else ' '
 
         if self.options['newline_style'].lower() == BACKSLASH:
-            return '\\\n'
+            return '\\\n' + text
         else:
-            return '  \n'
+            return '  \n' + text
 
     def convert_code(self, el, text, parent_tags):
         if '_noformat' in parent_tags:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/markdownify-1.2.2/markdownify/__init__.pyi 
new/markdownify-1.2.3/markdownify/__init__.pyi
--- old/markdownify-1.2.2/markdownify/__init__.pyi      2025-11-16 
20:21:03.000000000 +0100
+++ new/markdownify-1.2.3/markdownify/__init__.pyi      2026-06-30 
22:27:23.000000000 +0200
@@ -32,13 +32,13 @@
     newline_style: str = ...,
     strip: Union[list[str], None] = ...,
     strip_document: Union[str, None] = ...,
-    strip_pre: str = ...,
+    strip_pre: Union[str, None] = ...,
     strong_em_symbol: str = ...,
     sub_symbol: str = ...,
     sup_symbol: str = ...,
     table_infer_header: bool = ...,
     wrap: bool = ...,
-    wrap_width: int = ...,
+    wrap_width: Union[int, None] = ...,
 ) -> str: ...
 
 
@@ -60,13 +60,13 @@
         newline_style: str = ...,
         strip: Union[list[str], None] = ...,
         strip_document: Union[str, None] = ...,
-        strip_pre: str = ...,
+        strip_pre: Union[str, None] = ...,
         strong_em_symbol: str = ...,
         sub_symbol: str = ...,
         sup_symbol: str = ...,
         table_infer_header: bool = ...,
         wrap: bool = ...,
-        wrap_width: int = ...,
+        wrap_width: Union[int, None] = ...,
     ) -> None:
         ...
   
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/markdownify-1.2.2/markdownify.egg-info/PKG-INFO 
new/markdownify-1.2.3/markdownify.egg-info/PKG-INFO
--- old/markdownify-1.2.2/markdownify.egg-info/PKG-INFO 2025-11-16 
20:21:17.000000000 +0100
+++ new/markdownify-1.2.3/markdownify.egg-info/PKG-INFO 2026-06-30 
22:27:37.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: markdownify
-Version: 1.2.2
+Version: 1.2.3
 Summary: Convert HTML to markdown.
 Author-email: Matthew Tretter <[email protected]>
 Project-URL: Homepage, http://github.com/matthewwithanm/python-markdownify
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/markdownify-1.2.2/pyproject.toml 
new/markdownify-1.2.3/pyproject.toml
--- old/markdownify-1.2.2/pyproject.toml        2025-11-16 20:21:03.000000000 
+0100
+++ new/markdownify-1.2.3/pyproject.toml        2026-06-30 22:27:23.000000000 
+0200
@@ -4,7 +4,7 @@
 
 [project]
 name = "markdownify"
-version = "1.2.2"
+version = "1.2.3"
 authors = [{name = "Matthew Tretter", email = "[email protected]"}]
 description = "Convert HTML to markdown."
 readme = "README.rst"

Reply via email to