Skip to content

Commit

Permalink
PonyORM release 0.7.12 (2020-02-04)
Browse files Browse the repository at this point in the history
# 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
  • Loading branch information
kozlovsky committed Feb 4, 2020
2 parents 7f9616f + 836224a commit 9dde398
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
# 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


# PonyORM release 0.7.11 (2019-10-23)

## Features
Expand Down
2 changes: 1 addition & 1 deletion pony/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import os, sys
from os.path import dirname

__version__ = '0.7.12-dev'
__version__ = '0.7.12'

def detect_mode():
try: import google.appengine
Expand Down

0 comments on commit 9dde398

Please sign in to comment.