v1.9.2
In version 1.9.2, we improved Views' usability by exposing set_entity_types()
function to change the entity types that will show up in a View:
import synapseclient
from synapseclient.table import EntityViewType
syn = synapseclient.login()
view = syn.get("syn12345")
view.set_entity_types([EntityViewType.FILE, EntityViewType.FOLDER])
view = syn.store(view)
Features
- [SYNPY-919] - Expose a way to update entity types in a view using EntityViewType
Bug Fixes
- [SYNPY-855] - Single thread uploading fails in Lambda python3.6 environment
- [SYNPY-910] - Store Wiki shows deprecation warning
- [SYNPY-920] - Project View turned into File View after using syndccutils template
Tasks
- [SYNPY-790] - Pin to a fixed version of the request package
- [SYNPY-866] - Update Synapse logo in Python docs :)