django-sql-explorer v0.6.0 Release Notes

Release Date: 2014-11-05 // over 9 years ago
  • 2014-11-05

    • ๐Ÿ‘€ Introduced Django 1.7 migrations. See readme.rst for info on how to run South migrations if you are not on Django 1.7 yet.
    • โฌ†๏ธ Upgraded front-end libraries to latest versions.
    • ๐Ÿ‘‰ Added ability to grant selected users view permissions on selected queries via the EXPLORER_USER_QUERY_VIEWS parameter
      • Example usage: EXPLORER_USER_QUERY_VIEWS = {1: [3,4], 2:[3]}
      • This would grant user with PK 1 read-only access to query with PK=3 and PK=4 and user 2 access to query 3.
    • ๐Ÿ›  Bugfixes
      • Navigating to an explorer URL without the trailing slash now redirects to the intended page (e.g. /logs -> /logs/)
      • Downloading a .csv and subsequently re-executing a query via a keyboard shortcut (cmd+enter) would re-submit the form and re-download the .csv. It now correctly just refreshes the query.
      • Django 1.7 compatibility fix