Skip to content

Releases: Opus10/django-pghistory

3.4.3

14 Sep 05:02
6e8840c
Compare
Choose a tag to compare

Fixes

3.4.2

11 Sep 01:09
8a70865
Compare
Choose a tag to compare

Fixes

  • Fix using @pghistory.track() on models that have concrete inheritance by @wesleykendall in #164.

3.4.1

07 Sep 01:32
27d8d4a
Compare
Choose a tag to compare

Fixes

  • The related_query_name setting for tracked foreign keys had the default value mistakenly changed in v3.4.0. Fixed by @wesleykendall in #163.

3.4.0

02 Sep 21:02
0429ca5
Compare
Choose a tag to compare

Features

  • Make context middleware extensible by @wesleykendall in #141.

    Inherit pghistory.context.HistoryMiddleware and override get_context to add additional context data for every request.

  • Support offline documentation formats by @wesleykendall in #144.

    PDF versions of documentation are built via ReadTheDocs.

Fixes

  • Check that the execute result is not None before trying to access execute_result.nextset() by @wesleykendall in #156.
  • Ensure pghistory.create_event works when using denormalized context by @wesleykendall in #154.
  • More accurate type hints for the public interface by @wesleykendall in #143.
  • Fix minor docstring issue in pghistory.create_event_model by @wesleykendall in #148.

Documentation

3.3.0

27 Aug 15:02
fd164af
Compare
Choose a tag to compare

Features

  • PGHISTORY_INSTALL_CONTEXT_FUNC_ON_MIGRATE setting to configure installation of tracking function after migrations by @wesleykendall in #140.
  • PGHISTORY_CREATED_AT_FUNCTION setting to configure the function for determining the current time in history triggers by @lokhman in #137.
  • Add ASGI support by @pablogadhi in #127.

Fixes

  • Ensure BigAutoFields are properly mirrored in history models by @tobiasmcnulty in #134.

    Warning If you have event models for models with BigAutoField primary keys, you will see new migrations to convert pgh_obj_id to a bigint.

  • Support filtering event models by referenced proxy models by @lokhman in #135.

  • Ensure bytes representations of SQL are handled by @tobiasmcnulty in #136.

  • Fix setting default trackers with the PGHISTORY_DEFAULT_TRACKERS setting by @SupImDos in #133.

  • Don't install pghistory's context tracking function on non-postgres databases by @pmdevita in #132.

  • Ensure MiddlewareEvents doesn't filter out non-middleware events in the admin by @lokhman in #130.

  • Support custom primary keys for the aggregate Events proxy model by @lokhman in #128.

  • Fix type hints for pghistory.track by @SebastianDix in #118.

  • Support named arguments in SQL by @foobarna in #111.

Changes

  • Django 5.1 compatibility, dropped Django 3.2 / Postgres 12 support by @wesleykendall in #139.
  • Added section in FAQ for handling issues with concrete inheritance by @xaitec in #138.
  • Add reference to DjangoCon talk in the docs by @max-muoto in #114.