14
0

- update to 0.5.0:

* Fixed #181: Added the ability to pass file paths to encrypt_file, decrypt_file,
    sign_file, verify_file, get_recipients_file and added import_keys_file.
  * Fixed #183: Handle FAILURE and UNEXPECTED conditions correctly. Thanks to sebbASF for
    the patch.
  * Fixed #185: Handle VALIDSIG arguments more robustly.
  * Fixed #188: Remove handling of DECRYPTION_FAILED from Verify code, as not required
    there. Thanks to sebbASF for the patch.
  * Fixed #190: Handle KEY_CREATED more robustly.
  * Fixed #191: Handle NODATA messages during verification.
  * Fixed #196: Don't log chunk data by default, as it could contain sensitive
    information (during decryption, for example).
  * Added the ability to pass an environment to the gpg executable. Thanks to Edvard
    Rejthar for the patch.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-python-gnupg?expand=0&rev=25
This commit is contained in:
2022-09-17 07:22:14 +00:00
committed by Git OBS Bridge
parent 1da429c041
commit 2057188cb0
4 changed files with 22 additions and 4 deletions

View File

@@ -1,3 +1,21 @@
-------------------------------------------------------------------
Sat Sep 17 07:21:39 UTC 2022 - Dirk Müller <dmueller@suse.com>
- update to 0.5.0:
* Fixed #181: Added the ability to pass file paths to encrypt_file, decrypt_file,
sign_file, verify_file, get_recipients_file and added import_keys_file.
* Fixed #183: Handle FAILURE and UNEXPECTED conditions correctly. Thanks to sebbASF for
the patch.
* Fixed #185: Handle VALIDSIG arguments more robustly.
* Fixed #188: Remove handling of DECRYPTION_FAILED from Verify code, as not required
there. Thanks to sebbASF for the patch.
* Fixed #190: Handle KEY_CREATED more robustly.
* Fixed #191: Handle NODATA messages during verification.
* Fixed #196: Don't log chunk data by default, as it could contain sensitive
information (during decryption, for example).
* Added the ability to pass an environment to the gpg executable. Thanks to Edvard
Rejthar for the patch.
-------------------------------------------------------------------
Sat Jun 4 13:54:10 UTC 2022 - Dirk Müller <dmueller@suse.com>