Changelog
### 1.0.0
```
~~~~~~~~~~~~~~~~~~
* **Backwards incompatible:** Remove support for Python 2.
* Added ``has_changed()`` method to ``taggit.forms.TagField``.
* Added multi-column unique constraint to model ``TaggedItem`` on fields
``content_type``, ``object_id``, and ``tag``. Databases that contain
duplicates will need to add a data migration to resolve these duplicates.
* Fixed ``TaggableManager.most_common()`` to always evaluate lazily. Allows
placing a ``.most_common()`` query at the top level of a module.
* Fixed setting the ``related_name`` on a tags manager that exists on a model
named ``Name``.
```
### 0.24.0
```
~~~~~~~~~~~~~~~~~~~
* The project has moved to `Jazzband <https://jazzband.co/>`_. This is the
first release under the new organization. The new repository URL is
`<https://github.com/jazzband/django-taggit>`_.
* Added support for Django 2.2.
* Fixed a race condition in ``TaggableManager``.
* Removed method ``ItemBase.bulk_lookup_kwargs()``.
* Fixed view ``tagged_object_list`` to set ``queryset.model`` as
``ListView.model`` (was previously set as a ``ContentType`` instance).
* ``_TaggableManager`` and ``TaggableManager`` now always call the parent
class ``__init__``.
* Removed ``TaggableRel`` and replaced uses with ``ManyToManyRel``.
```
Links
- PyPI: https://pypi.org/project/django-taggit
- Changelog: https://pyup.io/changelogs/django-taggit/
- Repo: https://github.com/jazzband/django-taggit/tree/master
This PR updates django-taggit from 0.23.0 to 1.0.0.
Changelog
### 1.0.0 ``` ~~~~~~~~~~~~~~~~~~ * **Backwards incompatible:** Remove support for Python 2. * Added ``has_changed()`` method to ``taggit.forms.TagField``. * Added multi-column unique constraint to model ``TaggedItem`` on fields ``content_type``, ``object_id``, and ``tag``. Databases that contain duplicates will need to add a data migration to resolve these duplicates. * Fixed ``TaggableManager.most_common()`` to always evaluate lazily. Allows placing a ``.most_common()`` query at the top level of a module. * Fixed setting the ``related_name`` on a tags manager that exists on a model named ``Name``. ``` ### 0.24.0 ``` ~~~~~~~~~~~~~~~~~~~ * The project has moved to `Jazzband <https://jazzband.co/>`_. This is the first release under the new organization. The new repository URL is `<https://github.com/jazzband/django-taggit>`_. * Added support for Django 2.2. * Fixed a race condition in ``TaggableManager``. * Removed method ``ItemBase.bulk_lookup_kwargs()``. * Fixed view ``tagged_object_list`` to set ``queryset.model`` as ``ListView.model`` (was previously set as a ``ContentType`` instance). * ``_TaggableManager`` and ``TaggableManager`` now always call the parent class ``__init__``. * Removed ``TaggableRel`` and replaced uses with ``ManyToManyRel``. ```Links
- PyPI: https://pypi.org/project/django-taggit - Changelog: https://pyup.io/changelogs/django-taggit/ - Repo: https://github.com/jazzband/django-taggit/tree/master