django-avatar/CHANGELOG.rst

79 lines
3.6 KiB
ReStructuredText
Raw Normal View History

2015-04-27 04:15:41 +00:00
Changelog
=========
2022-08-12 05:01:23 +00:00
* 6.0.0 (August 12, 2022)
2022-08-10 17:39:34 +00:00
* Added Django 3.2, 4.0 and 4.1 support.
2022-08-10 17:50:34 +00:00
* Removed Django 1.9, 1.10, 1.11, 2.0, 2.1, 2.2 and 3.0 support.
2022-08-10 17:39:34 +00:00
* Added Python 3.9 and 3.10 support.
2022-08-10 17:47:20 +00:00
* Removed Python 2.7, 3.4 and 3.5 support.
2022-08-10 17:41:53 +00:00
* Made ``"PNG"`` the default value for ``AVATAR_THUMB_FORMAT`` (Set to ``"JPEG"`` to obtain previous behavior).
2022-08-10 17:40:51 +00:00
* Made ``False`` the default value for ``AVATAR_EXPOSE_USERNAMES`` (Set to ``True`` to obtain previous behavior).
2022-08-10 17:39:34 +00:00
* Don't leak usernames through image alt-tags when ``AVATAR_EXPOSE_USERNAMES`` is `False`.
2022-08-10 17:49:11 +00:00
* New setting ``AVATAR_THUMB_MODES``. Default is ``['RGB', 'RGBA']``.
* Use original image as thumbnail if thumbnail creation failed but image saving succeeds.
2022-08-10 17:47:20 +00:00
* Add farsi translation.
* Introduce black and flake8 linting
2022-08-10 17:39:34 +00:00
2020-01-04 17:46:54 +00:00
* 5.0.0 (January 4, 2019)
* Added Django 2.1, 2.2, and 3.0 support.
* Added Python 3.7 and 3.8 support.
* Removed Python 1.9 and 1.10 support.
2020-01-04 17:46:54 +00:00
* Fixed bug where avatars couldn't be deleted if file was already deleted.
2017-12-20 15:21:55 +00:00
* 4.1.0 (December 20, 2017)
2017-12-17 16:29:15 +00:00
* Added Django 2.0 support.
2017-12-17 16:31:15 +00:00
* Added ``avatar_deleted`` signal.
2017-12-17 16:29:15 +00:00
* Ensure thumbnails are the correct orientation.
2017-05-27 14:43:23 +00:00
* 4.0.0 (May 27, 2017)
* **Backwards incompatible:** Added ``AVATAR_PROVIDERS`` setting. Avatar providers are classes that return an avatar URL for a given user.
* Added ``verbose_name`` to ``Avatar`` model fields.
2017-05-27 14:55:23 +00:00
* Added the ability to override the ``alt`` attribute using the ``avatar`` template tag.
* Added Italian translations.
2017-05-27 14:43:23 +00:00
* Improved German translations.
* Fixed bug where ``rebuild_avatars`` would fail on Django 1.10+.
2017-05-27 14:47:16 +00:00
* Added Django 1.11 support.
* Added Python 3.6 support.
* Removed Django 1.7 and 1.8 support.
* Removed Python 3.3 support.
2017-05-27 14:43:23 +00:00
2016-09-10 16:05:36 +00:00
* 3.1.0 (September 10, 2016)
2016-09-03 15:14:31 +00:00
* Added the ability to override templates using ``AVATAR_ADD_TEMPLATE``, ``AVATAR_CHANGE_TEMPLATE``, and ``AVATAR_DELETE_TEMPLATE``.
* Added the ability to pass additional HTML attributes using the ``{% avatar %}`` template tag.
* Fixed unused verbosity setting in ``rebuild_avatars.py``.
2016-09-03 14:49:03 +00:00
* Added Django 1.10 support
2016-09-03 14:54:58 +00:00
* Removed Python 3.2 support
2016-09-03 14:49:03 +00:00
2016-02-26 16:45:45 +00:00
* 3.0.0 (February 26, 2016):
2016-02-09 15:06:16 +00:00
* Added the ability to hide usernames/emails from avatar URLs.
* Added the ability to use a Facebook Graph avatar as a backup.
2016-02-09 15:13:30 +00:00
* Added a way to customize where avatars are stored.
2016-02-09 15:06:16 +00:00
* Added a setting to disable the avatar cache.
2016-02-09 15:42:29 +00:00
* Updated thumbnail creation to preserve RGBA.
* Fixed issue where ``render_primary`` would not work if username/email was greater than 30 characters.
2016-01-19 16:13:46 +00:00
* Fixed issue where cache was not invalidated after updating avatar
2016-02-09 15:42:29 +00:00
* **Backwards Incompatible:** Renamed the ``avatar.util`` module to ``avatar.utils``.
2016-01-19 16:13:46 +00:00
2016-01-12 05:01:06 +00:00
* 2.2.1 (January 11, 2016)
2015-12-21 22:35:28 +00:00
* Added AVATAR_GRAVATAR_FIELD setting to define the user field to get the gravatar email.
2016-09-03 14:52:29 +00:00
* Improved Django 1.9/1.10 compatibility
2016-01-04 15:40:06 +00:00
* Improved Brazilian translations
2015-12-21 22:35:28 +00:00
2015-12-02 15:58:46 +00:00
* 2.2.0 (December 2, 2015)
* Added Python 3.5 support
* Added Django 1.9 support
* Removed Python 2.6 support
* Removed Django 1.4, 1.5, and 1.6 support
2015-08-10 14:42:32 +00:00
* 2.1.1 (August 10, 2015)
* Added Polish locale
* Fixed RemovedInDjango19Warning warnings
* 2.1 (May 2, 2015)
2015-05-02 18:13:51 +00:00
* Django 1.7 and 1.8 support
* Add South and Django migrations
2015-04-27 04:15:41 +00:00
* Changed Gravatar link to use HTTPS by default
* Fixed a bug where the admin avatar list page would only show a user's primary avatar
2015-04-27 04:15:41 +00:00
* Updated render_primary view to accept usernames with @ signs in them
2015-08-10 14:42:32 +00:00
* Updated translations (added Dutch, Japanese, and Simple Chinese)