, sql = 'select ', params = {'id': '1'}` caused by an invalid query when loading incoming FKs.
The error was ignored due to async but it still got printed to the console.
- Allow custom units to be registered with Pint. \[Russ Garrett\]
- Support units in filters. \[Russ Garrett\]
- Tidy up units support. \[Russ Garrett\]
- Add units to exported JSON
- Units key in metadata skeleton
- Docs
- Initial units support. \[Russ Garrett\]
Add support for specifying units for a column in `metadata.json` and rendering them on display using [pint](https://pint.readthedocs.io/en/latest/)",51,
10575542,Datasette 0.19: plugins preview,"This is the first preview of the new Datasette plugins mechanism. Only two plugin hooks are available so far - for custom SQL functions and custom template filters. There's plenty more to come - read [the documentation](https://datasette.readthedocs.io/en/latest/plugins.html) and get involved in [the tracking ticket](https://github.com/simonw/datasette/issues/14) if you have feedback on the direction so far.
- Fix for `_sort_desc=sortable_with_nulls` test, refs [#216](https://github.com/simonw/datasette/issues/216)
- Fixed [#216](https://github.com/simonw/datasette/issues/216) - paginate correctly when sorting by nullable column
- Initial documentation for plugins, closes [#213](https://github.com/simonw/datasette/issues/213)
https://datasette.readthedocs.io/en/latest/plugins.html
- New `--plugins-dir=plugins/` option ([#212](https://github.com/simonw/datasette/issues/212))
New option causing Datasette to load and evaluate all of the Python files in the specified directory and register any plugins that are defined in those files.
This new option is available for the following commands:
datasette serve mydb.db --plugins-dir=plugins/
datasette publish now/heroku mydb.db --plugins-dir=plugins/
datasette package mydb.db --plugins-dir=plugins/
- Start of the plugin system, based on pluggy ([#210](https://github.com/simonw/datasette/issues/14))
Uses https://pluggy.readthedocs.io/ originally created for the py.test project
We're starting with two plugin hooks:
`prepare_connection(conn)`
This is called when a new SQLite connection is created. It can be used to register custom SQL functions.
`prepare_jinja2_environment(env)`
This is called with the Jinja2 environment. It can be used to register custom template tags and filters.
An example plugin which uses these two hooks can be found at https://github.com/simonw/datasette-plugin-demos or installed using `pip install datasette-plugin-demos`
Refs [#14](https://github.com/simonw/datasette/issues/14)
- Return HTTP 405 on InvalidUsage rather than 500. [Russ Garrett]
This also stops it filling up the logs. This happens for HEAD requests at the moment - which perhaps should be handled better, but that's a different issue.",51,
10645022,Datasette 0.20: static assets and templates for plugins,"Mostly new work on the [Plugins](http://datasette.readthedocs.io/en/latest/plugins.html) mechanism: plugins can now bundle static assets and custom templates, and ``datasette publish`` has a new ``--install=name-of-plugin`` option.
- Add col-X classes to HTML table on custom query page
- Fixed out-dated template in documentation
- Plugins can now bundle custom templates, #224
- Added /-/metadata /-/plugins /-/inspect, #225
- Documentation for --install option, refs #223
- Datasette publish/package --install option, #223
- Fix for plugins in Python 3.5, #222
- New plugin hooks: extra_css_urls() and extra_js_urls(), #214
- /-/static-plugins/PLUGIN_NAME/ now serves static/ from plugins
- now gets class=""col-X"" - plus added col-X documentation
- Use to_css_class for table cell column classes
This ensures that columns with spaces in the name will still
generate usable CSS class names. Refs #209
- Add column name classes to | s, make PK bold [Russ Garrett]
- Don't duplicate simple primary keys in the link column [Russ Garrett]
When there's a simple (single-column) primary key, it looks weird to
duplicate it in the link column.
This change removes the second PK column and treats the link column as
if it were the PK column from a header/sorting perspective.
- Correct escaping for HTML display of row links [Russ Garrett]
- Longer time limit for test_paginate_compound_keys
It was failing intermittently in Travis - see #209
- Use application/octet-stream for downloadable databses
- Updated PyPI classifiers
- Updated PyPI link to pypi.org",51,
10868113,"Datasette 0.21: New _shape=, new _size=, search within columns","New JSON `_shape=` options, the ability to set table `_size=` and a mechanism for searching within specific columns.
- Default tests to using a longer timelimit
Every now and then a test will fail in Travis CI on Python 3.5 because it hit the default 20ms SQL time limit.
Test fixtures now default to a 200ms time limit, and we only use the 20ms time limit for the specific test that tests query interruption.
This should make our tests on Python 3.5 in Travis much more stable.
- Support `_search_COLUMN=text` searches, closes [\#237](https://github.com/simonw/datasette/issues/237)
- Show version on `/-/plugins` page, closes [\#248](https://github.com/simonw/datasette/issues/248)
- `?_size=max` option, closes [\#249](https://github.com/simonw/datasette/issues/249)
- Added `/-/versions` and `/-/versions.json`, closes [\#244](https://github.com/simonw/datasette/issues/244)
Sample output:
{
""python"": {
""version"": ""3.6.3"",
""full"": ""3.6.3 (default, Oct 4 2017, 06:09:38) \n[GCC 4.2.1 Compatible Apple LLVM 9.0.0 (clang-900.0.37)]""
},
""datasette"": {
""version"": ""0.20""
},
""sqlite"": {
""version"": ""3.23.1"",
""extensions"": {
""json1"": null,
""spatialite"": ""4.3.0a""
}
}
}
- Renamed `?_sql_time_limit_ms=` to `?_timelimit`, closes [\#242](https://github.com/simonw/datasette/issues/242)
- New `?_shape=array` option + tweaks to `_shape`, closes [\#245](https://github.com/simonw/datasette/issues/245)
- Default is now `?_shape=arrays` (renamed from `lists`)
- New `?_shape=array` returns an array of objects as the root object
- Changed `?_shape=object` to return the object as the root
- Updated docs
- FTS tables now detected by `inspect()`, closes [\#240](https://github.com/simonw/datasette/issues/240)
- New `?_size=XXX` querystring parameter for table view, closes [\#229](https://github.com/simonw/datasette/issues/229)
Also added documentation for all of the `_special` arguments.
Plus deleted some duplicate logic implementing `_group_count`.
- If `max_returned_rows==page_size`, increment `max_returned_rows` - fixes [\#230](https://github.com/simonw/datasette/issues/230)
- New `hidden: True` option for table metadata, closes [\#239](https://github.com/simonw/datasette/issues/239)
- Hide `idx_*` tables if spatialite detected, closes [\#228](https://github.com/simonw/datasette/issues/228)
- Added `class=rows-and-columns` to custom query results table
- Added CSS class `rows-and-columns` to main table
- `label_column` option in `metadata.json` - closes [\#234](https://github.com/simonw/datasette/issues/234)",51,
11087850,Datasette 0.22: Datasette Facets,"The big new feature in this release is [facets](http://datasette.readthedocs.io/en/latest/facets.html). Datasette can now apply faceted browse to any column in any table. It will also suggest possible facets. See the [Datasette Facets](https://simonwillison.net/2018/May/20/datasette-facets/) announcement post for more details.
In addition to the work on facets:
- Added [docs for introspection endpoints](https://datasette.readthedocs.io/en/latest/introspection.html)
- New `--config` option, added `--help-config`, closes #274
Removed the `--page_size=` argument to `datasette serve` in favour of:
datasette serve --config default_page_size:50 mydb.db
Added new help section:
$ datasette --help-config
Config options:
default_page_size Default page size for the table view
(default=100)
max_returned_rows Maximum rows that can be returned from a table
or custom query (default=1000)
sql_time_limit_ms Time limit for a SQL query in milliseconds
(default=1000)
default_facet_size Number of values to return for requested facets
(default=30)
facet_time_limit_ms Time limit for calculating a requested facet
(default=200)
facet_suggest_time_limit_ms Time limit for calculating a suggested facet
(default=50)
- Only apply responsive table styles to `.rows-and-column`
Otherwise they interfere with tables in the description, e.g. on
https://fivethirtyeight.datasettes.com/fivethirtyeight/nba-elo%2Fnbaallelo
- Refactored views into new `views/` modules, refs #256
- [Documentation for SQLite full-text search](http://datasette.readthedocs.io/en/latest/full_text_search.html) support, closes #253
- `/-/versions` now includes SQLite `fts_versions`, closes #252",51,
11136605,Datasette 0.22.1,"Bugfix release, plus we now use [versioneer](https://github.com/warner/python-versioneer) for our version numbers.
- Faceting no longer breaks pagination, fixes #282
- Add ``__version_info__`` derived from `__version__` [Robert Gieseke]
This might be tuple of more than two values (major and minor
version) if commits have been made after a release.
- Add version number support with Versioneer. [Robert Gieseke]
Versioneer Licence:
Public Domain (CC0-1.0)
Closes #273
- Refactor inspect logic [Russ Garrett]",51,
11530498,"Datasette 0.23: CSV, SpatiaLite and more","This release features CSV export, improved options for foreign key expansions, new configuration settings and improved support for SpatiaLite.
See full release notes here: http://datasette.readthedocs.io/en/latest/changelog.html#v0-23",51,
11591352,Datasette 0.23.1,"Minor bugfix release.
* Correctly display empty strings in HTML table, closes #314
* Allow “.” in database filenames, closes #302
* 404s ending in slash redirect to remove that slash, closes #309
* Fixed incorrect display of compound primary keys with foreign key references. Closes #319
* Docs + example of canned SQL query using || concatenation. Closes #321
* Correctly display facets with value of 0 - closes #318
* Default ‘expand labels’ to checked in CSV advanced export
",51,
11825600,Datasette 0.23.2,"Minor bugfix and documentation release.
* CSV export now respects `--cors`, fixes #326
* [Installation instructions](https://datasette.readthedocs.io/en/latest/installation.html) including docker image - closes #328
* Fix for row pages for tables with / in, closes #325",51,
12080036,Datasette 0.24,"See full release notes here: http://datasette.readthedocs.io/en/latest/changelog.html#v0-24
",51,
12986637,Datasette 0.25,"New plugin hooks, improved database view support and an easier way to use more recent versions of SQLite.
See full release notes here: https://datasette.readthedocs.io/en/latest/changelog.html#v0-25",51,
14560294,Datasette 0.25.1,"Documentation improvements plus a fix for publishing to Zeit Now.
* `datasette publish now` now uses Zeit’s v1 platform, to work around the new 100MB image limit. Thanks, @slygent - closes #366.
",51,
14560304,Datasette 0.25.2,"* `datasette publish heroku` now uses the `python-3.6.7` runtime
* Added documentation on [how to build the documentation](https://datasette.readthedocs.io/en/stable/contributing.html#editing-and-building-the-documentation)
* Added documentation covering [our release process](https://datasette.readthedocs.io/en/stable/contributing.html#release-process)
* Upgraded to pytest 4.0.2
",51,
14914779,Datasette 0.26,[Datasette 0.26 release notes](https://datasette.readthedocs.io/en/stable/changelog.html#v0-26),51,
15175633,0.7,Release notes are here: https://sqlite-utils.readthedocs.io/en/latest/changelog.html#v0-7,51,
15206659,Datasette 0.26.1,Release notes: https://datasette.readthedocs.io/en/stable/changelog.html#v0-26-1,51,
15208430,0.8,"Two new commands: `sqlite-utils csv` and `sqlite-utils json`
https://sqlite-utils.readthedocs.io/en/latest/changelog.html#v0-8",51,
15243253,0.9,https://sqlite-utils.readthedocs.io/en/latest/changelog.html#v0-9,51,
15389392,Datasette 0.27,https://datasette.readthedocs.io/en/stable/changelog.html#v0-27,51,
15439849,0.10,https://sqlite-utils.readthedocs.io/en/latest/changelog.html#v0-10,51,
15731282,0.11,https://sqlite-utils.readthedocs.io/en/latest/changelog.html#v0-11,51,
15731354,0.12,https://sqlite-utils.readthedocs.io/en/latest/changelog.html#v0-12,51,
15739051,0.13,https://sqlite-utils.readthedocs.io/en/latest/changelog.html#v0-13,51,
15744513,0.14,https://sqlite-utils.readthedocs.io/en/latest/changelog.html#v0-14,51,
17450414,Datasette 0.28,"[Datasette 0.28](https://datasette.readthedocs.io/en/stable/changelog.html#v0-28) - a salmagundi of new features!
* No longer immutable! Datasette now supports [databases that change](https://datasette.readthedocs.io/en/stable/changelog.html#supporting-databases-that-change).
* [Faceting improvements](https://datasette.readthedocs.io/en/stable/changelog.html#faceting-improvements-and-faceting-plugins) including facet-by-JSON-array and the ability to define custom faceting using plugins.
* [datasette publish cloudrun](https://datasette.readthedocs.io/en/stable/changelog.html#datasette-publish-cloudrun) lets you publish databasese to Google's new Cloud Run hosting service.
* New [register_output_renderer](https://datasette.readthedocs.io/en/stable/changelog.html#register-output-renderer-plugins) plugin hook for adding custom output extensions to Datasette in addition to the default `.json` and `.csv`.
* Dozens of other smaller features and tweaks - see [the release notes](https://datasette.readthedocs.io/en/stable/changelog.html#v0-28) for full details.",51,
17583581,1.0,https://sqlite-utils.readthedocs.io/en/latest/changelog.html#v1-0,51,
17616531,1.0.1,https://sqlite-utils.readthedocs.io/en/latest/changelog.html#v1-0-1,51,
17645877,1.1,"https://sqlite-utils.readthedocs.io/en/latest/changelog.html#v1-1
* Support for `ignore=True` / `--ignore` for ignoring inserted records if the primary key alread exists (#21)
* Ability to add a column that is a foreign key reference using `fk=...` / `--fk` (#16)
",51,
17961871,1.2,https://sqlite-utils.readthedocs.io/en/latest/changelog.html#v1-2,51,
18132566,1.2.1,https://sqlite-utils.readthedocs.io/en/latest/changelog.html#v1-2-1,51,
18226656,1.2.2,https://sqlite-utils.readthedocs.io/en/latest/changelog.html#v1-2-2,51,
18307928,1.3,https://sqlite-utils.readthedocs.io/en/latest/changelog.html#v1-3,51,
18461320,Datasette 0.29,"ASGI, new plugin hooks, facet by date and much, much more… See [the release notes](https://datasette.readthedocs.io/en/stable/changelog.html#v0-29) for full details.",51,
18598489,0.29.1,"- Fixed bug with static mounts using relative paths which could lead to traversal exploits (#555) - thanks Abdussamet Kocak!
https://datasette.readthedocs.io/en/stable/changelog.html#v0-29-1",51,
18723202,1.6,"- `sqlite-utils insert` can now accept TSV data via the new `--tsv` option (#41)
",51,
18750551,Initial release,,51,
18750559,0.2,Fixed a bug where duplicate records could crash the import.,51,
18762495,0.3,"- Tool now displays a progress bar during import - you can disable it with `--silent` #5
- You can pass a path to a decompressed XML file instead of a zip file, using `--xml`
- Records table is now broken up into different tables for each type of recorded data #6",51,
18823859,0.3.1,Uses less RAM - see #7 ,51,
18881253,0.3.2,Fix for #9 - Too many SQL variables bug,51,
18911392,1.7,https://sqlite-utils.readthedocs.io/en/latest/changelog.html#v1-7,51,
18911404,1.7.1,https://sqlite-utils.readthedocs.io/en/latest/changelog.html#v1-7-1,51,
19669553,0.1,First usable release.,51,
19704661,0.29.2,"* Bumped Uvicorn to 0.8.4, fixing a bug where the querystring was not included in the server logs. (#559)
* Fixed bug where the navigation breadcrumbs were not displayed correctly on the page for a custom query. (#558)
* Fixed bug where custom query names containing unicode characters caused errors.
https://datasette.readthedocs.io/en/stable/changelog.html#v0-29-2",51,
19704736,1.8,https://sqlite-utils.readthedocs.io/en/stable/changelog.html#v1-8,51,
19704739,1.9,https://sqlite-utils.readthedocs.io/en/stable/changelog.html#v1-9,51,
19704743,1.10,https://sqlite-utils.readthedocs.io/en/stable/changelog.html#v1-10,51,
19704889,1.11,https://sqlite-utils.readthedocs.io/en/stable/changelog.html#v1-11,51,
19763160,Alpha release,,51,
19763185,0.2,Full text search for tweets table,51,
19763200,0.3,"Extract places and media into separate tables
Demo: https://twitter-to-sqlite-demo.now.sh/",51,
19865891,0.4,"* New `users-lookup` command for fetching multiple user profiles, including using new `--sql` and `--attach` options
* New `list-members` subcommand for fetching members of a list
* Added `stop_after` option to `user-timeline` command",51,
19889174,0.5,* Added `followers-ids` and `friends-ids` subcommands,51,
19993251,0.1.1,* Fix bug in authentication handling code,51,
19993751,0.2,"* Added the `github-to-sqlite starred` command for retrieving starred repos, #1 ",51,
19993820,0.3,"* `license` is now extracted from the `repos` table into a separate `licenses` table with a foreign key, #2
",51,
20031553,0.4,"* Added `github-to-sqlite repos` command, #3 ",51,
20114205,0.1,First release,51,
20497186,0.6,"* New experimental `track` and `follow` commands for subscribing to the Twitter real-time API #11. [Documentation](https://github.com/dogsheep/twitter-to-sqlite#capturing-tweets-in-real-time-with-track-and-follow) for track and follow.
* Documentation for `--sql` and `--attach`, refs #8",51,
20504543,0.7,* New `statuses-lookup` command for bulk fetching tweets by their IDs - #13 ,51,
20506896,0.1,Initial release,51,
20631452,0.8,* New `twitter-to-sqlite import twitter.db archive.zip` command for importing data from a Twitter export file. #4 - [documentation here](https://github.com/dogsheep/twitter-to-sqlite/blob/master/README.md#importing-data-from-your-twitter-archive).,51,
20646519,0.9,"* New `twitter-to-sqlite home-timeline` command, for retrieving your timeline of tweets from people you follow - #18
* `twitter-to-sqlite import` created tables now use the `archive_` prefix instead of `archive-`, for easier querying
* Running `twitter-to-sqlite import` now deletes existing `archive_` tables and recreates them - #17",51,
20663605,0.5,"* New command: `github-to-sqlite issue-comments` for importing comments on issues - #7
* `github-to-sqlite issues` now accepts optional `--issue=1` argument
* Fixed bug inserting users into already-created table with wrong columns - #6",51,
20721291,0.10,"* favorites command now populates `favorited_by` table - #14
* favorites `--stop_after` option - #20
* Store unescaped `full_text` of Tweet - #21 ",51,
20754277,0.11,"* Added `--since_id` and `--since` to `user-timeline` command, refs #20
* `--since` and `--since_id` options for `home-timeline`, closes #19
* `import` command now works on files and directories, closes #22 ",51,
20755954,0.2,"* Added --since option, closes #3 ",51,
20758324,0.11.1,"* Fix bugs running `home-timeline --since` from scratch. If tables were missing, script would throw an error.",51,
20783590,0.12,"* The `source` column for a tweet is now a foreign key to a new `sources` table - #12
* New migrations system to upgrade existing databases to handle the new `source` column extraction - #23
* Experimental implementation of new `twitter-to-sqlite search tweets.db search-term` command, which runs a search and saves the tweets from that search - #3
* Fixed bug where sometimes a user record for the authenticated user was not persisted to the `users` table",51,
20795250,0.29.3,https://datasette.readthedocs.io/en/stable/changelog.html#v0-29-3,51,
21073645,0.13,- New `mentions-timeline` command (#26),51,
21098052,0.30,https://datasette.readthedocs.io/en/stable/changelog.html#v0-30,51,
21162064,0.30.1,https://datasette.readthedocs.io/en/stable/changelog.html#v0-30-1,51,
21169835,0.30.2,https://datasette.readthedocs.io/en/latest/changelog.html#v0-30-2,51,
21180989,0.14,"* `search` command gained `--since_id` and `--since` options, for retrieving tweets since the last time the search was run
* `search` command is [now documented](https://github.com/dogsheep/twitter-to-sqlite/blob/0.14/README.md#running-searches). Closes #3.",51,
21276745,1.12,https://sqlite-utils.readthedocs.io/en/latest/changelog.html#v1-12,51,
21276749,1.12.1,https://sqlite-utils.readthedocs.io/en/latest/changelog.html#v1-12-1,51,
21306693,0.4,* Fixed workout latitude/longitude points import for iOS 13 - #10,51,
21342008,0.15,"- Import command no longer fails on empty files - #29
- Fixed bug in `followers` command - #30
- `following` table now has indexes - #28",51,
21354706,0.6,"- New `releases` command for fetching releases for a repo, #11
- Repository topics are now fetched by the `repos` command
- `github-to-sqlite repos` now accepts multiple usernames
- Command now works without `--auth` file (using anonymous API calls), #9",51,
21426008,Datasette 0.31,"This version adds compatibility with Python 3.8 and breaks compatibility with Python 3.5.
Full release notes: https://datasette.readthedocs.io/en/stable/changelog.html#v0-31",51,
21426299,0.31.1,"- Deployments created using `datasette publish` now use `python:3.8` base Docker image (#629)
https://datasette.readthedocs.io/en/latest/changelog.html#v0-31-1",51,
21449006,0.31.2,"- Fixed a bug where datasette publish heroku applications failed to start (#633)
- Fix for datasette publish with just --source_url - thanks, Stanley Zheng (#572)
- Deployments to Heroku now use Python 3.8.0 (#632)
https://datasette.readthedocs.io/en/latest/changelog.html#v0-31-2",51,
21492068,Datasette 0.32,"Datasette now renders templates using [Jinja async mode](https://jinja.palletsprojects.com/en/2.10.x/api/#async-support). This makes it easy for plugins to provide custom template functions that perform asynchronous actions, for example the new [datasette-template-sql](https://github.com/simonw/datasette-template-sql) plugin which allows custom templates to directly execute SQL queries and render their results. (#628)
https://datasette.readthedocs.io/en/latest/changelog.html#v0-32",51,
22415542,Datasette 0.33,"* `rowid` is now included in dropdown menus for filtering tables (#636)
* Columns are now only suggested for faceting if they have at least one value with more than one record (#638)
* Queries with no results now display “0 results” (#637)
* Improved documentation for the `--static` option (#641)
* asyncio task information is now included on the `/-/threads` debug page
* Bumped Uvicorn dependency 0.11
* You can now use `--port 0` to listen on an available port
* New `template_debug` setting for debugging templates, e.g. https://latest.datasette.io/fixtures/roadside_attractions?_context=1 (#654)
https://datasette.readthedocs.io/en/latest/changelog.html#v0-33",51,
22509033,2.0,"This release changes the behaviour of `upsert`. It’s a breaking change, hence 2.0.
The `upsert` command-line utility and the `.upsert()` and `.upsert_all()` Python API methods have had their behaviour altered. They used to completely replace the affected records: now, they update the specified values on existing records but leave other columns unaffected.
See [Upserting data using the Python API](https://sqlite-utils.readthedocs.io/en/stable/python-api.html#python-api-upsert) and [Upserting data using the CLI](https://sqlite-utils.readthedocs.io/en/stable/cli.html#upserting-data) for full details.
If you want the old behaviour - where records were completely replaced - you can use `$ sqlite-utils insert ... --replace` on the command-line and `.insert(..., replace=True)` and `.insert_all(..., replace=True)` in the Python API. See [Insert-replacing data using the Python API](https://sqlite-utils.readthedocs.io/en/stable/python-api.html#python-api-insert-replace) and [Insert-replacing data using the CLI](https://sqlite-utils.readthedocs.io/en/stable/cli.html#cli-insert-replace) for more.
For full background on this change, see issue #66.",51,
22603380,2.0.1,The `.upsert()` and `.upsert_all()` methods now raise a `sqlite_utils.db.PrimaryKeyRequired` exception if you call them without specifying the primary key column using `pk=` (#73).,51,
23239304,Datasette 0.34,"- `_search=` queries are now correctly escaped using a new `escape_fts()` custom SQL function. This means you can now run searches for strings like `park.` without seeing errors. (#651)
- Google Cloud Run is no longer in beta, so `datasette publish cloudrun` has been updated to work even if the user has not installed the `gcloud` beta components package. Thanks, Katie McLaughlin (#660)
- `datasette package` now accepts a `--port` option for specifying which port the resulting Docker container should listen on. (#661)
https://datasette.readthedocs.io/en/stable/changelog.html#v0-34
",51,
23274412,2.1,New feature: `conversions={...}` can be passed to the `.insert()` family of functions to specify SQL conversions that should be applied to values that are being inserted or updated. See [Converting column values using SQL functions](https://sqlite-utils.readthedocs.io/en/stable/python-api.html#python-api-conversions). (#77).,51,
23395622,Datasette 0.35,"* Added five new plugins and one new conversion tool to the [The Datasette Ecosystem](https://datasette.readthedocs.io/en/latest/ecosystem.html#ecosystem).
* The `Datasette` class has a new `render_template()` method which can be used by plugins to render templates using Datasette’s pre-configured [Jinja](https://jinja.palletsprojects.com/) templating library.
* You can now execute SQL queries that start with a `-- comment` - thanks, Jay Graves (#653)
https://datasette.readthedocs.io/en/latest/changelog.html#v0-35",51,
23471014,2.2,"New feature: `sqlite_utils.suggest_column_types([records])` returns the suggested column types for a list of records. See [Suggesting column types](https://sqlite-utils.readthedocs.io/en/stable/python-api.html#python-api-suggest-column-types). (#81).
This replaces the undocumented `table.detect_column_types()` method.",51,
23471112,2.2.1,"Fixed a bug where `.upsert(..., hash_id=""pk"")` threw an error (#84).",51,
23471420,0.16,New `friends` command for importing accounts that a specific user follows.,51,
23508352,2.3,"`table.exists()` is now a method, not a property. This was not a documented part of the API before so I’m considering this a non-breaking change. (#83)",51,
23556494,2.3.1,`table.create_index()` now works for columns that contain spaces. (#85),51,
|