Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## Release notes

### 0.12.9 -- Mar 12, 2021
* Fix bug with fetch1 with `dj.config['fetch_format']="frame"`. (#876) PR #880

### 0.12.8 -- Jan 12, 2021
* table.children, .parents, .descendents, and ancestors can return queryable objects. PR #833
* Load dependencies before querying dependencies. (#179) PR #833
Expand Down
2 changes: 1 addition & 1 deletion datajoint/fetch.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ def __call__(self, *attrs, squeeze=False, download_path='.'):
for name in heading.names)
else: # fetch some attributes, return as tuple
attributes = [a for a in attrs if not is_key(a)]
result = self._expression.proj(*attributes).fetch(squeeze=squeeze, download_path=download_path)
result = self._expression.proj(*attributes).fetch(squeeze=squeeze, download_path=download_path, format="array")
if len(result) != 1:
raise DataJointError('fetch1 should only return one tuple. %d tuples were found' % len(result))
return_values = tuple(
Expand Down
2 changes: 1 addition & 1 deletion datajoint/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = "0.12.8"
__version__ = "0.12.9"

assert len(__version__) <= 10 # The log table limits version to the 10 characters
4 changes: 4 additions & 0 deletions docs-parts/intro/Releases_lang1.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
0.12.9 -- Mar 12, 2021
----------------------
* Fix bug with fetch1 with `dj.config['fetch_format']="frame"`. Issue #876 (PR #880)

0.12.8 -- Jan 12, 2021
---------------------
* table.children, .parents, .descendents, and ancestors can return queryable objects. PR #833
Expand Down