Releases: arangodb/python-arango
Releases · arangodb/python-arango
3.11.0
- Added new APIs for Pregel. Please refer to the documentation for more details.
- Updated documentation on thread-safety.
3.10.1
3.10.0
3.9.0
3.8.0
-
Duplicated several methods in
arango.client.ArangoClient
toarango.database.Database
to allow non-root users access to the API operations (only root user could call them before). More information on the duplicated methods and their usage can be found in the following pages: -
Added new method
arango.client.ArangoClient.asynchronous
to replace the soon-to-be-deprecated methodarango.client.ArangoClient.async
(due to name conflict with Python 3.7+ keywordasync
). The changes are reflected in http://python-driver-for-arangodb.readthedocs.io/en/master/async.html.
3.7.0
3.6.0
3.5.0
- Added new method
Database.get_document
to allow direct retrieval of documents via their IDs. - Updated method
Collection.all
to use ArangoDB's built-inall
simple query instead of the export API (this changes the method's signature and therefore is a backwards compatibility breaking change). - Added new method
Collection.export
, which is equivalent to the oldCollection.all
method.