File tree Expand file tree Collapse file tree 3 files changed +28
-3
lines changed Expand file tree Collapse file tree 3 files changed +28
-3
lines changed Original file line number Diff line number Diff line change @@ -44,5 +44,5 @@ keywords:
44
44
- hints
45
45
- typing
46
46
license : MIT
47
- version : v2.11.3
48
- date-released : 2025-04-08
47
+ version : v2.11.4
48
+ date-released : 2025-04-29
Original file line number Diff line number Diff line change
1
+ ## v2.11.4 (2025-04-29)
2
+
3
+ [ GitHub release] ( https://github.com/pydantic/pydantic/releases/tag/v2.11.4 )
4
+
5
+ ### What's Changed
6
+
7
+ #### Packaging
8
+
9
+ * Bump ` mkdocs-llmstxt ` to v0.2.0 by @Viicos in [ #11725 ] ( https://github.com/pydantic/pydantic/pull/11725 )
10
+
11
+ #### Changes
12
+
13
+ * Allow config and bases to be specified together in ` create_model() ` by @Viicos in [ #11714 ] ( https://github.com/pydantic/pydantic/pull/11714 ) .
14
+ This change was backported as it was previously possible (although not meant to be supported)
15
+ to provide ` model_config ` as a field, which would make it possible to provide both configuration
16
+ and bases.
17
+
18
+ #### Fixes
19
+
20
+ * Remove generics cache workaround by @Viicos in [ #11755 ] ( https://github.com/pydantic/pydantic/pull/11755 )
21
+ * Remove coercion of decimal constraints by @Viicos in [ #11772 ] ( https://github.com/pydantic/pydantic/pull/11772 )
22
+ * Fix crash when expanding root type in the mypy plugin by @Viicos in [ #11735 ] ( https://github.com/pydantic/pydantic/pull/11735 )
23
+ * Fix issue with recursive generic models by @Viicos in [ #11775 ] ( https://github.com/pydantic/pydantic/pull/11775 )
24
+ * Traverse ` function-before ` schemas during schema gathering by @Viicos in [ #11801 ] ( https://github.com/pydantic/pydantic/pull/11801 )
25
+
1
26
## v2.11.3 (2025-04-08)
2
27
3
28
[ GitHub release] ( https://github.com/pydantic/pydantic/releases/tag/v2.11.3 )
Original file line number Diff line number Diff line change 6
6
7
7
__all__ = 'VERSION' , 'version_info'
8
8
9
- VERSION = '2.11.3 '
9
+ VERSION = '2.11.4 '
10
10
"""The version of Pydantic."""
11
11
12
12
You can’t perform that action at this time.
0 commit comments