All notable changes to this project will be documented in this file.
- Disable psycopg2 parsing JSONField value in Django 3.1+ (#29)
- Fixed timezone aware (#27)
- Support django 2.2, 3.0 and 3.1
- Support python 3.6, 3.7, 3.8 and 3.9
- Remove support django 1.8, 1.9, 2.0, 2.1
- Remove support python 3.4 and 3.5
- Fixed installation on python 3.7, thanks chickahoona
- New setting
DATABASE_POOL_CLASS
, thanks mozartilize
- Rewrite internal logic of library, thanks mozartilize
- Remove support python 3.3
- Remove support django 1.7
- Add missed backend
django_postgrespool2.postgis
- Now you can specify backend for engine. Example:
DATABASES = {
'default': {
'ENGINE': 'django_postgrespool2.psycopg2',
'HOST': 'localhost',
'PORT': '5432',
'USER': 'test',
'PASSWORD': 'test',
}
}
Available backends: django_postgrespool2.psycopg2, django_postgrespool2.postgis. By default it using psycopg2 as backend engine.
- Update to Django 2.0
- Fix error with pre_ping option
- Fix error with version
- Initial release