From 0c91a419f8de791b3051d014db3c946396138969 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Fri, 27 Mar 2015 07:53:45 -0400 Subject: [PATCH] Dropped support for PostgreSQL 9.0. --- docs/ref/contrib/gis/install/index.txt | 2 +- docs/ref/databases.txt | 2 +- docs/releases/1.9.txt | 6 ++++++ 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/docs/ref/contrib/gis/install/index.txt b/docs/ref/contrib/gis/install/index.txt index 9b7feed694..5e783b8cdb 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, PROJ.4, PostGIS 9.0+ Requires PostGIS. +PostgreSQL GEOS, PROJ.4, PostGIS 9.1+ Requires PostGIS. MySQL GEOS 5.5+ Not OGC-compliant; :ref:`limited functionality `. Oracle GEOS 11.1+ XE not supported. SQLite GEOS, GDAL, PROJ.4, SpatiaLite 3.6.+ Requires SpatiaLite 2.3+, pysqlite2 2.5+ diff --git a/docs/ref/databases.txt b/docs/ref/databases.txt index abc7828fd5..ac25f00791 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.0 and higher. It requires the use of `psycopg2`_ +Django supports PostgreSQL 9.1 and higher. It requires the use of `psycopg2`_ 2.4.5 or higher (or 2.5+ if you want to use :mod:`django.contrib.postgres`). .. _psycopg2: http://initd.org/psycopg/ diff --git a/docs/releases/1.9.txt b/docs/releases/1.9.txt index d33028f134..4c27230d10 100644 --- a/docs/releases/1.9.txt +++ b/docs/releases/1.9.txt @@ -299,6 +299,12 @@ no longer include the scheme and domain part of the URLs. For example, replaced by ``self.assertRedirects(response, '/some-url/')`` (unless the redirection specifically contained an absolute URL, of course). +Dropped support for PostgreSQL 9.0 +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Upstream support for PostgreSQL 9.0 ended in September 2015. As a consequence, +Django 1.9 sets 9.1 as the minimum PostgreSQL version it officially supports. + Miscellaneous ~~~~~~~~~~~~~