Django-reversion-pynamodb

Latest version: v0.1.6

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

Scan your dependencies

Page 5 of 10

1.10.1

-------------------

* Fixing some deprecation warnings (ticosax).
* Minor tweaks (claudep, etianen).

1.10

-----------------

* **Breaking:** Updated the location of ``VersionAdmin``.

Prior to this change, you could access the ``VersionAdmin`` class using the following import:

.. code:: python

Old-style import for accessing the admin class.
import reversion

Access admin class from the reversion namespace.
class YourModelAdmin(reversion.VersionAdmin):

pass

In order to support Django 1.9, the admin class has been moved to the following
import:

.. code:: python

New-style import for accesssing admin class.
from reversion.admin import VersionAdmin

Use the admin class directly.
class YourModelAdmin(VersionAdmin):

pass

* **Breaking:** Updated the location of low-level API methods.
Prior to this change, you could access the low-level API using the following import:

.. code:: python

Old-style import for accessing the low-level API.
import reversion

Use low-level API methods from the reversion namespace.
reversion.register
class YourModel(models.Model):

pass

In order to support Django 1.9, the low-level API
methods have been moved to the following import:

.. code:: python

New-style import for accesssing the low-level API.
from reversion import revisions as reversion

Use low-level API methods from the revisions namespace.
reversion.register
class YourModel(models.Model):

pass

* **Breaking:** Updated the location of http://django-reversion.readthedocs.org/en/latest/signals.html.
Prior to this change, you could access the reversion signals using the following import:

.. code:: python

Old-style import for accessing the reversion signals
import reversion

Use signals from the reversion namespace.
reversion.post_revision_commit.connect(...)

In order to support Django 1.9, the reversion signals have been moved to the following
import:

.. code:: python

New-style import for accesssing the reversion signals.
from reversion.signals import pre_revision_commit, post_revision_commit

Use reversion signals directly.
post_revision_commit.connect(...)

* Django 1.9 compatibility (etianen).
* Added spanish (argentina) translation (gonzalobustos).
* Minor bugfixes and tweaks (Blitzstok, IanLee1521, lutoma, siamalekpour, etianen).

1.9.3

------------------

* Fixing regression with admin redirects following save action (etianen).

1.9.2

------------------

* Fixing regression with "delete", "save as new" and "save and continue" button being shown in recover and revision admin views (etianen).
* Fixing regression where VersionAdmin.ignore_duplicate_revisions was ignored (etianen).

1.9.1

------------------

* Fixing packaging error that rendered the 1.9.0 release unusable. No way to cover up the mistake, so here's a brand new bugfix release! (etianen).

1.9.0

------------------

* Using database transactions do render consistent views of past revisions in database admin, fixing a lot of lingering minor issues (etianen).
* Correct handling of readonly fields in admin (etianen).
* Updates to Czech translation (cuchac).
* Arabic translation (RamezIssac).
* Fixing deleterevisions to work with Python2 (jmurty).
* Fixing edge-cases where an object does not have a PK (johnfraney).
* Tweaks, code cleanups and documentation fixes (claudep, johnfraney, podloucky-init, Drew Hubl, JanMalte, jmurty, etianen).

Page 5 of 10

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.