- fix issue where attachment view refered to old parent model field
- remove parent foreign key field and replace with parent_id integer field
- add parent property methods to mimic functionality of foreign key field
- allow hyphens in author usernames
- remove direct call to model in manager methods
- fix error handling in author archive when author does not exist
- prefetch term objects when getting taxonomies
- add child post cache
- add tag cache
- fix call to Preview view
- add post_archive_author template
- change default templates (except year archive) to extend from post_archive template
- add User to context when displaying author archive
- honor order of term taxonomy relationships
- remove wp_options.blog_id field as it no longer exists in WP 3.5.x
- Django 1.5 support
- fixed incorrect lookups for term views
- added Post.objects.from_path(path) method to load post from WordPress-style URL path
- add class-based views
- deprecate method-based views
- fix multi-database support
- disabled support for Link.category_id and Post.category_id (WordPress 3.x)
- added the WP_DATABASE setting to specify which database the wordpress content is coming from
- added mapping for TermTaxonomyRelationship so there is no more hand-crafted SQL being run
- PostManager.term() now supports multiple terms
- added Term.get_absolute_url()
- ensured that WordPress tables are not created or deleted by Django by marking them as unmanaged
Thanks to twig for this release!
- initial release