Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pull] master from etianen:master #7

Merged
merged 2 commits into from
Oct 11, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 11 additions & 10 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -107,15 +107,16 @@ django-reversion changelog
- Packaging improvements (@michael-k).
- Removing deprecated usages of `force_text` (@Tenzer).
- Documentation fixes (@chicheng).
- Drops Python 2.7 compatibility.


3.0.5 - 2019-02-12
3.0.5 - 2019-12-02
------------------

- Improved performance of `get_deleted` for large datasets (@jeremy-engel).
- Django 3.0 compatibility (@claudep).
- Drops Django < 1.11 compatibility (@claudep).
- Fixed errors in manageement commands when `django.contrib.admin` is not in `INSTALLED_APPS` (@irtimir).
- Fixed errors in management commands when `django.contrib.admin` is not in `INSTALLED_APPS` (@irtimir).


3.0.4 - 2019-05-22
Expand Down Expand Up @@ -160,7 +161,7 @@ django-reversion changelog
------------------

- **Breaking:** ``Revision.comment`` now contains the raw JSON change message generated by django admin, rather than
a string. Accesing ``Revision.comment`` directly is no longer recommended. Instead, use ``Revision.get_comment()``.
a string. Accessing ``Revision.comment`` directly is no longer recommended. Instead, use ``Revision.get_comment()``.
(@RamezIssac).
- **BREAKING:** django-reversion now uses ``_base_manager`` to calculate deleted models, not ``_default_manager``. This
change will only affect models that perform default filtering in their ``_default_manager`` (@ivissani).
Expand Down Expand Up @@ -517,7 +518,7 @@ Models

.. code:: python

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

# Use the admin class directly.
Expand All @@ -544,7 +545,7 @@ Models

.. code:: python

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

# Use low-level API methods from the revisions namespace.
Expand All @@ -569,7 +570,7 @@ Models

.. code:: python

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

# Use reversion signals directly.
Expand Down Expand Up @@ -698,7 +699,7 @@ Models
----------------

* Django 1.5 compatibility.
* Experimantal Python 3.3 compatibility!
* Experimental Python 3.3 compatibility!


1.6.6 - 12/02/2013
Expand Down Expand Up @@ -738,7 +739,7 @@ Models
------------------

* Swedish translation.
* Fixing formating for PyPi readme and license.
* Fixing formatting for PyPi readme and license.
* Minor features and bugfixes.


Expand Down Expand Up @@ -802,8 +803,8 @@ Models
* Added Polish translation.
* Added French translation.
* Improved resilience of unit tests.
* Improved scaleability of Version.object.get_deleted() method.
* Improved scaleability of createinitialrevisions command.
* Improved scalability of Version.object.get_deleted() method.
* Improved scalability of createinitialrevisions command.
* Removed post_syncdb hook.
* Added new createinitialrevisions management command.
* Fixed DoesNotExistError with OneToOneFields and follow.
Expand Down
Loading