14
0

- Update to 2.6.3:

* Solved an error in the xmlformatter when using default namespaces. #89
  * #108: Fixed an error that happens if using namespaces like ns0 or ns1.
  * Added `InsertNamespace` and `DeleteNamespace` actions for better handling
    of changing namespaces. Should improve any "Unknown namespace prefix"
    errors. Changing the URI of a a namespace prefix is not supported, and
    will raise an error.
  * Used geometric mean for the node_ratio, for better handling of simple nodes.
  * Added an experimental --best-match method that is slower, but generate
    smaller diffs when you have many nodes that are similar.
  * The -F argument now also affects the --fast-match stage.
  * Make it possible to adjust the attributes considered when comparing nodes.
  * Python versions 3.7 to 3.11 are now supported.
  * Improved node matching method, that puts more emphasis similarities than
    differences when weighing attributes vs children.
  * Added a parameter to return error code 1 when there are differences
    between the files
  * Added a parameter for ignoring attributes in comparison.
  * Solved a bug in xmlpatch in certain namespace situations.
  * Added a --diff-encoding parameter to xmlpatch, to support diff-files
    that are not in your system default encoding.
- Switch to autosetup and pyproject macros.
- No more greedy globs in %files.
- Drop python-xmldiff-src-upgrades.patch, now included upstream.
- Drop python-xmldiff-no-six-remains.patch, no longer required.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-xmldiff?expand=0&rev=19
This commit is contained in:
2024-03-05 04:35:32 +00:00
committed by Git OBS Bridge
parent ea611f4d51
commit 4474f3da5f
6 changed files with 42 additions and 11604 deletions

View File

@@ -1,3 +1,32 @@
-------------------------------------------------------------------
Tue Mar 5 04:33:13 UTC 2024 - Steve Kowalik <steven.kowalik@suse.com>
- Update to 2.6.3:
* Solved an error in the xmlformatter when using default namespaces. #89
* #108: Fixed an error that happens if using namespaces like ns0 or ns1.
* Added `InsertNamespace` and `DeleteNamespace` actions for better handling
of changing namespaces. Should improve any "Unknown namespace prefix"
errors. Changing the URI of a a namespace prefix is not supported, and
will raise an error.
* Used geometric mean for the node_ratio, for better handling of simple nodes.
* Added an experimental --best-match method that is slower, but generate
smaller diffs when you have many nodes that are similar.
* The -F argument now also affects the --fast-match stage.
* Make it possible to adjust the attributes considered when comparing nodes.
* Python versions 3.7 to 3.11 are now supported.
* Improved node matching method, that puts more emphasis similarities than
differences when weighing attributes vs children.
* Added a parameter to return error code 1 when there are differences
between the files
* Added a parameter for ignoring attributes in comparison.
* Solved a bug in xmlpatch in certain namespace situations.
* Added a --diff-encoding parameter to xmlpatch, to support diff-files
that are not in your system default encoding.
- Switch to autosetup and pyproject macros.
- No more greedy globs in %files.
- Drop python-xmldiff-src-upgrades.patch, now included upstream.
- Drop python-xmldiff-no-six-remains.patch, no longer required.
-------------------------------------------------------------------
Fri Oct 14 12:10:39 UTC 2022 - pgajdos@suse.com