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

- Update to version 0.53.1
  * Expanded allowable range for `red-black-tree-mod`.
  * Fix issue with `MessageBase.asEmailMessage()` that prevented embedded
    MSG files from being attached.
  * Expand allowable versions of `BeautifulSoup4`.
- from version 0.53.0
  * Added tests for many functions in `extract_msg.utils`.
  * Fix an issue in `extract_msg.utils.msgPathToString()` that prevented
    backslashes from being replaced with forward slashes.
  * Change the behavior of `extract_msg.utils.minutesToDurationStr()`
    to properly use plurals.
  * Fixed issue in `extract_msg.utils.unwrapMsg()` that would prevent it
    from working on signed messages due to an API change.
  * Added new exception `MimetypeFailureError`.
  * Modified the logic of `MessageBase.asEmailMessage()` to use
    `AttachmentBase/SignedAttachment.name` instead of `getFilename()`
    which only exists on AttachmentBase.
  * Modified the logic of `MessageBase.htmlBodyPrepared()` to properly
    put the mimetype in image tags to ensure rendering. Logic was also
    modified to use `encode` instead of `prettify` to reduce computation
    and output size.

OBS-URL: https://build.opensuse.org/request/show/1248107
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-extract-msg?expand=0&rev=8
This commit is contained in:
2025-02-24 12:07:27 +00:00
committed by Git OBS Bridge
parent 753d4e0b61
commit 840348fb69
4 changed files with 30 additions and 5 deletions

View File

@@ -1,3 +1,28 @@
-------------------------------------------------------------------
Mon Feb 24 11:25:21 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to version 0.53.1
* Expanded allowable range for `red-black-tree-mod`.
* Fix issue with `MessageBase.asEmailMessage()` that prevented embedded
MSG files from being attached.
* Expand allowable versions of `BeautifulSoup4`.
- from version 0.53.0
* Added tests for many functions in `extract_msg.utils`.
* Fix an issue in `extract_msg.utils.msgPathToString()` that prevented
backslashes from being replaced with forward slashes.
* Change the behavior of `extract_msg.utils.minutesToDurationStr()`
to properly use plurals.
* Fixed issue in `extract_msg.utils.unwrapMsg()` that would prevent it
from working on signed messages due to an API change.
* Added new exception `MimetypeFailureError`.
* Modified the logic of `MessageBase.asEmailMessage()` to use
`AttachmentBase/SignedAttachment.name` instead of `getFilename()`
which only exists on AttachmentBase.
* Modified the logic of `MessageBase.htmlBodyPrepared()` to properly
put the mimetype in image tags to ensure rendering. Logic was also
modified to use `encode` instead of `prettify` to reduce computation
and output size.
-------------------------------------------------------------------
Wed Oct 23 17:11:20 UTC 2024 - Matej Cepl <mcepl@cepl.eu>