Hello!
I was wondering if Django supports Postgres 17 already? Or is it on the roadmap?
Thanks!
Hello!
I was wondering if Django supports Postgres 17 already? Or is it on the roadmap?
Thanks!
Postgres 17 was released on 2024-09-26 and no versions of Django has been released since so AFAIK there is no officially tested support for this version in any released Django version.
With all that said new Postgres releases rarely break stable Django releases so the best way to tell is to run the full test suite against it.
FTR the full test suite is passing for 5ed72087c450af1a5da138bdfa674a069cf3f09c
against Postgres 17. That doesn’t mean it’s fully supported but it’s usually a good sign.
Since recently, and because of a bug in PG 16+ with server side bindings, we have added a GitHub Action to run once a day the full test suite, in Linux, for newer Postgres:
(at the time of that PR, only 17rc1 was available but I will make a PR to update that to 17)