Release Notes¶
2.1.0 (2025-11-30)¶
Changes¶
- Drop Python 3.9 support, add Python 3.14 support, add Postgres 18 support, add Django 6.0 support by @wesleykendall in #24
2.0.0 (2025-05-24)¶
Api-Break¶
- Support deferrable and read-only transactions by @max-muoto in #21.
- Breaking changes:
execute_set_isolation_levelwas removed in favor ofexecute_set_transaction_modes.- All arguments that aren't present in the Django implementation of
transaction.atomicare now keyword-only.
1.5.3 (2025-05-18)¶
Changes¶
- Improve and correct typing by @max-muoto in #19.
1.5.2 (2025-01-10)¶
Fixes¶
- Lazily load Django settings when using
pgtransactiondrop-in decorator by @muscovite in #17.
1.5.1 (2024-12-15)¶
Changes¶
- Changed project ownership to
AmbitionEngby @wesleykendall in #16.
1.5.0 (2024-11-01)¶
Changes¶
- Added Python 3.13 support, dropped Python 3.8. Added Postgres17 support by @wesleykendall in #15.
1.4.0 (2024-08-24)¶
Changes¶
- Django 5.1 compatibilty, and Dropped Django 3.2 / Postgres 12 support by @wesleykendall in #14.
1.3.2 (2024-04-23)¶
Trivial¶
- Updated with latest Python template. [Wesley Kendall, c7a010c]
1.3.1 (2024-04-06)¶
Trivial¶
- Fix ReadTheDocs builds. [Wesley Kendall, 7d60e2a]
1.3.0 (2023-11-26)¶
Feature¶
-
Django 5.0 compatibility [Wesley Kendall, 129331b]
Support and test against Django 5 with psycopg2 and psycopg3.
1.2.1 (2023-10-09)¶
Trivial¶
- Added Opus10 branding to docs [Wesley Kendall, 4a0b78c]
1.2.0 (2023-10-08)¶
Feature¶
-
Add Python 3.12 support and use Mkdocs for documentation [Wesley Kendall, ed0d18e]
Python 3.12 and Postgres 16 are supported now, along with having revamped docs using Mkdocs and the Material theme.
Python 3.7 support was dropped.
1.1.0 (2023-06-09)¶
Feature¶
-
Added Python 3.11, Django 4.2, and Psycopg 3 support [Wesley Kendall, 6c032bb]
Adds Python 3.11, Django 4.2, and Psycopg 3 support along with tests for multiple Postgres versions. Drops support for Django 2.2.
1.0.0 (2022-09-20)¶
Api-Break¶
-
Initial release of django-pgtransaction [Paul Gilmartin, 09bca27]
django-pgtransaction offers a drop-in replacement for the default
django.db.transactionmodule which, when used on top of a PostgreSQL database, extends the functionality of that module with Postgres-specific features.V1 of django-pgtransaction provides the
atomicdecorator/context manager, which provides the following additional arguments to Django'satomic:isolation_level: For setting the isolation level of the transaction.retry: For retrying when deadlock or serialization errors happen.