Skip to content

Commit 9dde398

Browse files
committed
PonyORM release 0.7.12 (2020-02-04)
# Features * CockroachDB support added * CI testing for SQLite, PostgreSQL & CockroachDB # Bugfixes * Fix translation of getting array items with negative indexes * Fix string getitem translation for slices and negative indexes * PostgreSQL DISTINCT bug fixed for queries with ORDER BY clause * Fix date difference syntax in PostgreSQL * Fix casting json to dobule in PostgreSQL * Fix count by several columns in PostgreSQL * Fix PostgreSQL MIN and MAX expressions on boolean columns * Fix determination of interactive mode in PyCharm * Fix column definition when `sql_default` is specified: DEFAULT should be before NOT NULL * Relax checks on updating in-memory cache indexes (don't throw CacheIndexError on valid cases) * Fix deduplication logic for attribute values
2 parents 7f9616f + 836224a commit 9dde398

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
# PonyORM release 0.7.12 (2020-02-04)
2+
3+
## Features
4+
5+
* CockroachDB support added
6+
* CI testing for SQLite, PostgreSQL & CockroachDB
7+
8+
## Bugfixes
9+
10+
* Fix translation of getting array items with negative indexes
11+
* Fix string getitem translation for slices and negative indexes
12+
* PostgreSQL DISTINCT bug fixed for queries with ORDER BY clause
13+
* Fix date difference syntax in PostgreSQL
14+
* Fix casting json to dobule in PostgreSQL
15+
* Fix count by several columns in PostgreSQL
16+
* Fix PostgreSQL MIN and MAX expressions on boolean columns
17+
* Fix determination of interactive mode in PyCharm
18+
* Fix column definition when `sql_default` is specified: DEFAULT should be before NOT NULL
19+
* Relax checks on updating in-memory cache indexes (don't throw CacheIndexError on valid cases)
20+
* Fix deduplication logic for attribute values
21+
22+
123
# PonyORM release 0.7.11 (2019-10-23)
224

325
## Features

pony/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import os, sys
44
from os.path import dirname
55

6-
__version__ = '0.7.12-dev'
6+
__version__ = '0.7.12'
77

88
def detect_mode():
99
try: import google.appengine

0 commit comments

Comments
 (0)