Skip to content

Releases: datasette/datasette-enrichments

0.4.2

27 Apr 22:44
Compare
Choose a tag to compare
  • The get_config_form() method is now optional when implementing an enrichment, as previously incorrectly described in the documentation. #44

0.4.1

27 Apr 22:04
Compare
Choose a tag to compare
  • Removed breakpoint() calls in an error path that should not have been released. #49

0.4

27 Apr 06:03
67708b6
Compare
Choose a tag to compare
0.4

0.3.2

09 Apr 20:06
b0b65ab
Compare
Choose a tag to compare
  • Handle case where no enrichments plugins are installed. #43
  • Added description to the menu items.

0.3.1

19 Mar 02:34
644b052
Compare
Choose a tag to compare
  • Fix for a bug where the row action menu did not work correctly for tables with primary keys starting with an underscore. #42

0.3

17 Mar 21:35
addb524
Compare
Choose a tag to compare
0.3

0.2

29 Nov 19:15
Compare
Choose a tag to compare
0.2

0.1a7

29 Nov 19:09
Compare
Choose a tag to compare
0.1a7 Pre-release
Pre-release
  • New error handling mechanism, with _enrichment_errors table and log_error() method. #7
  • Fix for bug where enrichments could not run against tables with slashes/in/their/names. #14
  • Neater pattern for writing tests for new enrichment plugins using the new wait_for_job() utility function. #27

0.1a6

28 Nov 19:17
Compare
Choose a tag to compare
0.1a6 Pre-release
Pre-release
  • Class methods in subclasses can now declare just the parameters that they intend to use. #28
  • datasette argument is now available to get_config_form(). #22
  • Now tested against Datasette 0.x as well as the Datasette 1.0 alpha series. #29

0.1a5

28 Nov 00:23
Compare
Choose a tag to compare
0.1a5 Pre-release
Pre-release
  • Initial documentation at https://enrichments.datasette.io/ #21
  • Fixed bug where form could not be displayed with validation errors.
  • Switched from acronyms to full names for the status column. #20
  • Status is set to running at start.
  • New finalize() method called when the job has finished. #25
  • New {% above_form %} and {% below_form %} blocks in the enrichment.html template to support easier customization within plugins, which can provide enrichment-SLUG.html templates.
  • Enrichment class is now an Abstract Base Class (ABC).