Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-pydantic for openSUSE:Factory 
checked in at 2025-09-22 16:38:26
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-pydantic (Old)
 and      /work/SRC/openSUSE:Factory/.python-pydantic.new.27445 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-pydantic"

Mon Sep 22 16:38:26 2025 rev:35 rq:1306150 version:2.11.9

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-pydantic/python-pydantic.changes  
2025-08-17 14:50:16.044323187 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-pydantic.new.27445/python-pydantic.changes   
    2025-09-22 16:38:40.834888773 +0200
@@ -1,0 +2,7 @@
+Sat Sep 13 16:02:48 UTC 2025 - Dirk Müller <[email protected]>
+
+- update to 2.11.9:
+  * Backport v1.10.23 changes
+  * Fix mypy plugin for mypy 1.18
+
+-------------------------------------------------------------------

Old:
----
  pydantic-2.11.7.tar.gz

New:
----
  pydantic-2.11.9.tar.gz

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

Other differences:
------------------
++++++ python-pydantic.spec ++++++
--- /var/tmp/diff_new_pack.v85WIS/_old  2025-09-22 16:38:41.462915197 +0200
+++ /var/tmp/diff_new_pack.v85WIS/_new  2025-09-22 16:38:41.466915366 +0200
@@ -27,7 +27,7 @@
 %endif
 %{?sle15_python_module_pythons}
 Name:           python-pydantic%{psuffix}
-Version:        2.11.7
+Version:        2.11.9
 Release:        0
 Summary:        Data validation and settings management using python type 
hinting
 License:        MIT

++++++ pydantic-2.11.7.tar.gz -> pydantic-2.11.9.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pydantic-2.11.7/CITATION.cff 
new/pydantic-2.11.9/CITATION.cff
--- old/pydantic-2.11.7/CITATION.cff    2025-06-14 10:20:16.000000000 +0200
+++ new/pydantic-2.11.9/CITATION.cff    2025-09-13 12:50:59.000000000 +0200
@@ -44,5 +44,5 @@
   - hints
   - typing
 license: MIT
-version: v2.11.7
-date-released: 2025-06-14
+version: v2.11.9
+date-released: 2025-09-13
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pydantic-2.11.7/HISTORY.md 
new/pydantic-2.11.9/HISTORY.md
--- old/pydantic-2.11.7/HISTORY.md      2025-06-14 10:20:16.000000000 +0200
+++ new/pydantic-2.11.9/HISTORY.md      2025-09-13 12:50:59.000000000 +0200
@@ -1,3 +1,23 @@
+## v2.11.9 (2025-09-13)
+
+[GitHub release](https://github.com/pydantic/pydantic/releases/tag/v2.11.9)
+
+### What's Changed
+
+#### Fixes
+
+* Backport v1.10.23 changes by @Viicos
+
+## v2.11.8 (2025-09-13)
+
+[GitHub release](https://github.com/pydantic/pydantic/releases/tag/v2.11.8)
+
+### What's Changed
+
+#### Fixes
+
+* Fix mypy plugin for mypy 1.18 by @cdce8p in 
[#12209](https://github.com/pydantic/pydantic/pull/12209)
+
 ## v2.11.7 (2025-06-14)
 
 [GitHub release](https://github.com/pydantic/pydantic/releases/tag/v2.11.7)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pydantic-2.11.7/pydantic/mypy.py 
new/pydantic-2.11.9/pydantic/mypy.py
--- old/pydantic-2.11.7/pydantic/mypy.py        2025-06-14 10:20:16.000000000 
+0200
+++ new/pydantic-2.11.9/pydantic/mypy.py        2025-09-13 12:50:59.000000000 
+0200
@@ -1319,9 +1319,9 @@
         arg_names.append(arg.variable.name)
         arg_kinds.append(arg.kind)
 
-    signature = CallableType(arg_types, arg_kinds, arg_names, return_type, 
function_type)
-    if tvar_def:
-        signature.variables = [tvar_def]
+    signature = CallableType(
+        arg_types, arg_kinds, arg_names, return_type, function_type, 
variables=[tvar_def] if tvar_def else None
+    )
 
     func = FuncDef(name, args, Block([PassStmt()]))
     func.info = info
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pydantic-2.11.7/pydantic/v1/mypy.py 
new/pydantic-2.11.9/pydantic/v1/mypy.py
--- old/pydantic-2.11.7/pydantic/v1/mypy.py     2025-06-14 10:20:16.000000000 
+0200
+++ new/pydantic-2.11.9/pydantic/v1/mypy.py     2025-09-13 12:50:59.000000000 
+0200
@@ -863,9 +863,9 @@
         arg_kinds.append(arg.kind)
 
     function_type = ctx.api.named_type(f'{BUILTINS_NAME}.function')
-    signature = CallableType(arg_types, arg_kinds, arg_names, return_type, 
function_type)
-    if tvar_def:
-        signature.variables = [tvar_def]
+    signature = CallableType(
+        arg_types, arg_kinds, arg_names, return_type, function_type, 
variables=[tvar_def] if tvar_def else None
+    )
 
     func = FuncDef(name, args, Block([PassStmt()]))
     func.info = info
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pydantic-2.11.7/pydantic/version.py 
new/pydantic-2.11.9/pydantic/version.py
--- old/pydantic-2.11.7/pydantic/version.py     2025-06-14 10:20:16.000000000 
+0200
+++ new/pydantic-2.11.9/pydantic/version.py     2025-09-13 12:50:59.000000000 
+0200
@@ -6,7 +6,7 @@
 
 __all__ = 'VERSION', 'version_info'
 
-VERSION = '2.11.7'
+VERSION = '2.11.9'
 """The version of Pydantic."""
 
 

Reply via email to