Keith Bussell

Results 6 comments of Keith Bussell

The package I uploaded to pypi originally was for python2 only. I've updated that now.

I finally got around to adding a wider range of tests to [django-jsonfield-compat](https://github.com/kbussell/django-jsonfield-compat), and am now comfortable with this being used a by a wider audience.

I chose to use direct DB manipulation so a simple Django setting could be used instead of having to create a migration for every model that used a JSONField. The...

What user experience would you want for implementers who have already integrated django-auditlog and now want to switch to using the native JSONField implementation? Assume their projects also include include...

The problem is that if your project uses django-jsonfield (which django-auditlog uses), you cannot use Django's native JSONField anywhere else in your project. For more details, see https://bitbucket.org/schinckel/django-jsonfield/issues/57/cannot-use-in-the-same-project-as-djangos. I had...

I created an experimental PR #81 to fix this issue. After using this branch, add ``` USE_NATIVE_JSONFIELD = True ``` to your project's settings, and then run `python manage.py migrate`....