1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
|
SecretStorage 3.5.0, 2025-11-23
===============================
* Added ``timeout`` argument to the ``unlock()`` methods of ``Collection``
and ``Item`` [`#33`_].
* Removed ``int_to_bytes()`` function in favor of the built-in method.
.. _`#33`: https://github.com/mitya57/secretstorage/issues/33
SecretStorage 3.4.1, 2025-11-11
===============================
* Make sure public key length is exactly 128 bytes [`#48`_].
This fixes ``Client public key size is invalid`` error from KWallet.
.. _`#48`: https://github.com/mitya57/secretstorage/issues/48
SecretStorage 3.4.0, 2025-09-09
===============================
* Handle D-Bus ``UnknownObject`` error when no collection is found [`#43`_].
Thanks to Renato Alencar for the pull request!
* Added ``__repr__`` methods to Collection and Item classes [`#47`_].
* Moved project metadata to ``pyproject.toml``.
* Python ≥ 3.10 and setuptools ≥ 77.0 are now required.
* Various code modernizations.
Thanks to Hugo van Kemenade and Tomasz Kłoczko for the pull requests!
.. _`#43`: https://github.com/mitya57/secretstorage/pull/43
.. _`#47`: https://github.com/mitya57/secretstorage/issues/47
SecretStorage 3.3.3, 2022-08-13
===============================
* Handle case when CreateItem method returns a prompt [`#39`_].
* Reformatted code in accordance with :PEP:`8` standard.
.. _`#39`: https://github.com/mitya57/secretstorage/issues/39
SecretStorage 3.3.2, 2022-04-19
===============================
* Fixed a deprecation warning with jeepney 0.8.
Thanks to Sam McKelvie for the pull request!
SecretStorage 3.3.1, 2021-02-09
===============================
* Fixed a deprecation warning from cryptography module.
Thanks to Jante Jomppanen for the pull request!
* Added a :PEP:`561` ``py.typed`` file to declare typing support.
SecretStorage 3.3.0, 2020-11-24
===============================
* Use new-style Jeepney blocking I/O API.
Thanks Thomas Kluyver for the pull request!
* Python ≥ 3.6 and Jeepney ≥ 0.6 are now required.
SecretStorage 3.2.0, 2020-11-07
===============================
* Added helper function ``check_service_availability`` for checking if the
Secret Service daemon is available without using it.
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`_].
.. _`#20`: https://github.com/mitya57/secretstorage/issues/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.
.. _Jeepney: https://pypi.org/project/jeepney/
SecretStorage 2.3.1, 2016-08-27
===============================
* Update requires line in setup.py for cryptography port.
* Documentation is now hosted on ReadTheDocs_.
.. _ReadTheDocs: https://secretstorage.readthedocs.io/en/latest/
SecretStorage 2.3.0, 2016-08-17
===============================
* Ported from PyCrypto to cryptography module [`#6`_].
* ``Item.get_secret()`` now returns a bytes object rather than a bytearray.
.. _`#6`: https://github.com/mitya57/secretstorage/issues/6
SecretStorage 2.2.1, 2016-06-27
===============================
* Made dbus-python dependency optional because compiling it from sources
is not an option for many users. See issues #4 and #5 for details.
SecretStorage 2.2.0, 2016-06-18
===============================
* Deprecated compatibility functions are dropped.
* Installation from PyPI now pulls in dbus-python.
* Travis CI tests added.
* Other minor fixes, simplifications and improvements.
SecretStorage 2.1.4, 2016-01-10
===============================
* Catch AccessDenied errors in dbus_init() function.
* Documentation improvements.
SecretStorage 2.1.3, 2015-12-20
===============================
* Python 2.6 is no longer supported.
* Compatibility functions are now deprecated and will be removed in
the next major release.
* Other minor fixes, simplifications and improvements.
SecretStorage 2.1.2, 2015-06-30
===============================
* Add Item.unlock() method.
* Use setuptools when it is available.
* Documentation now uses Alabaster sphinx theme.
* Other documentation fixes and improvements.
SecretStorage 2.1.1, 2014-07-12
===============================
* Fixed a bug where common secret was incorrectly generated
sometimes (one time of 128).
* Other minor improvements.
SecretStorage 2.1, 2014-05-28
=============================
* Support running tests with GNOME Keyring when there is no
default collection.
* When D-Bus main loop is already set, do not set it again.
* Make dhcrypto module work with Python < 2.7.4.
SecretStorage 2.0, 2014-01-27
=============================
* Add support for encrypted sessions and use them by default.
* Get rid of Introspect() calls to make D-Bus messaging faster.
SecretStorage 1.1, 2013-11-15
=============================
* Ported to PyQt5.
* Added ``Item.get_created()`` method.
* Improvements to error handling.
SecretStorage 1.0, 2013-05-08
=============================
* Renamed ``exec_prompt_async_*`` functions to just ``exec_prompt_*``
(old aliases kept for compatibility purposes).
* Added two helper functions:
- ``get_any_collection()`` for getting default or session
collection;
- ``get_default_collection()`` for getting or creating the
default collection.
* Fix creation of items with empty attributes dict.
* Make ``SecretServiceNotAvailableException`` a subclass of
``SecretStorageException``.
* Various documentation improvements.
SecretStorage 0.9, 2013-03-05
=============================
* Added support for content types in secrets.
* Added ``Item.get_modified()`` method.
* Added ``get_all_collections()`` and ``get_collection_by_alias()``
functions.
* Added ``search_items()`` function for global search.
* Made synchronous version of ``Collection.unlock()`` return a
boolean representing whether the operation was dismissed.
* Fixed wrong parsing of Secret Service result in
``Collection.get_modified()``.
* Various test suite and documentation improvements.
SecretStorage 0.8, 2013-01-05
=============================
* Added ``Collection`` and ``Item`` classes.
* Added support for creating and deleting collections.
* Added synchronous loop unlocking support.
* Added support for PyQt applications.
* Added test suite.
* Convert D-Bus exceptions to SecretStorage exceptions.
* Rewrote the documentation in Sphinx.
* Miscellaneous internal improvements.
SecretStorage 0.2, 2012-06-22
=============================
* Added ``get_item_attributes`` function.
* Renamed ``get_item_ids`` to ``get_items_ids``.
* Renamed ``get_item_by_id`` to ``get_item``.
* Renamed ``delete_item_by_id`` to ``delete_item``.
* Made ``create_item`` return id of the created item.
* Added ``secretstorage.exceptions`` module.
* Made all functions throw exceptions from that module.
* Updated the documentation.
* Added ``delete_test_items.py`` script that deletes all test items.
SecretStorage 0.1, 2012-06-02
=============================
* Initial release.
|