diff options
| author | Tim Graham <timograham@gmail.com> | 2017-09-06 10:26:45 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2017-09-27 11:00:04 -0400 |
| commit | 1d8cfa36089f2d1295abad03a99fc3c259bde6b5 (patch) | |
| tree | 458e608105acb5fe7e9db7e2c01c833df1673795 /docs | |
| parent | ea7ca5db302367d84f92a4cf0ca03ec62886a7ca (diff) | |
Fixed #28626 -- Dropped support for PostgreSQL 9.3.
Thanks Simon Charette for the introspection changes.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/ref/contrib/gis/install/index.txt | 2 | ||||
| -rw-r--r-- | docs/ref/contrib/postgres/fields.txt | 2 | ||||
| -rw-r--r-- | docs/ref/contrib/postgres/functions.txt | 2 | ||||
| -rw-r--r-- | docs/ref/databases.txt | 2 | ||||
| -rw-r--r-- | docs/releases/2.1.txt | 6 |
5 files changed, 8 insertions, 6 deletions
diff --git a/docs/ref/contrib/gis/install/index.txt b/docs/ref/contrib/gis/install/index.txt index c547c9b268..9872f25602 100644 --- a/docs/ref/contrib/gis/install/index.txt +++ b/docs/ref/contrib/gis/install/index.txt @@ -58,7 +58,7 @@ supported versions, and any notes for each of the supported database backends: ================== ============================== ================== ========================================= Database Library Requirements Supported Versions Notes ================== ============================== ================== ========================================= -PostgreSQL GEOS, GDAL, PROJ.4, PostGIS 9.3+ Requires PostGIS. +PostgreSQL GEOS, GDAL, PROJ.4, PostGIS 9.4+ Requires PostGIS. MySQL GEOS, GDAL 5.6+ Not OGC-compliant; :ref:`limited functionality <mysql-spatial-limitations>`. Oracle GEOS, GDAL 12.1+ XE not supported. SQLite GEOS, GDAL, PROJ.4, SpatiaLite 3.6.+ Requires SpatiaLite 4.0+ diff --git a/docs/ref/contrib/postgres/fields.txt b/docs/ref/contrib/postgres/fields.txt index 0a39f000f1..38ca9200cd 100644 --- a/docs/ref/contrib/postgres/fields.txt +++ b/docs/ref/contrib/postgres/fields.txt @@ -509,8 +509,6 @@ using in conjunction with lookups on of the JSON which allows indexing. The trade-off is a small additional cost on writing to the ``jsonb`` field. ``JSONField`` uses ``jsonb``. - **As a result, this field requires PostgreSQL ≥ 9.4**. - Querying ``JSONField`` ---------------------- diff --git a/docs/ref/contrib/postgres/functions.txt b/docs/ref/contrib/postgres/functions.txt index 171272c518..8d3df51864 100644 --- a/docs/ref/contrib/postgres/functions.txt +++ b/docs/ref/contrib/postgres/functions.txt @@ -16,8 +16,6 @@ All of these functions are available from the Returns a version 4 UUID. -Requires PostgreSQL 9.4 or greater. - The `pgcrypto extension`_ must be installed. You can use the :class:`~django.contrib.postgres.operations.CryptoExtension` migration operation to install it. diff --git a/docs/ref/databases.txt b/docs/ref/databases.txt index e7d474a81d..1005780f19 100644 --- a/docs/ref/databases.txt +++ b/docs/ref/databases.txt @@ -92,7 +92,7 @@ below for information on how to set up your database correctly. PostgreSQL notes ================ -Django supports PostgreSQL 9.3 and higher. `psycopg2`_ 2.5.4 or higher is +Django supports PostgreSQL 9.4 and higher. `psycopg2`_ 2.5.4 or higher is required, though the latest release is recommended. .. _psycopg2: http://initd.org/psycopg/ diff --git a/docs/releases/2.1.txt b/docs/releases/2.1.txt index ead4d2fde3..fa4b407d9a 100644 --- a/docs/releases/2.1.txt +++ b/docs/releases/2.1.txt @@ -206,6 +206,12 @@ Dropped support for MySQL 5.5 The end of upstream support for MySQL 5.5 is December 2018. Django 2.1 supports MySQL 5.6 and higher. +Dropped support for PostgreSQL 9.3 +---------------------------------- + +The end of upstream support for PostgreSQL 9.3 is September 2018. Django 2.1 +supports PostgreSQL 9.4 and higher. + Miscellaneous ------------- |
