Skip to content

Latest commit

 

History

History
55 lines (49 loc) · 1.59 KB

CHANGELOG.md

File metadata and controls

55 lines (49 loc) · 1.59 KB

Changelog

All notable changes to this project will be documented in this file.

2.0.5 - 2022-10-03

Fixed

  • Disable psycopg2 parsing JSONField value in Django 3.1+ (#29)

2.0.3 - 2022-07-17

Fixed

  • Fixed timezone aware (#27)

2.0.1 - 2021-02-28

Added

  • Support django 2.2, 3.0 and 3.1
  • Support python 3.6, 3.7, 3.8 and 3.9

Removed

  • Remove support django 1.8, 1.9, 2.0, 2.1
  • Remove support python 3.4 and 3.5

1.0.1 - 2020-03-15

Fixed

1.0.0 - 2019-09-09

Added

Changed

  • Rewrite internal logic of library, thanks mozartilize

Removed

  • Remove support python 3.3
  • Remove support django 1.7

Fixed

  • Add missed backend django_postgrespool2.postgis

0.2.0 - 2018-02-13

Added

  • 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.

Changed

  • Update to Django 2.0
  • Fix error with pre_ping option
  • Fix error with version

0.1.0 - 2017-09-14

  • Initial release