Django-pgtrigger

Latest version: v4.13.3

Safety actively analyzes 723625 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 5 of 9

4.3.0

Feature

- Support for partitioned tables [Wes Kendall, 863b8cb]

Installation commands and all core trigger functionality works with partitioned tables.

Users will need to run
``python manage.py pgtrigger install`` to upgrade existing trigger installations,
otherwise they will appear as outdated when running ``python manage.py pgtrigger ls``.

Although outdated triggers will still run successfully for non-partitioned tables, this
backwards compatibility will be removed in version 5.

4.2.1

Trivial

- Do schema editor patching in ``App.ready()`` instead of module load [Wes Kendall, cce99ce]

4.2.0

Bug

- Ensure interoperability with other Postgres backends [Wes Kendall, 1c4f480]

``django-pgtrigger`` trigger migrations are interoperable with Postgis and
other Postgres-flavored database backends.

4.1.0

Bug

- Allow altering columns from trigger conditions [Wes Kendall, 1178457]

Previously if one changed the column type of a field used in a trigger condition,
installation would fail because Postgres doesn't allow this.

The schema editor was patched to allow for this behavior, dropping and recreating
triggers when column types are altered.

4.0.1

Trivial

- Fixed minor issue in settings preventing docs from being built [Wes Kendall, 5ad18f8]

4.0.0

Api-Break

- Multi-database and registry behavior changed [Wes Kendall, 0663807]

There were four key additions around multi-datbase and multi-schema
support:

1. When using a multi-datbase environment, ``django-pgtrigger``
now uses ``allow_migrate`` of the router rather than ``db_for_write``
to determine if a trigger should be installed for a model.

2. Management commands were changed to operate on one database at a time
to be consistent with Django management commands. Install, uninstall,
prune, disable, enable, and ls all take an optional ``--database``
argument.

3. ``pgtrigger.ignore``, ``pgtrigger.constraints``, and ``pgtrigger.schema``
were all updated to take a ``databases`` argument, defaulting to
working on every postgres database when used for dynamic runtime behavior.

4. The Postgres function used by ``pgtrigger.ignore`` is always installed
in the public schema by default. It is referenced using its fully-qualified
path. The schema can be changed with ``settings.PGTRIGGER_SCHEMA``. Setting
it to ``None`` will use the schema in the search path. Because of this
change, the SQL for installed triggers changes, which causes triggers to
appear as outdated when listing them. This can be fixed by running
``manage.py pgtrigger install`` to re-install triggers.

Along with this, there were a few other breaking changes to the API:

1. ``pgtrigger.get`` was renamed to ``pgtrigger.registered``.
2. ``manage.py pgtrigger ls`` shows the trigger status followed by the URI in
each line of output.

type: api-break

Bug

- Reference ``UpdateSearchVector`` trigger columns correctly [Wes Kendall, 7d40894]

Columns configured in the ``UpdateSearchVector`` trigger were previously
referenced in SQL by their model field name and not their column name.

Feature

- Added multi-schema support [Wes Kendall, 98342f2]

``django-pgtrigger`` didn't handle multiple schemas well, causing some issues for
legacy installation commands.

Multiple schema support is a first-class citizen. Depending on the database setup, you
can now take advantage of the ``--schema`` options for management commands to
dynamically set the schema.

Docs were added that overview multi-schema support.

Trivial

- Added docs for using triggers in abstract models [Wes Kendall, cd215ac]
- Refactored project structure [Wes Kendall, 4d53eef]

Page 5 of 9

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.