v0.8.1
·
148 commits
to master
since this release
Breaking
- Refactored
glue_modelfunction toglue_model_objectto be more clear on the functionality. - All imports that used
django_glue.glueshould be changed todjango_glue. - The
django_glue.middleware.GlueMiddlewaremiddleware has been renamed todjango_glue.middleware.DjangoGlueMiddleware. - The
django_glue.context_processors.gluecontext processor has been renamed todjango_glue.context_processors.django_glue. - The JavaScript Object
GlueModelObjecthas been renamed toModelObjectGlue. - The JavaScript Object
GlueQuerySethas been renamed toQuerySetGlue. - The JavaScript Object
GlueFunctionhas been renamed toFunctionGlue. - The JavaScript Object
GlueViewhas been renamed toViewGlue. - The JavaScript Object
GlueTemplatehas been renamed toTemplateGlue.
Features
- Added initial documentation for the project, check it out at (https://django-glue.stratusadv.com).
Changes
- Project internals have been completely refactored to improve project maintainability.
- New recommended way of using glue is to
import django_glue as dgwhich won't work with current implementations.- Usage changes from
glue_model_objecttodg.glue_model_object.
- Usage changes from
- Testing has been completely refactored to match the new project layout.
Fixes
- Corrected & updated all the testing functionality for this project.