Accepting request 1317106 from home:glaubitz:branches:devel:languages:python

- Update to 2.2.1
  * [Bug] #1038: (fixed in #1040) Python 3.14 tweaked the behavior
    of fcntl to raise SystemError on buffer overflows, which our
    interpretation of termios.TIOCGWINSZ technically was (we care
    only about the first two fields in what is technically a four-
    field struct with half the fields unused). This has been fixed
    by unpacking all 4 fields and then discarding the unused fields
    during processing.

OBS-URL: https://build.opensuse.org/request/show/1317106
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-invoke?expand=0&rev=53
This commit is contained in:
2025-11-11 16:26:02 +00:00
committed by Git OBS Bridge
parent 6e4d3e0efb
commit 919144367e
4 changed files with 16 additions and 4 deletions

View File

@@ -1,3 +1,15 @@
-------------------------------------------------------------------
Tue Nov 11 14:04:44 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to 2.2.1
* [Bug] #1038: (fixed in #1040) Python 3.14 tweaked the behavior
of fcntl to raise SystemError on buffer overflows, which our
interpretation of termios.TIOCGWINSZ technically was (we care
only about the first two fields in what is technically a four-
field struct with half the fields unused). This has been fixed
by unpacking all 4 fields and then discarding the unused fields
during processing.
-------------------------------------------------------------------
Thu Aug 21 08:47:08 UTC 2025 - Markéta Machová <mmachova@suse.com>