From 0a39028d0298237f79da3b5373f61f1551ed2110 Mon Sep 17 00:00:00 2001 From: Christodoulos Tsoulloftas Date: Sun, 22 Dec 2024 09:08:13 +0200 Subject: [PATCH] Bump version 24.12 --- CHANGES.md | 27 +++++++++++++++++++++++++++ README.md | 23 +++++++++++++++++------ xsdata/__init__.py | 2 +- 3 files changed, 45 insertions(+), 7 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index e38037911..44fcf45d1 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,30 @@ +## 24.12 (2024-12-22) + +**Fixes** + +- Set the default value of prohibited fields to None + ([#1098](https://github.com/tefra/xsdata/pull/1098)) + +- Set body and fault as optional in output soap classes + ([#1099](https://github.com/tefra/xsdata/pull/1099)) + +- Resolve a conflict with type location when an element and a complex type have the same + name ([#1107](https://github.com/tefra/xsdata/pull/1107)) + +**Features** + +- Allow Xml Parser subclasses to override how the root class is located + ([#1090](https://github.com/tefra/xsdata/pull/1090)) + +- Include common soap encoding schema + ([#1100](https://github.com/tefra/xsdata/pull/1100)) + +**Deprecations** + +- Remove subscritable types config option +- Remove Type,Tuple,List,Dict from stop words +- Deprecate xsdata shorthand, use xsdata generate instead + ## 24.11 (2024-11-03) **Fixes** diff --git a/README.md b/README.md index ae00e7f81..d6d5b1e63 100644 --- a/README.md +++ b/README.md @@ -74,18 +74,29 @@ Check the [documentation](https://xsdata.readthedocs.io) for more ✨✨✨ - Support xinclude statements and unknown properties - Customize behaviour through config -## Changelog: 24.11 (2024-11-03) +## Changelog: 24.12 (2024-12-22) **Fixes** -- Avoid conflict with attributes named value when flattening extensions - ([#1085](https://github.com/tefra/xsdata/pull/1085)) +- Set the default value of prohibited fields to None + ([#1098](https://github.com/tefra/xsdata/pull/1098)) + +- Set body and fault as optional in output soap classes + ([#1099](https://github.com/tefra/xsdata/pull/1099)) + +- Resolve a conflict with type location when an element and a complex type have the same + name ([#1107](https://github.com/tefra/xsdata/pull/1107)) **Features** -- Add cli config to use generic collections - ([#1082](https://github.com/tefra/xsdata/pull/1082)) +- Allow Xml Parser subclasses to override how the root class is located + ([#1090](https://github.com/tefra/xsdata/pull/1090)) + +- Include common soap encoding schema + ([#1100](https://github.com/tefra/xsdata/pull/1100)) **Deprecations** -- Drop support for python 3.8 +- Remove subscritable types config option +- Remove Type,Tuple,List,Dict from stop words +- Deprecate xsdata shorthand, use xsdata generate instead diff --git a/xsdata/__init__.py b/xsdata/__init__.py index 580232f75..aa02de839 100644 --- a/xsdata/__init__.py +++ b/xsdata/__init__.py @@ -1 +1 @@ -__version__ = "24.11" +__version__ = "24.12"