HISTORY.rst
1.88 KB
History
Pending
1.7.3 (unreleased)
- Fixed a regression which prevented the
Commentmodel from registering with the admin.
1.7.2 (2016-08-04)
-
get_comment_listnow returns aQuerySetinstead of alist. - Fixed a Django 1.9+ compatibility issue with a customized comment app in
INSTALLED_APPS(#87). - Confirmed support for Django 1.10.
1.7.1 (2016-05-03)
- Isolated abstract models outside of models.py so they can be imported without triggering Django's deprecation warning about models living outside of a 'models' module.
- Updated translations.
1.7.0 (2016-03-29)
- Dropped Django 1.6 and Python 2.6 support
- Improved usage of
AppConfigfunctionality for custom models. - Added
CommentAbstractModelas another abstract model layer for easier customization. - Avoided N+1 query problem for users on comments.
- Made the moderation email subject translatable.
- Added a database index to
Comment.submit_date, since it is used for the default ordering. - Fixed packaging so locale files are distributed.
- Updated translations.
1.6.2 (2016-12-10)
- Fixed some Django deprecation warnings.
- Setup translation system using Transifex.
- Added missing South migration for the email length.
- Updated translations.
1.6.1 (2016-05-08)
- Fixed migrations not working when installed as an egg.
1.6.0 (2016-04-29)
- Made
CommentSecurityFormpass keyword arguments to its parent class. - Added
COMMENTS_TIMEOUTsetting to configure the timeout forCommentSecurityForm. - Migrated
Comment.user_emailto 254 characters. - Moved South migrations to
south_migrationsfolder so they can exist with Django 1.7 migrations. - Added Django 1.9 compatibility, dropped support for Django 1.5.