belbio / bel_resources

BEL resources and tools for namespaces, annotations, orthologs, taxonomy, etc and tool
https://bel-resources.rtfd.io
Apache License 2.0
2 stars 0 forks source link

Bump python-arango from 3.12.1 to 4.1.0 #76

Closed dependabot-preview[bot] closed 6 years ago

dependabot-preview[bot] commented 6 years ago

Bumps python-arango from 3.12.1 to 4.1.0.

Release notes *Sourced from [python-arango's releases](https://github.com/joowani/python-arango/releases).* > ## 4.1.0 > * Added new parameters `shard_like`, `sync_replication` and `enforce_replication_factor` to method `Database.create_collection` (see [here](http://python-driver-for-arangodb.readthedocs.io/en/latest/specs.html#arango.database.AsyncDatabase.create_collection) for details). > * Updated Travis CI script to halt on sphinx documentation build failures. > > ## 4.0.1 > * Fix import bug in setup.py and docs/conf.py > * Add `prune tests` in MANIFEST.in > > > ## 4.0.0 > ## New Features > > * Manage documents using IDs (more examples [here](http://python-driver-for-arangodb.readthedocs.io/en/master/document.html)): > > ```python > col.get('foo/bar') # Get by document ID > col.get('bar') # Get by document key > col.get({'_id': 'foo/bar'}) # Get by document body with ID > col.get({'_key': 'bar'}) # Get by document body with key > col.update({'_id': 'foo/bar', 'val': 1}) # Update by document ID > col.update({'_key': 'bar', 'val': 1}) # Update by document key > col.replace({'_id': 'foo/bar', 'val': 2}) # Replace by document ID > col.replace({'_key': 'bar', 'val': 2}) # Replace by document key > col.delete('foo/bar') # Delete by document ID > col.delete('bar') # Delete by document key > col.delete({'_id': 'foo/bar'}) # Delete by document body with ID > col.delete({'_key': 'bar'}) # Delete by document body with key > ``` > > * Perform basic document operations directly from `Database` (more examples [here](http://python-driver-for-arangodb.readthedocs.io/en/master/document.html)): > > ```python > db.insert_document('students', {'_key': 'dave'}) > db.has_document('students/dave') > db.document('students/dave') > db.update_document({'_id': 'students/dave', 'val': 1}) > db.replace_document({'_id': 'students/dave', 'val': 2}) > db.delete_document('students/dave') > ``` > > * Manage vertices and edges directly from `Graph` (more examples [here](http://python-driver-for-arangodb.readthedocs.io/en/master/graph.html)): > > ```python > graph.insert_vertex('profs', {'_key': 'jon', 'name': 'Jon'}) > graph.update_vertex({'_id': 'profs/jon', 'age': 35}) > graph.replace_vertex({'_id': 'profs/jon', 'name': 'Jon', 'age':36}) > graph.has_vertex('profs/jon') > graph.vertex('profs/jon') > graph.delete_vertex('profs/jon') > graph.insert_edge('teach', {'_id': 'teach/1', '_from': 'profs/jon', '_to': 'lectures/CS101'}) > ... (truncated)
Commits - [`0827a3e`](https://github.com/joowani/python-arango/commit/0827a3e7f13ef083250734f8720a4ec0f69ca74d) Update .gitignore and add parameters to Database.create_collection - [`7ff6f2d`](https://github.com/joowani/python-arango/commit/7ff6f2d6cdcdcadbad717de8385d60f1ea69685c) Update README and documentation - [`1acb380`](https://github.com/joowani/python-arango/commit/1acb380fbe00df433cf0be8ead1553aadfdc4a66) Update contributing.rst and test sphinx build in Travis CI builds - [`52ec168`](https://github.com/joowani/python-arango/commit/52ec168a7630a9597ed54a77d6c8339f40061af2) Update setup.py, MANIFEST.in and docs/conf.py - [`d04f3db`](https://github.com/joowani/python-arango/commit/d04f3dbb20eb50cf621a33878eb34db1b30d7970) Revamp the library for 4.0.0. - See full diff in [compare view](https://github.com/joowani/python-arango/compare/3.12.1...4.1.0)


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use (this|these) label[s]` will set the current labels as the default for future PRs for this repo and language - `@dependabot use (this|these) reviewer[s]` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use (this|these) assignee[s]` will set the current assignees as the default for future PRs for this repo and language Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Automerge options (never/patch/minor, and dev/runtime dependencies) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) Finally, you can contact us by mentioning @dependabot.
CLAassistant commented 6 years ago

CLA assistant check
Thank you for your submission, we really appreciate it. Like many open source projects, we ask that you sign our Contributor License Agreement before we can accept your contribution.
You have signed the CLA already but the status is still pending? Let us recheck it.