15
0

Accepting request 794544 from home:pgajdos:python

- version update to 3.1.2
  SecretStorage 3.1.2, 2020-01-08
  ===============================
  * Updated the docs to describe how to close the D-Bus connection after use.
  * For secrets of wrong type, a TypeError is now raised [`#20`_].
  SecretStorage 3.1.1, 2019-01-24
  ===============================
  * Fixes TypeError with cryptography 2.5.
    Thanks Zach Hoffman for the pull request!
  SecretStorage 3.1.0, 2018-09-02
  ===============================
  * The ``dbus_init`` function no longer accepts any arguments.
  * The ``dbus_init`` function now converts ``ConnectionError`` and
    ``ValueError`` to ``SecretServiceNotAvailableException``.
  * New exception class: ``PromptDismissedException``.
  * Switched to declarative setup configuration. Build now requires
    setuptools 30.3 or newer.
  * Added support for prompts when deleting collections and items.
  * Added type annotations to all methods.
  SecretStorage 3.0.1, 2018-04-24
  ===============================
  * When ``DBUS_SESSION_BUS_ADDRESS`` environment variable is unset, and
    Jeepney raises a ``KeyError`` because of that, SecretStorage now intercepts
    that error and re-raises it as ``SecretServiceNotAvailableException``.
  * Uploaded to PyPI with fixed meta-data.
  SecretStorage 3.0.0, 2018-04-23
  ===============================
  .. warning::
     This release is backwards incompatible with the previous versions.
  * Python 3.5 or newer is now required.

OBS-URL: https://build.opensuse.org/request/show/794544
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-SecretStorage?expand=0&rev=23
This commit is contained in:
Tomáš Chvátal
2020-04-16 10:25:22 +00:00
committed by Git OBS Bridge
parent a07bf43510
commit 73707b2a25
4 changed files with 48 additions and 8 deletions

View File

@@ -1,3 +1,43 @@
-------------------------------------------------------------------
Thu Apr 16 09:00:03 UTC 2020 - pgajdos@suse.com
- version update to 3.1.2
SecretStorage 3.1.2, 2020-01-08
===============================
* Updated the docs to describe how to close the D-Bus connection after use.
* For secrets of wrong type, a TypeError is now raised [`#20`_].
SecretStorage 3.1.1, 2019-01-24
===============================
* Fixes TypeError with cryptography 2.5.
Thanks Zach Hoffman for the pull request!
SecretStorage 3.1.0, 2018-09-02
===============================
* The ``dbus_init`` function no longer accepts any arguments.
* The ``dbus_init`` function now converts ``ConnectionError`` and
``ValueError`` to ``SecretServiceNotAvailableException``.
* New exception class: ``PromptDismissedException``.
* Switched to declarative setup configuration. Build now requires
setuptools 30.3 or newer.
* Added support for prompts when deleting collections and items.
* Added type annotations to all methods.
SecretStorage 3.0.1, 2018-04-24
===============================
* When ``DBUS_SESSION_BUS_ADDRESS`` environment variable is unset, and
Jeepney raises a ``KeyError`` because of that, SecretStorage now intercepts
that error and re-raises it as ``SecretServiceNotAvailableException``.
* Uploaded to PyPI with fixed meta-data.
SecretStorage 3.0.0, 2018-04-23
===============================
.. warning::
This release is backwards incompatible with the previous versions.
* Python 3.5 or newer is now required.
* SecretStorage has been ported from dbus-python to Jeepney_, a
pure Python D-Bus client.
* The asynchronous API has been removed. If you need it, please
file a bug and describe your use case.
* The ``bus`` argument is now called ``connection`` in all functions
that accept it.
-------------------------------------------------------------------
Thu Nov 7 15:47:19 UTC 2019 - Matej Cepl <mcepl@suse.com>