Skip to content

Commit 51f55ab

Browse files
Fix styling and update changelog.
1 parent a75b6b4 commit 51f55ab

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212
* Bugfix - Regression error on joins with same attribute name (#857) PR #878
1313
* Bugfix - Error when `fetch1('KEY')` when `dj.config['fetch_format']='frame'` set (#876) PR #880, #878
1414
* Bugfix - Error when cascading deletes in tables with many, complex keys (#883, #886) PR #839
15+
* Add deprecation warning for `_update`. PR #889
16+
* Add `purge_query_cache` utility. PR #889
17+
* Add tests for query caching and permissive join and restriction. PR #889
1518
* Drop support for Python 3.5
1619

1720
### 0.12.9 -- Mar 12, 2021

datajoint/condition.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,8 @@ def prep_value(k, v):
8484
try:
8585
v = uuid.UUID(v)
8686
except (AttributeError, ValueError):
87-
raise DataJointError('Badly formed UUID {v} in restriction by `{k}`'.format(k=k, v=v))
87+
raise DataJointError(
88+
'Badly formed UUID {v} in restriction by `{k}`'.format(k=k, v=v))
8889
return "X'%s'" % v.bytes.hex()
8990
if isinstance(v, (datetime.date, datetime.datetime, datetime.time, decimal.Decimal)):
9091
return '"%s"' % v

docs-parts/intro/Releases_lang1.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111
* Bugfix - Regression error on joins with same attribute name (#857) PR #878
1212
* Bugfix - Error when `fetch1('KEY')` when `dj.config['fetch_format']='frame'` set (#876) PR #880, #878
1313
* Bugfix - Error when cascading deletes in tables with many, complex keys (#883, #886) PR #839
14+
* Add deprecation warning for `_update`. PR #889
15+
* Add `purge_query_cache` utility. PR #889
16+
* Add tests for query caching and permissive join and restriction. PR #889
1417
* Drop support for Python 3.5
1518

1619
0.12.9 -- Mar 12, 2021

0 commit comments

Comments
 (0)