sections_fts: 48
This data as json
| rowid | title | content |
|---|---|---|
| 48 | Bug fixes | can_render() callbacks registered by the register_output_renderer() plugin hook now receive the result rows and columns for stored queries. Previously renderers that inspect the available columns - such as datasette-atom and datasette-ics - never appeared as export options on stored query pages. ( #2711 ) Fixed a 500 error from the /-/check permission debugging endpoint when checking query actions such as view-query , update-query and delete-query . ( #2756 ) Write queries that use a named parameter called :sql no longer fail with an error. ( #2761 ) db.execute_isolated_fn() now works against immutable databases, using a read-only connection that bypasses the write thread. It previously always attempted to open a writable connection, which would fail - breaking features built on top of it, such as the SQL analysis step used when storing a query. An exception raised while opening the connection for an isolated function no longer crashes the write thread. ( #2768 ) Facet counts are now displayed on the same line as the facet value instead of wrapping onto a second line. ( #2754 ) Datasette's pytest plugin no longer imports the rest of Datasette at pytest startup time. This means plugin test suites using pytest-cov now correctly record coverage of code that runs when datasette modules are first imported. |