Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-ruamel.yaml for openSUSE:Factory checked in at 2023-05-19 11:54:46 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-ruamel.yaml (Old) and /work/SRC/openSUSE:Factory/.python-ruamel.yaml.new.1533 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-ruamel.yaml" Fri May 19 11:54:46 2023 rev:33 rq:1087782 version:0.17.26 Changes: -------- --- /work/SRC/openSUSE:Factory/python-ruamel.yaml/python-ruamel.yaml.changes 2023-04-22 21:59:25.684846125 +0200 +++ /work/SRC/openSUSE:Factory/.python-ruamel.yaml.new.1533/python-ruamel.yaml.changes 2023-05-19 11:54:51.295034300 +0200 @@ -1,0 +2,70 @@ +Wed May 17 09:07:31 UTC 2023 - Johannes Kastl <[email protected]> + +- adapt patch 0000-fix-big-endian-issues.patch +- update to 0.17.26: + - Fix for error on edge cage for issue 459 +- update to 0.17.25: + - fix for regression while dumping wrapped strings with too many + backslashes removed (issue 459, reported by `Lele Gaifax + <https://sourceforge.net/u/lele/profile/>`__) +- update to 0.17.24: + - rewrite of ``CommentedMap.insert()``. If you have a merge key + in the YAML document for the mapping you insert to, the + position value should be the one as you look at the YAML input. + This fixes issue 453 where other keys of a merged in mapping + would show up after an insert (reported by `Alex Miller + <https://sourceforge.net/u/millerdevel/profile/>`__). It also + fixes a call to `.insert()` resulting into the merge key to + move to be the first key if it wasn't already and it is also + now possible to insert a key before a merge key (even if the + fist key in the mapping). + - fix (in the pure Python implementation including default) for + issue 447. (reported by `Jack Cherng + <https://sourceforge.net/u/jfcherng/profile/>`__, also brought + up by brent on `StackOverflow + <https://stackoverflow.com/q/40072485/1307905>`__) +- update to 0.17.23: + - fix 458, error on plain scalars starting with word longer than + width. (reported by `Kyle Larose + <https://sourceforge.net/u/klarose/profile/>`__) + - fix for ``.update()`` no longer correctly handling keyword + arguments (reported by John Lin on <StackOverflow + `<https://stackoverflow.com/q/76089100/1307905>`__) + - fix issue 454: high Unicode (emojis) in quoted strings always + escaped (reported by `Michal ÄihaÅ + <https://sourceforge.net/u/nijel/profile/>`__ based on a + question on StackOverflow). + - fix issue with emitter conservatively inserting extra + backslashes in wrapped quoted strings (reported by thebenman on + `StackOverflow + <https://stackoverflow.com/q/75631454/1307905>`__) +- update to 0.17.22: + - fix issue 449 where the second exclamation marks got URL + encoded (reported and fixing PR provided by `John Stark + <https://sourceforge.net/u/jods/profile/>`__) + - fix issue with indent != 2 and literal scalars with empty first + line (reported by wrdis on `StackOverflow + <https://stackoverflow.com/q/75584262/1307905>`__) + - updated __repr__ of CommentedMap, now that Python's dict is + ordered -> no more ordereddict(list-of-tuples) + - merge MR 4, handling OctalInt in YAML 1.1 (provided by `Jacob + Floyd <https://sourceforge.net/u/cognifloyd/profile/>`_) + - fix loading of `!!float 42` (reported by Eric on `Stack + overflow <https://stackoverflow.com/a/71555107/1307905>`_) + - line numbers are now set on `CommentedKeySeq` and + `CommentedKeyMap` (which are created if you have a sequence + resp. mapping as the key in a mapping) + - plain scalars: put single words longer than width on a line of + their own, instead of after the previous line (issue 427, + reported by `Antoine Cotten + <https://sourceforge.net/u/antoineco/profile/>`_). Caveat: this + currently results in a space ending the previous line. + - fix for folded scalar part of 421: comments after ">" on first + line of folded scalars are now preserved (as were those in the + same position on literal scalars). Issue reported by Jacob + Floyd. + - added stacklevel to warnings + - typing changed from Py2 compatible comments to Py3, removed + various Py2-isms + +------------------------------------------------------------------- Old: ---- ruamel.yaml-0.17.21.tar.gz New: ---- ruamel.yaml-0.17.26.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-ruamel.yaml.spec ++++++ --- /var/tmp/diff_new_pack.8g2nFG/_old 2023-05-19 11:54:51.935037963 +0200 +++ /var/tmp/diff_new_pack.8g2nFG/_new 2023-05-19 11:54:51.939037986 +0200 @@ -16,10 +16,9 @@ # -%{?!python_module:%define python_module() python-%{**} python3-%{**}} %{?sle15_python_module_pythons} Name: python-ruamel.yaml -Version: 0.17.21 +Version: 0.17.26 Release: 0 Summary: Python YAML parser License: MIT @@ -39,8 +38,7 @@ of comments, seq/map flow style, and map key order. %prep -%setup -q -n ruamel.yaml-%{version} -%patch0 -p1 +%autosetup -p1 -n ruamel.yaml-%{version} rm -rf *egg-info %build @@ -54,7 +52,6 @@ %license LICENSE %doc CHANGES README.rst %{python_sitelib}/ruamel -%{python_sitelib}/ruamel.yaml-%{version}-py%{python_version}-nspkg.pth -%{python_sitelib}/ruamel.yaml-%{version}-py%{python_version}.egg-info +%{python_sitelib}/ruamel.yaml-%{version}*-info %changelog ++++++ 0000-fix-big-endian-issues.patch ++++++ --- /var/tmp/diff_new_pack.8g2nFG/_old 2023-05-19 11:54:51.967038147 +0200 +++ /var/tmp/diff_new_pack.8g2nFG/_new 2023-05-19 11:54:51.971038169 +0200 @@ -10,15 +10,15 @@ =================================================================== --- ruamel.yaml.orig/main.py 2021-10-14 00:10:27.265523204 +0200 +++ ruamel.yaml/main.py 2021-10-14 00:11:02.469504291 +0200 -@@ -51,7 +51,7 @@ - - - class YAML: -- def __init__(self, *, typ=None, pure=False, output=None, plug_ins=None): # input=None, -+ def __init__(self, *, typ=None, pure=None, output=None, plug_ins=None): # input=None, - # type: (Any, Optional[Text], Any, Any, Any) -> None - """ - typ: 'rt'/None -> RoundTripLoader/RoundTripDumper, (default) +@@ -55,7 +55,7 @@ + self: Any, + *, + typ: Optional[Union[List[Text], Text]] = None, +- pure: Any = False, ++ pure: Any = None, + output: Any = None, + plug_ins: Any = None, + ) -> None: # input=None, @@ -64,6 +64,11 @@ """ ++++++ ruamel.yaml-0.17.21.tar.gz -> ruamel.yaml-0.17.26.tar.gz ++++++ ++++ 11427 lines of diff (skipped)
