15
0

Accepting request 1115569 from home:mimi_vx:branches:devel:languages:python

- update to 0.17.35
 * Python 3.12 also loads C version when using `typ='safe'`
 * initial support for loading invoking `__post_init__` on dataclasses
    that have that method after loading a registered dataclass
    (`@yaml.register_class\n@dataclass\nclass ...`)
 * fix issue with scanner getting stuck in infinite loop
 * added `flow_seq_start`, `flow_seq_end`, `flow_seq_separator`,
    `flow_map_start`, `flow_map_end`, `flow_map_separator` **class**
    attributes to the `Emitter` class so flow style output
    can more easily be influenced

OBS-URL: https://build.opensuse.org/request/show/1115569
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-ruamel.yaml?expand=0&rev=73
This commit is contained in:
2023-10-04 14:10:18 +00:00
committed by Git OBS Bridge
parent 885b610607
commit 007d58b6f2
4 changed files with 19 additions and 6 deletions

View File

@@ -1,3 +1,17 @@
-------------------------------------------------------------------
Wed Oct 4 07:57:03 UTC 2023 - Ondřej Súkup <mimi.vx@gmail.com>
- update to 0.17.35
* Python 3.12 also loads C version when using `typ='safe'`
* initial support for loading invoking `__post_init__` on dataclasses
that have that method after loading a registered dataclass
(`@yaml.register_class\n@dataclass\nclass ...`)
* fix issue with scanner getting stuck in infinite loop
* added `flow_seq_start`, `flow_seq_end`, `flow_seq_separator`,
`flow_map_start`, `flow_map_end`, `flow_map_separator` **class**
attributes to the `Emitter` class so flow style output
can more easily be influenced
-------------------------------------------------------------------
Thu Jun 1 05:46:10 UTC 2023 - Johannes Kastl <kastl@b1-systems.de>