Skip to content

2.4.0

Compare
Choose a tag to compare
@dsblank dsblank released this 19 May 14:25
· 32 commits to main since this release

New in this release:

  1. New auto dynamic update: a polling system that runs automatically for all DataGrid UIs, checking every 15 seconds if the underlying database has changed. If it has, then it smoothly will update the UI (unless a dialog window, like editing computed columns, is open).
  2. Removed the timestamp from the URL
  3. Added new expression function: HISTOGRAM({"Column Name"}, 10) that will return a number for that row representing the value in "Column Name" broken into 10 bins. Useful to group by this value to see the distribution of each bar in a histogram chart.
  4. Added selectable columns in all Python query APIs. By default, one gets all columns except "row-id". Use select="*" to get all columns, including "row-id". Otherwise, use select=["Column Name1", ...]
  5. Spellcheck turned off (again) in computed column editor
  6. Row-id cell shows "N/A" when grouping on another column.
  7. "About" markdown now automatically turns URLs into links
  8. Fixed a bug in "kangas upgrade" and "dg.upgrade()"
  9. Fixed a bug in appending data of wrong type (that was in the Getting Started notebook)
  10. Fixed loading spinner from flashing, and changing view
  11. Refactored embedding projector to handle large embedding vectors