html_url,id,node_id,tag_name,target_commitish,name,draft,author,author_label,prerelease,created_at,published_at,body,repo,repo_label,reactions https://github.com/simonw/datasette/releases/tag/0.12,8546575,MDc6UmVsZWFzZTg1NDY1NzU=,0.12,main,Datasette 0.12,0,9599,simonw,0,2017-11-16T15:37:46Z,2017-11-16T16:01:35Z,"- Added `__version__`, now displayed as tooltip in page footer (#108). - Added initial docs, including a changelog (#99). - Turned on auto-escaping in Jinja. - Added a UI for editing named parameters (#96). You can now construct a custom SQL statement using SQLite named parameters (e.g. `:name`) and datasette will display form fields for editing those parameters. [Here's an example](https://australian-dogs.now.sh/australian-dogs-3ba9628?sql=select+name%2C+count%28*%29+as+n+from+%28%0D%0A%0D%0Aselect+upper%28%22Animal+name%22%29+as+name+from+%5BAdelaide-City-Council-dog-registrations-2013%5D+where+Breed+like+%3Abreed%0D%0A%0D%0Aunion+all%0D%0A%0D%0Aselect+upper%28Animal_Name%29+as+name+from+%5BAdelaide-City-Council-dog-registrations-2014%5D+where+Breed_Description+like+%3Abreed%0D%0A%0D%0Aunion+all+%0D%0A%0D%0Aselect+upper%28Animal_Name%29+as+name+from+%5BAdelaide-City-Council-dog-registrations-2015%5D+where+Breed_Description+like+%3Abreed%0D%0A%0D%0Aunion+all%0D%0A%0D%0Aselect+upper%28%22AnimalName%22%29+as+name+from+%5BCity-of-Port-Adelaide-Enfield-Dog_Registrations_2016%5D+where+AnimalBreed+like+%3Abreed%0D%0A%0D%0Aunion+all%0D%0A%0D%0Aselect+upper%28%22Animal+Name%22%29+as+name+from+%5BMitcham-dog-registrations-2015%5D+where+Breed+like+%3Abreed%0D%0A%0D%0Aunion+all%0D%0A%0D%0Aselect+upper%28%22DOG_NAME%22%29+as+name+from+%5Bburnside-dog-registrations-2015%5D+where+DOG_BREED+like+%3Abreed%0D%0A%0D%0Aunion+all+%0D%0A%0D%0Aselect+upper%28%22Animal_Name%22%29+as+name+from+%5Bcity-of-playford-2015-dog-registration%5D+where+Breed_Description+like+%3Abreed%0D%0A%0D%0Aunion+all%0D%0A%0D%0Aselect+upper%28%22Animal+Name%22%29+as+name+from+%5Bcity-of-prospect-dog-registration-details-2016%5D+where%22Breed+Description%22+like+%3Abreed%0D%0A%0D%0A%29+group+by+name+order+by+n+desc%3B&breed=pug) which lets you see the most popular names for dogs of different species registered through various dog registration schemes in Australia. - Pin to specific Jinja version. (#100). - Default to 127.0.0.1 not 0.0.0.0. (#98). - Added extra metadata options to publish and package commands. (#92). You can now run these commands like so: datasette now publish mydb.db \ --title=""My Title"" \ --source=""Source"" \ --source_url=""http://www.example.com/"" \ --license=""CC0"" \ --license_url=""https://creativecommons.org/publicdomain/zero/1.0/"" This will write those values into the metadata.json that is packaged with the app. If you also pass `--metadata=metadata.json` that file will be updated with the extra values before being written into the Docker image. - Added simple production-ready Dockerfile (#94) \[Andrew Cutler\] - New `?_sql_time_limit_ms=10` argument to database and table page (#95) - SQL syntax highlighting with Codemirror (#89) \[Tom Dyson\]",107914493,datasette, https://github.com/simonw/datasette/releases/tag/0.13,8652546,MDc6UmVsZWFzZTg2NTI1NDY=,0.13,main,"Datasette 0.13: foreign key, search and filters",0,9599,simonw,0,2017-11-25T03:33:39Z,2017-11-25T03:44:46Z,"# 0.13 (2017-11-24) - Search now applies to current filters. Combined search into the same form as filters. Closes [\#133](https://github.com/simonw/datasette/issues/133) - Much tidier design for table view header. Closes [\#147](https://github.com/simonw/datasette/issues/147) - Added `?column__not=blah` filter. Closes [\#148](https://github.c) - Row page now resolves foreign keys. Closes [\#132]() - Further tweaks to select/input filter styling. Refs [\#86]() - thanks for the help, @natbat\! - Show linked foreign key in table cells. - Added UI for editing table filters. Refs [\#86]() - Hide FTS-created tables on index pages. Closes [\#129]() - Add publish to heroku support \[Jacob Kaplan-Moss\] `datasette publish heroku mydb.db` Pull request [\#104]() - Initial implementation of `?_group_count=column`. URL shortcut for counting rows grouped by one or more columns. `?_group_count=column1&_group_count=column2` works as well. SQL generated looks like this: select ""qSpecies"", count(*) as ""count"" from Street_Tree_List group by ""qSpecies"" order by ""count"" desc limit 100 Or for two columns like this: select ""qSpecies"", ""qSiteInfo"", count(*) as ""count"" from Street_Tree_List group by ""qSpecies"", ""qSiteInfo"" order by ""count"" desc limit 100 Refs [\#44]() - Added `--build=master` option to datasette publish and package. The `datasette publish` and `datasette package` commands both now accept an optional `--build` argument. If provided, this can be used to specify a branch published to GitHub that should be built into the container. This makes it easier to test code that has not yet been officially released to PyPI, e.g.: datasette publish now mydb.db --branch=master - Implemented `?_search=XXX` + UI if a FTS table is detected. Closes [\#131]() - Added `datasette --version` support. - Table views now show expanded foreign key references, if possible. If a table has foreign key columns, and those foreign key tables have `label_columns`, the TableView will now query those other tables for the corresponding values and display those values as links in the corresponding table cells. label\_columns are currently detected by the `inspect()` function, which looks for any table that has just two columns - an ID column and one other - and sets the `label_column` to be that second non-ID column. - Don't prevent tabbing to ""Run SQL"" button ([\#117]()) \[Robert Gieseke\] See comment in [\#115]() - Add keyboard shortcut to execute SQL query ([\#115]()) \[Robert Gieseke\] - Allow `--load-extension` to be set via environment variable. - Add support for `?field__isnull=1` ([\#107]()) \[Ray N\] - Add spatialite, switch to debian and local build ([\#114]()) \[Ariel Núñez\] - Added `--load-extension` argument to datasette serve. Allows loading of SQLite extensions. Refs [\#110](). ",107914493,datasette, https://github.com/simonw/datasette/releases/tag/0.14,8841695,MDc6UmVsZWFzZTg4NDE2OTU=,0.14,main,Datasette 0.14: customization edition,0,9599,simonw,0,2017-12-10T01:33:24Z,2017-12-10T01:41:14Z,"The theme of this release is customization: Datasette now allows every aspect of its presentation [to be customized](http://datasette.readthedocs.io/en/latest/custom_templates.html) either using additional CSS or by providing entirely new templates. Datasette's [metadata.json format](http://datasette.readthedocs.io/en/latest/metadata.html) has also been expanded, to allow per-database and per-table metadata. A new `datasette skeleton` command can be used to generate a skeleton JSON file ready to be filled in with per-database and per-table details. The `metadata.json` file can also be used to define [canned queries](http://datasette.readthedocs.io/en/latest/sql_queries.html#canned-queries), as a more powerful alternative to SQL views. - `extra_css_urls`/`extra_js_urls` in metadata A mechanism in the `metadata.json` format for adding custom CSS and JS urls. Create a `metadata.json` file that looks like this: { ""extra_css_urls"": [ ""https://simonwillison.net/static/css/all.bf8cd891642c.css"" ], ""extra_js_urls"": [ ""https://code.jquery.com/jquery-3.2.1.slim.min.js"" ] } Then start datasette like this: datasette mydb.db --metadata=metadata.json The CSS and JavaScript files will be linked in the `` of every page. You can also specify a SRI (subresource integrity hash) for these assets: { ""extra_css_urls"": [ { ""url"": ""https://simonwillison.net/static/css/all.bf8cd891642c.css"", ""sri"": ""sha384-9qIZekWUyjCyDIf2YK1FRoKiPJq4PHt6tp/ulnuuyRBvazd0hG7pWbE99zvwSznI"" } ], ""extra_js_urls"": [ { ""url"": ""https://code.jquery.com/jquery-3.2.1.slim.min.js"", ""sri"": ""sha256-k2WSCIexGzOj3Euiig+TlR8gA0EmPjuc79OEeY5L45g="" } ] } Modern browsers will only execute the stylesheet or JavaScript if the SRI hash matches the content served. You can generate hashes using - Auto-link column values that look like URLs ([\#153](https://github.com/simonw/datasette/issues/153)) - CSS styling hooks as classes on the body ([\#153](https://github.com/simonw/datasette/issues/153)) Every template now gets CSS classes in the body designed to support custom styling. The index template (the top level page at `/`) gets this: The database template (`/dbname/`) gets this: The table template (`/dbname/tablename`) gets: The row template (`/dbname/tablename/rowid`) gets: The `db-x` and `table-x` classes use the database or table names themselves IF they are valid CSS identifiers. If they aren't, we strip any invalid characters out and append a 6 character md5 digest of the original name, in order to ensure that multiple tables which resolve to the same stripped character version still have different CSS classes. Some examples (extracted from the unit tests): ""simple"" => ""simple"" ""MixedCase"" => ""MixedCase"" ""-no-leading-hyphens"" => ""no-leading-hyphens-65bea6"" ""_no-leading-underscores"" => ""no-leading-underscores-b921bc"" ""no spaces"" => ""no-spaces-7088d7"" ""-"" => ""336d5e"" ""no $ characters"" => ""no--characters-59e024"" - `datasette --template-dir=mytemplates/` argument You can now pass an additional argument specifying a directory to look for custom templates in. Datasette will fall back on the default templates if a template is not found in that directory. - Ability to over-ride templates for individual tables/databases. It is now possible to over-ride templates on a per-database / per-row or per-table basis. When you access e.g. `/mydatabase/mytable` Datasette will look for the following: - table-mydatabase-mytable.html - table.html If you provided a `--template-dir` argument to datasette serve it will look in that directory first. The lookup rules are as follows: Index page (/): index.html Database page (/mydatabase): database-mydatabase.html database.html Table page (/mydatabase/mytable): table-mydatabase-mytable.html table.html Row page (/mydatabase/mytable/id): row-mydatabase-mytable.html row.html If a table name has spaces or other unexpected characters in it, the template filename will follow the same rules as our custom `` CSS classes - for example, a table called ""Food Trucks"" will attempt to load the following templates: table-mydatabase-Food-Trucks-399138.html table.html It is possible to extend the default templates using Jinja template inheritance. If you want to customize EVERY row template with some additional content you can do so by creating a row.html template like this: {% extends ""default:row.html"" %} {% block content %}

EXTRA HTML AT THE TOP OF THE CONTENT BLOCK

This line renders the original block:

{{ super() }} {% endblock %} - `--static` option for datasette serve ([\#160](https://github.com/simonw/datasette/issues/160)) You can now tell Datasette to serve static files from a specific location at a specific mountpoint. For example: datasette serve mydb.db --static extra-css:/tmp/static/css Now if you visit this URL: http://localhost:8001/extra-css/blah.css The following file will be served: /tmp/static/css/blah.css - Canned query support. Named canned queries can now be defined in `metadata.json` like this: { ""databases"": { ""timezones"": { ""queries"": { ""timezone_for_point"": ""select tzid from timezones ..."" } } } } These will be shown in a new ""Queries"" section beneath ""Views"" on the database page. - New `datasette skeleton` command for generating `metadata.json` ([\#164](https://github.com/simonw/datasette/issues/164)) - `metadata.json` support for per-table/per-database metadata ([\#165](https://github.com/simonw/datasette/issues/165)) Also added support for descriptions and HTML descriptions. Here's an example metadata.json file illustrating custom per-database and per-table metadata: { ""title"": ""Overall datasette title"", ""description_html"": ""This is a description with HTML."", ""databases"": { ""db1"": { ""title"": ""First database"", ""description"": ""This is a string description & has no HTML"", ""license_url"": ""http://example.com/"", ""license"": ""The example license"", ""queries"": { ""canned_query"": ""select * from table1 limit 3;"" }, ""tables"": { ""table1"": { ""title"": ""Custom title for table1"", ""description"": ""Tables can have descriptions too"", ""source"": ""This has a custom source"", ""source_url"": ""http://example.com/"" } } } } } - Renamed `datasette build` command to `datasette inspect` ([\#130](https://github.com/simonw/datasette/issues/130)) - Upgrade to Sanic 0.7.0 ([\#168](https://github.com/simonw/datasette/issues/168)) - Package and publish commands now accept `--static` and `--template-dir` Example usage: datasette package --static css:extra-css/ --static js:extra-js/ \ sf-trees.db --template-dir templates/ --tag sf-trees --branch master This creates a local Docker image that includes copies of the templates/, extra-css/ and extra-js/ directories. You can then run it like this: docker run -p 8001:8001 sf-trees For publishing to Zeit now: datasette publish now --static css:extra-css/ --static js:extra-js/ \ sf-trees.db --template-dir templates/ --name sf-trees --branch master - HTML comment showing which templates were considered for a page ([\#171](https://github.com/simonw/datasette/issues/171)) ",107914493,datasette, https://github.com/simonw/datasette/releases/tag/0.15,10458641,MDc6UmVsZWFzZTEwNDU4NjQx,0.15,main,Datasette 0.15: sort by column,0,9599,simonw,0,2018-04-09T15:48:24Z,2018-04-09T15:55:29Z,"The biggest new feature in this release is the ability to sort by column. On the table page the column headers can now be clicked to apply sort (or descending sort), or you can specify `?_sort=column` or `?_sort_desc=column` directly in the URL. You can try this feature out on [this fivethirtyeight data](https://fivethirtyeight.datasettes.com/fivethirtyeight/congress-age%2Fcongress-terms) about the ages of different US politicians. - `table_rows` =\> `table_rows_count`, `filtered_table_rows` =\> `filtered_table_rows_count` Renamed properties. Closes [\#194](https://github.com/simonw/datasette/issues/194) - New `sortable_columns` option in `metadata.json` to control sort options. You can now explicitly set which columns in a table can be used for sorting using the `_sort` and `_sort_desc` arguments using `metadata.json`: { ""databases"": { ""database1"": { ""tables"": { ""example_table"": { ""sortable_columns"": [ ""height"", ""weight"" ] } } } } } Refs [\#189](https://github.com/simonw/datasette/issues/189) - Column headers now link to sort/desc sort - refs [\#189](https://github.com/simonw/datasette/issues/189) - `_sort` and `_sort_desc` parameters for table views Allows for paginated sorted results based on a specified column. Refs [\#189](https://github.com/simonw/datasette/issues/189) - Total row count now correct even if `_next` applied - Use .custom\_sql() for \_group\_count implementation (refs [\#150](https://github.com/simonw/datasette/issues/150)) - Make HTML title more readable in query template ([\#180](https://github.com/simonw/datasette/issues/180)) \[Ryan Pitts\] - New `?_shape=objects/object/lists` param for JSON API ([\#192](https://github.com/simonw/datasette/issues/192)) New `_shape=` parameter replacing old `.jsono` extension Now instead of this: /database/table.jsono We use the `_shape` parameter like this: /database/table.json?_shape=objects Also introduced a new `_shape` called `object` which looks like this: /database/table.json?_shape=object Returning an object for the rows key: ... ""rows"": { ""pk1"": { ... }, ""pk2"": { ... } } Refs [\#122](https://github.com/simonw/datasette/issues/122) - Utility for writing test database fixtures to a .db file `python tests/fixtures.py /tmp/hello.db` This is useful for making a SQLite database of the test fixtures for interactive exploration. - Compound primary key `_next=` now plays well with extra filters Closes [\#190](https://github.com/simonw/datasette/issues/190) - Fixed bug with keyset pagination over compound primary keys Refs [\#190](https://github.com/simonw/datasette/issues/190) - Database/Table views inherit `source/license/source_url/license_url` metadata If you set the `source_url/license_url/source/license` fields in your root metadata those values will now be inherited all the way down to the database and table templates. The `title/description` are NOT inherited. Also added unit tests for the HTML generated by the metadata. Refs [\#185](https://github.com/simonw/datasette/issues/185) - Add metadata, if it exists, to heroku temp dir ([\#178](https://github.com/simonw/datasette/issues/178)) \[Tony Hirst\] - Initial documentation for pagination - Broke up test\_app into test\_api and test\_html - Fixed bug with .json path regular expression I had a table called `geojson` and it caused an exception because the regex was matching `.json` and not `\.json` - Deploy to Heroku with Python 3.6.3",107914493,datasette, https://github.com/simonw/datasette/releases/tag/0.16,10542772,MDc6UmVsZWFzZTEwNTQyNzcy,0.16,main,"Datasette 0.16: sort on mobile, better error handling",0,9599,simonw,0,2018-04-13T18:28:55Z,2018-04-13T21:10:53Z," - Better mechanism for handling errors; 404s for missing table/database New error mechanism closes [#193](https://github.com/simonw/datasette/issues/193) 404s for missing tables/databases closes [#184](https://github.com/simonw/datasette/issues/184) - long\_description in markdown for the new PyPI - Hide Spatialite system tables. \[Russ Garrett\] - Allow `explain select` / `explain query plan select` [#201](https://github.com/simonw/datasette/issues/201) - Datasette inspect now finds primary\_keys [#195](https://github.com/simonw/datasette/issues/195) - Ability to sort using form fields (for mobile portrait mode) [#199](https://github.com/simonw/datasette/issues/199) We now display sort options as a select box plus a descending checkbox, which means you can apply sort orders even in portrait mode on a mobile phone where the column headers are hidden.",107914493,datasette, https://github.com/simonw/datasette/releases/tag/0.18,10547491,MDc6UmVsZWFzZTEwNTQ3NDkx,0.18,main,Datasette 0.18: units,0,9599,simonw,0,2018-04-14T15:36:10Z,2018-04-14T15:45:11Z,"This release introduces [support for units](http://datasette.readthedocs.io/en/latest/metadata.html#specifying-units-for-a-column), contributed by Russ Garrett ([\#203](https://github.com/simonw/datasette/issues/203)). You can now optionally specify the units for specific columns using `metadata.json`. Once specified, units will be displayed in the HTML view of your table. They also become available for use in filters - if a column is configured with a unit of distance, you can request all rows where that column is less than 50 meters or more than 20 feet [for example](https://wtr-api.herokuapp.com/wtr-663ea99/license_frequency?frequency__gt=50GHz&height__lt=50ft). - Link foreign keys which don't have labels. \[Russ Garrett\] This renders unlabeled FKs as simple links. Also includes bonus fixes for two minor issues: - In foreign key link hrefs the primary key was escaped using HTML escaping rather than URL escaping. This broke some non-integer PKs. - Print tracebacks to console when handling 500 errors. - Fix SQLite error when loading rows with no incoming FKs. \[Russ Garrett\] This fixes `ERROR: conn=, 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/)",107914493,datasette, https://github.com/simonw/datasette/releases/tag/0.19,10575542,MDc6UmVsZWFzZTEwNTc1NTQy,0.19,main,Datasette 0.19: plugins preview,0,9599,simonw,0,2018-04-17T02:12:21Z,2018-04-17T02:21:51Z,"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.",107914493,datasette, https://github.com/simonw/datasette/releases/tag/0.20,10645022,MDc6UmVsZWFzZTEwNjQ1MDIy,0.20,main,Datasette 0.20: static assets and templates for plugins,0,9599,simonw,0,2018-04-20T14:36:29Z,2018-04-20T14:41:14Z,"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",107914493,datasette, https://github.com/simonw/datasette/releases/tag/0.21,10868113,MDc6UmVsZWFzZTEwODY4MTEz,0.21,main,"Datasette 0.21: New _shape=, new _size=, search within columns",0,9599,simonw,0,2018-05-05T23:15:38Z,2018-05-05T23:21:33Z,"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)",107914493,datasette, https://github.com/simonw/datasette/releases/tag/0.22,11087850,MDc6UmVsZWFzZTExMDg3ODUw,0.22,main,Datasette 0.22: Datasette Facets,0,9599,simonw,0,2018-05-20T23:41:47Z,2018-05-20T23:44:19Z,"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",107914493,datasette, https://github.com/simonw/datasette/releases/tag/0.22.1,11136605,MDc6UmVsZWFzZTExMTM2NjA1,0.22.1,main,Datasette 0.22.1,0,9599,simonw,0,2018-05-23T14:00:01Z,2018-05-23T14:04:17Z,"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]",107914493,datasette, https://github.com/simonw/datasette/releases/tag/0.23,11530498,MDc6UmVsZWFzZTExNTMwNDk4,0.23,main,"Datasette 0.23: CSV, SpatiaLite and more",0,9599,simonw,0,2018-06-18T15:11:57Z,2018-06-18T15:28:37Z,"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",107914493,datasette, https://github.com/simonw/datasette/releases/tag/0.23.1,11591352,MDc6UmVsZWFzZTExNTkxMzUy,0.23.1,main,Datasette 0.23.1,0,9599,simonw,0,2018-06-21T15:37:13Z,2018-06-21T16:02:44Z,"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 ",107914493,datasette, https://github.com/simonw/datasette/releases/tag/0.23.2,11825600,MDc6UmVsZWFzZTExODI1NjAw,0.23.2,main,Datasette 0.23.2,0,9599,simonw,0,2018-07-08T05:28:45Z,2018-07-08T05:41:38Z,"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",107914493,datasette, https://github.com/simonw/datasette/releases/tag/0.24,12080036,MDc6UmVsZWFzZTEyMDgwMDM2,0.24,main,Datasette 0.24,0,9599,simonw,0,2018-07-24T04:34:38Z,2018-07-24T16:51:29Z,"See full release notes here: http://datasette.readthedocs.io/en/latest/changelog.html#v0-24 ",107914493,datasette, https://github.com/simonw/datasette/releases/tag/0.25,12986637,MDc6UmVsZWFzZTEyOTg2NjM3,0.25,master,Datasette 0.25,0,9599,simonw,0,2018-09-19T17:48:12Z,2018-09-19T18:27:21Z,"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",107914493,datasette, https://github.com/simonw/datasette/releases/tag/0.25.1,14560294,MDc6UmVsZWFzZTE0NTYwMjk0,0.25.1,master,Datasette 0.25.1,0,9599,simonw,0,2018-11-05T06:31:41Z,2018-12-16T21:44:27Z,"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. ",107914493,datasette, https://github.com/simonw/datasette/releases/tag/0.25.2,14560304,MDc6UmVsZWFzZTE0NTYwMzA0,0.25.2,master,Datasette 0.25.2,0,9599,simonw,0,2018-12-16T21:26:37Z,2018-12-16T21:45:39Z,"* `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 ",107914493,datasette, https://github.com/simonw/datasette/releases/tag/0.26,14914779,MDc6UmVsZWFzZTE0OTE0Nzc5,0.26,master,Datasette 0.26,0,9599,simonw,0,2019-01-03T02:53:59Z,2019-01-10T21:41:00Z,[Datasette 0.26 release notes](https://datasette.readthedocs.io/en/stable/changelog.html#v0-26),107914493,datasette, https://github.com/simonw/sqlite-utils/releases/tag/0.7,15175633,MDc6UmVsZWFzZTE1MTc1NjMz,0.7,master,0.7,0,9599,simonw,0,2019-01-25T07:20:49Z,2019-01-25T07:27:57Z,Release notes are here: https://sqlite-utils.readthedocs.io/en/latest/changelog.html#v0-7,140912432,sqlite-utils, https://github.com/simonw/datasette/releases/tag/0.26.1,15206659,MDc6UmVsZWFzZTE1MjA2NjU5,0.26.1,master,Datasette 0.26.1,0,9599,simonw,0,2019-01-11T00:51:38Z,2019-01-28T01:50:45Z,Release notes: https://datasette.readthedocs.io/en/stable/changelog.html#v0-26-1,107914493,datasette, https://github.com/simonw/sqlite-utils/releases/tag/0.8,15208430,MDc6UmVsZWFzZTE1MjA4NDMw,0.8,master,0.8,0,9599,simonw,0,2019-01-26T02:13:29Z,2019-01-28T06:28:12Z,"Two new commands: `sqlite-utils csv` and `sqlite-utils json` https://sqlite-utils.readthedocs.io/en/latest/changelog.html#v0-8",140912432,sqlite-utils, https://github.com/simonw/sqlite-utils/releases/tag/0.9,15243253,MDc6UmVsZWFzZTE1MjQzMjUz,0.9,master,0.9,0,9599,simonw,0,2019-01-28T06:34:33Z,2019-01-29T15:30:48Z,https://sqlite-utils.readthedocs.io/en/latest/changelog.html#v0-9,140912432,sqlite-utils, https://github.com/simonw/datasette/releases/tag/0.27,15389392,MDc6UmVsZWFzZTE1Mzg5Mzky,0.27,master,Datasette 0.27,0,9599,simonw,0,2019-02-01T03:47:05Z,2019-02-06T05:10:20Z,https://datasette.readthedocs.io/en/stable/changelog.html#v0-27,107914493,datasette, https://github.com/simonw/sqlite-utils/releases/tag/0.10,15439849,MDc6UmVsZWFzZTE1NDM5ODQ5,0.10,master,0.10,0,9599,simonw,0,2019-02-07T05:17:52Z,2019-02-08T05:19:33Z,https://sqlite-utils.readthedocs.io/en/latest/changelog.html#v0-10,140912432,sqlite-utils, https://github.com/simonw/sqlite-utils/releases/tag/0.11,15731282,MDc6UmVsZWFzZTE1NzMxMjgy,0.11,master,0.11,0,9599,simonw,0,2019-02-08T05:23:50Z,2019-02-23T02:15:34Z,https://sqlite-utils.readthedocs.io/en/latest/changelog.html#v0-11,140912432,sqlite-utils, https://github.com/simonw/sqlite-utils/releases/tag/0.12,15731354,MDc6UmVsZWFzZTE1NzMxMzU0,0.12,master,0.12,0,9599,simonw,0,2019-02-23T02:22:28Z,2019-02-23T02:31:29Z,https://sqlite-utils.readthedocs.io/en/latest/changelog.html#v0-12,140912432,sqlite-utils, https://github.com/simonw/sqlite-utils/releases/tag/0.13,15739051,MDc6UmVsZWFzZTE1NzM5MDUx,0.13,master,0.13,0,9599,simonw,0,2019-02-24T06:54:43Z,2019-02-24T07:00:14Z,https://sqlite-utils.readthedocs.io/en/latest/changelog.html#v0-13,140912432,sqlite-utils, https://github.com/simonw/sqlite-utils/releases/tag/0.14,15744513,MDc6UmVsZWFzZTE1NzQ0NTEz,0.14,master,0.14,0,9599,simonw,0,2019-02-24T23:11:51Z,2019-02-24T23:15:16Z,https://sqlite-utils.readthedocs.io/en/latest/changelog.html#v0-14,140912432,sqlite-utils, https://github.com/simonw/datasette/releases/tag/0.28,17450414,MDc6UmVsZWFzZTE3NDUwNDE0,0.28,master,Datasette 0.28,0,9599,simonw,0,2019-05-19T21:37:49Z,2019-05-19T21:42:28Z,"[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.",107914493,datasette, https://github.com/simonw/sqlite-utils/releases/tag/1.0,17583581,MDc6UmVsZWFzZTE3NTgzNTgx,1.0,master,1.0,0,9599,simonw,0,2019-05-25T01:06:38Z,2019-05-25T01:19:21Z,https://sqlite-utils.readthedocs.io/en/latest/changelog.html#v1-0,140912432,sqlite-utils, https://github.com/simonw/sqlite-utils/releases/tag/1.0.1,17616531,MDc6UmVsZWFzZTE3NjE2NTMx,1.0.1,master,1.0.1,0,9599,simonw,0,2019-05-28T00:50:28Z,2019-05-28T00:51:21Z,https://sqlite-utils.readthedocs.io/en/latest/changelog.html#v1-0-1,140912432,sqlite-utils, https://github.com/simonw/sqlite-utils/releases/tag/1.1,17645877,MDc6UmVsZWFzZTE3NjQ1ODc3,1.1,master,1.1,0,9599,simonw,0,2019-05-29T05:12:03Z,2019-05-29T05:15:22Z,"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) ",140912432,sqlite-utils, https://github.com/simonw/sqlite-utils/releases/tag/1.2,17961871,MDc6UmVsZWFzZTE3OTYxODcx,1.2,master,1.2,0,9599,simonw,0,2019-06-13T06:39:59Z,2019-06-13T06:42:21Z,https://sqlite-utils.readthedocs.io/en/latest/changelog.html#v1-2,140912432,sqlite-utils, https://github.com/simonw/sqlite-utils/releases/tag/1.2.1,18132566,MDc6UmVsZWFzZTE4MTMyNTY2,1.2.1,master,1.2.1,0,9599,simonw,0,2019-06-21T00:01:24Z,2019-06-21T00:06:29Z,https://sqlite-utils.readthedocs.io/en/latest/changelog.html#v1-2-1,140912432,sqlite-utils, https://github.com/simonw/sqlite-utils/releases/tag/1.2.2,18226656,MDc6UmVsZWFzZTE4MjI2NjU2,1.2.2,master,1.2.2,0,9599,simonw,0,2019-06-26T04:20:55Z,2019-06-26T04:24:33Z,https://sqlite-utils.readthedocs.io/en/latest/changelog.html#v1-2-2,140912432,sqlite-utils, https://github.com/simonw/sqlite-utils/releases/tag/1.3,18307928,MDc6UmVsZWFzZTE4MzA3OTI4,1.3,master,1.3,0,9599,simonw,0,2019-06-29T06:32:36Z,2019-06-29T06:39:32Z,https://sqlite-utils.readthedocs.io/en/latest/changelog.html#v1-3,140912432,sqlite-utils, https://github.com/simonw/datasette/releases/tag/0.29,18461320,MDc6UmVsZWFzZTE4NDYxMzIw,0.29,master,Datasette 0.29,0,9599,simonw,0,2019-07-08T03:14:27Z,2019-07-08T03:43:13Z,"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.",107914493,datasette, https://github.com/simonw/datasette/releases/tag/0.29.1,18598489,MDc6UmVsZWFzZTE4NTk4NDg5,0.29.1,master,0.29.1,0,9599,simonw,0,2019-07-11T16:17:55Z,2019-07-14T01:43:44Z,"- 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",107914493,datasette, https://github.com/simonw/sqlite-utils/releases/tag/1.6,18723202,MDc6UmVsZWFzZTE4NzIzMjAy,1.6,master,1.6,0,9599,simonw,0,2019-07-19T04:51:21Z,2019-07-19T05:36:48Z,"- `sqlite-utils insert` can now accept TSV data via the new `--tsv` option (#41) ",140912432,sqlite-utils, https://github.com/dogsheep/healthkit-to-sqlite/releases/tag/0.1,18750551,MDc6UmVsZWFzZTE4NzUwNTUx,0.1,master,Initial release,0,9599,simonw,0,2019-07-20T06:22:57Z,2019-07-20T16:43:09Z,,197882382,healthkit-to-sqlite, https://github.com/dogsheep/healthkit-to-sqlite/releases/tag/0.2,18750559,MDc6UmVsZWFzZTE4NzUwNTU5,0.2,master,0.2,0,9599,simonw,0,2019-07-20T16:44:05Z,2019-07-20T16:44:41Z,Fixed a bug where duplicate records could crash the import.,197882382,healthkit-to-sqlite, https://github.com/dogsheep/healthkit-to-sqlite/releases/tag/0.3,18762495,MDc6UmVsZWFzZTE4NzYyNDk1,0.3,master,0.3,0,9599,simonw,0,2019-07-22T03:31:54Z,2019-07-22T03:33:32Z,"- 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",197882382,healthkit-to-sqlite, https://github.com/dogsheep/healthkit-to-sqlite/releases/tag/0.3.1,18823859,MDc6UmVsZWFzZTE4ODIzODU5,0.3.1,master,0.3.1,0,9599,simonw,0,2019-07-24T06:33:22Z,2019-07-24T06:38:36Z,Uses less RAM - see #7 ,197882382,healthkit-to-sqlite, https://github.com/dogsheep/healthkit-to-sqlite/releases/tag/0.3.2,18881253,MDc6UmVsZWFzZTE4ODgxMjUz,0.3.2,master,0.3.2,0,9599,simonw,0,2019-07-26T06:02:30Z,2019-07-26T06:12:12Z,Fix for #9 - Too many SQL variables bug,197882382,healthkit-to-sqlite, https://github.com/simonw/sqlite-utils/releases/tag/1.7,18911392,MDc6UmVsZWFzZTE4OTExMzky,1.7,master,1.7,0,9599,simonw,0,2019-07-24T06:50:41Z,2019-07-28T12:03:21Z,https://sqlite-utils.readthedocs.io/en/latest/changelog.html#v1-7,140912432,sqlite-utils, https://github.com/simonw/sqlite-utils/releases/tag/1.7.1,18911404,MDc6UmVsZWFzZTE4OTExNDA0,1.7.1,master,1.7.1,0,9599,simonw,0,2019-07-28T12:00:51Z,2019-07-28T12:05:36Z,https://sqlite-utils.readthedocs.io/en/latest/changelog.html#v1-7-1,140912432,sqlite-utils, https://github.com/dogsheep/swarm-to-sqlite/releases/tag/0.1,19669553,MDc6UmVsZWFzZTE5NjY5NTUz,0.1,master,0.1,0,9599,simonw,0,2019-08-31T02:46:58Z,2019-08-31T02:58:32Z,First usable release.,205429375,swarm-to-sqlite, https://github.com/simonw/datasette/releases/tag/0.29.2,19704661,MDc6UmVsZWFzZTE5NzA0NjYx,0.29.2,master,0.29.2,0,9599,simonw,0,2019-07-14T03:04:05Z,2019-09-03T00:33:35Z,"* 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",107914493,datasette, https://github.com/simonw/sqlite-utils/releases/tag/1.8,19704736,MDc6UmVsZWFzZTE5NzA0NzM2,1.8,master,1.8,0,9599,simonw,0,2019-07-28T15:41:42Z,2019-09-03T00:45:42Z,https://sqlite-utils.readthedocs.io/en/stable/changelog.html#v1-8,140912432,sqlite-utils, https://github.com/simonw/sqlite-utils/releases/tag/1.9,19704739,MDc6UmVsZWFzZTE5NzA0NzM5,1.9,master,1.9,0,9599,simonw,0,2019-08-04T03:35:30Z,2019-09-03T00:46:02Z,https://sqlite-utils.readthedocs.io/en/stable/changelog.html#v1-9,140912432,sqlite-utils, https://github.com/simonw/sqlite-utils/releases/tag/1.10,19704743,MDc6UmVsZWFzZTE5NzA0NzQz,1.10,master,1.10,0,9599,simonw,0,2019-08-23T12:24:04Z,2019-09-03T00:46:27Z,https://sqlite-utils.readthedocs.io/en/stable/changelog.html#v1-10,140912432,sqlite-utils, https://github.com/simonw/sqlite-utils/releases/tag/1.11,19704889,MDc6UmVsZWFzZTE5NzA0ODg5,1.11,master,1.11,0,9599,simonw,0,2019-09-03T00:58:41Z,2019-09-03T01:03:27Z,https://sqlite-utils.readthedocs.io/en/stable/changelog.html#v1-11,140912432,sqlite-utils, https://github.com/dogsheep/twitter-to-sqlite/releases/tag/0.1a,19763160,MDc6UmVsZWFzZTE5NzYzMTYw,0.1a,master,Alpha release,0,9599,simonw,0,2019-09-03T20:42:38Z,2019-09-04T22:08:18Z,,206156866,twitter-to-sqlite, https://github.com/dogsheep/twitter-to-sqlite/releases/tag/0.2,19763185,MDc6UmVsZWFzZTE5NzYzMTg1,0.2,master,0.2,0,9599,simonw,0,2019-09-04T21:17:34Z,2019-09-04T22:09:46Z,Full text search for tweets table,206156866,twitter-to-sqlite, https://github.com/dogsheep/twitter-to-sqlite/releases/tag/0.3,19763200,MDc6UmVsZWFzZTE5NzYzMjAw,0.3,master,0.3,0,9599,simonw,0,2019-09-04T22:10:07Z,2019-09-04T22:11:01Z,"Extract places and media into separate tables Demo: https://twitter-to-sqlite-demo.now.sh/",206156866,twitter-to-sqlite, https://github.com/dogsheep/twitter-to-sqlite/releases/tag/0.4,19865891,MDc6UmVsZWFzZTE5ODY1ODkx,0.4,master,0.4,0,9599,simonw,0,2019-09-09T22:41:25Z,2019-09-09T22:43:05Z,"* 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",206156866,twitter-to-sqlite, https://github.com/dogsheep/twitter-to-sqlite/releases/tag/0.5,19889174,MDc6UmVsZWFzZTE5ODg5MTc0,0.5,master,0.5,0,9599,simonw,0,2019-09-10T17:38:46Z,2019-09-10T17:39:47Z,* Added `followers-ids` and `friends-ids` subcommands,206156866,twitter-to-sqlite, https://github.com/dogsheep/github-to-sqlite/releases/tag/0.1.1,19993251,MDc6UmVsZWFzZTE5OTkzMjUx,0.1.1,master,0.1.1,0,9599,simonw,0,2019-09-14T19:19:33Z,2019-09-14T19:42:08Z,* Fix bug in authentication handling code,207052882,github-to-sqlite, https://github.com/dogsheep/github-to-sqlite/releases/tag/0.2,19993751,MDc6UmVsZWFzZTE5OTkzNzUx,0.2,master,0.2,0,9599,simonw,0,2019-09-14T21:31:17Z,2019-09-14T21:32:34Z,"* Added the `github-to-sqlite starred` command for retrieving starred repos, #1 ",207052882,github-to-sqlite, https://github.com/dogsheep/github-to-sqlite/releases/tag/0.3,19993820,MDc6UmVsZWFzZTE5OTkzODIw,0.3,master,0.3,0,9599,simonw,0,2019-09-14T21:49:27Z,2019-09-14T21:50:01Z,"* `license` is now extracted from the `repos` table into a separate `licenses` table with a foreign key, #2 ",207052882,github-to-sqlite, https://github.com/dogsheep/github-to-sqlite/releases/tag/0.4,20031553,MDc6UmVsZWFzZTIwMDMxNTUz,0.4,master,0.4,0,9599,simonw,0,2019-09-17T00:18:37Z,2019-09-17T00:19:42Z,"* Added `github-to-sqlite repos` command, #3 ",207052882,github-to-sqlite, https://github.com/dogsheep/genome-to-sqlite/releases/tag/0.1,20114205,MDc6UmVsZWFzZTIwMTE0MjA1,0.1,master,0.1,0,9599,simonw,0,2019-09-19T15:38:10Z,2019-09-19T15:41:17Z,First release,209590345,genome-to-sqlite, https://github.com/dogsheep/twitter-to-sqlite/releases/tag/0.6,20497186,MDc6UmVsZWFzZTIwNDk3MTg2,0.6,master,0.6,0,9599,simonw,0,2019-10-06T04:49:17Z,2019-10-06T04:52:18Z,"* 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",206156866,twitter-to-sqlite, https://github.com/dogsheep/twitter-to-sqlite/releases/tag/0.7,20504543,MDc6UmVsZWFzZTIwNTA0NTQz,0.7,master,0.7,0,9599,simonw,0,2019-10-07T00:32:08Z,2019-10-07T00:33:28Z,* New `statuses-lookup` command for bulk fetching tweets by their IDs - #13 ,206156866,twitter-to-sqlite, https://github.com/dogsheep/pocket-to-sqlite/releases/tag/0.1,20506896,MDc6UmVsZWFzZTIwNTA2ODk2,0.1,master,0.1,0,9599,simonw,0,2019-10-07T05:07:37Z,2019-10-07T05:18:20Z,Initial release,213286752,pocket-to-sqlite, https://github.com/dogsheep/twitter-to-sqlite/releases/tag/0.8,20631452,MDc6UmVsZWFzZTIwNjMxNDUy,0.8,master,0.8,0,9599,simonw,0,2019-10-11T06:45:21Z,2019-10-11T06:46:52Z,* 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).,206156866,twitter-to-sqlite, https://github.com/dogsheep/twitter-to-sqlite/releases/tag/0.9,20646519,MDc6UmVsZWFzZTIwNjQ2NTE5,0.9,master,0.9,0,9599,simonw,0,2019-10-11T16:55:10Z,2019-10-11T16:57:25Z,"* 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",206156866,twitter-to-sqlite, https://github.com/dogsheep/github-to-sqlite/releases/tag/0.5,20663605,MDc6UmVsZWFzZTIwNjYzNjA1,0.5,master,0.5,0,9599,simonw,0,2019-10-13T05:28:24Z,2019-10-13T05:30:05Z,"* 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",207052882,github-to-sqlite, https://github.com/dogsheep/twitter-to-sqlite/releases/tag/0.10,20721291,MDc6UmVsZWFzZTIwNzIxMjkx,0.10,master,0.10,0,9599,simonw,0,2019-10-15T18:53:53Z,2019-10-15T18:56:09Z,"* favorites command now populates `favorited_by` table - #14 * favorites `--stop_after` option - #20 * Store unescaped `full_text` of Tweet - #21 ",206156866,twitter-to-sqlite, https://github.com/dogsheep/twitter-to-sqlite/releases/tag/0.11,20754277,MDc6UmVsZWFzZTIwNzU0Mjc3,0.11,master,0.11,0,9599,simonw,0,2019-10-16T19:37:10Z,2019-10-16T19:38:42Z,"* 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 ",206156866,twitter-to-sqlite, https://github.com/dogsheep/swarm-to-sqlite/releases/tag/0.2,20755954,MDc6UmVsZWFzZTIwNzU1OTU0,0.2,master,0.2,0,9599,simonw,0,2019-10-16T20:40:25Z,2019-10-16T20:40:55Z,"* Added --since option, closes #3 ",205429375,swarm-to-sqlite, https://github.com/dogsheep/twitter-to-sqlite/releases/tag/0.11.1,20758324,MDc6UmVsZWFzZTIwNzU4MzI0,0.11.1,master,0.11.1,0,9599,simonw,0,2019-10-16T19:46:35Z,2019-10-16T22:31:51Z,"* Fix bugs running `home-timeline --since` from scratch. If tables were missing, script would throw an error.",206156866,twitter-to-sqlite, https://github.com/dogsheep/twitter-to-sqlite/releases/tag/0.12,20783590,MDc6UmVsZWFzZTIwNzgzNTkw,0.12,master,0.12,0,9599,simonw,0,2019-10-17T17:57:33Z,2019-10-17T18:00:28Z,"* 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",206156866,twitter-to-sqlite, https://github.com/simonw/datasette/releases/tag/0.29.3,20795250,MDc6UmVsZWFzZTIwNzk1MjUw,0.29.3,master,0.29.3,0,9599,simonw,0,2019-09-03T00:40:53Z,2019-10-18T05:24:54Z,https://datasette.readthedocs.io/en/stable/changelog.html#v0-29-3,107914493,datasette, https://github.com/dogsheep/twitter-to-sqlite/releases/tag/0.13,21073645,MDc6UmVsZWFzZTIxMDczNjQ1,0.13,master,0.13,0,9599,simonw,0,2019-10-30T02:20:09Z,2019-10-30T02:22:30Z,- New `mentions-timeline` command (#26),206156866,twitter-to-sqlite, https://github.com/simonw/datasette/releases/tag/0.30,21098052,MDc6UmVsZWFzZTIxMDk4MDUy,0.30,master,0.30,0,9599,simonw,0,2019-10-19T01:08:04Z,2019-10-30T18:51:30Z,https://datasette.readthedocs.io/en/stable/changelog.html#v0-30,107914493,datasette, https://github.com/simonw/datasette/releases/tag/0.30.1,21162064,MDc6UmVsZWFzZTIxMTYyMDY0,0.30.1,master,0.30.1,0,9599,simonw,0,2019-10-30T19:00:21Z,2019-11-02T00:06:02Z,https://datasette.readthedocs.io/en/stable/changelog.html#v0-30-1,107914493,datasette, https://github.com/simonw/datasette/releases/tag/0.30.2,21169835,MDc6UmVsZWFzZTIxMTY5ODM1,0.30.2,master,0.30.2,0,9599,simonw,0,2019-11-02T23:12:46Z,2019-11-02T23:33:13Z,https://datasette.readthedocs.io/en/latest/changelog.html#v0-30-2,107914493,datasette, https://github.com/dogsheep/twitter-to-sqlite/releases/tag/0.14,21180989,MDc6UmVsZWFzZTIxMTgwOTg5,0.14,master,0.14,0,9599,simonw,0,2019-11-04T05:32:37Z,2019-11-04T05:33:56Z,"* `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.",206156866,twitter-to-sqlite, https://github.com/simonw/sqlite-utils/releases/tag/1.12,21276745,MDc6UmVsZWFzZTIxMjc2NzQ1,1.12,master,1.12,0,9599,simonw,0,2019-11-04T16:28:52Z,2019-11-07T05:00:24Z,https://sqlite-utils.readthedocs.io/en/latest/changelog.html#v1-12,140912432,sqlite-utils, https://github.com/simonw/sqlite-utils/releases/tag/1.12.1,21276749,MDc6UmVsZWFzZTIxMjc2NzQ5,1.12.1,master,1.12.1,0,9599,simonw,0,2019-11-07T04:58:47Z,2019-11-07T05:00:55Z,https://sqlite-utils.readthedocs.io/en/latest/changelog.html#v1-12-1,140912432,sqlite-utils, https://github.com/dogsheep/healthkit-to-sqlite/releases/tag/0.4,21306693,MDc6UmVsZWFzZTIxMzA2Njkz,0.4,master,0.4,0,9599,simonw,0,2019-11-08T01:19:23Z,2019-11-08T01:19:51Z,* Fixed workout latitude/longitude points import for iOS 13 - #10,197882382,healthkit-to-sqlite, https://github.com/dogsheep/twitter-to-sqlite/releases/tag/0.15,21342008,MDc6UmVsZWFzZTIxMzQyMDA4,0.15,master,0.15,0,9599,simonw,0,2019-11-09T20:12:32Z,2019-11-09T20:13:07Z,"- Import command no longer fails on empty files - #29 - Fixed bug in `followers` command - #30 - `following` table now has indexes - #28",206156866,twitter-to-sqlite, https://github.com/dogsheep/github-to-sqlite/releases/tag/0.6,21354706,MDc6UmVsZWFzZTIxMzU0NzA2,0.6,master,0.6,0,9599,simonw,0,2019-11-11T05:31:46Z,2019-11-11T05:34:06Z,"- 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",207052882,github-to-sqlite, https://github.com/simonw/datasette/releases/tag/0.31,21426008,MDc6UmVsZWFzZTIxNDI2MDA4,0.31,master,Datasette 0.31,0,9599,simonw,0,2019-11-12T05:33:51Z,2019-11-13T02:16:15Z,"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",107914493,datasette, https://github.com/simonw/datasette/releases/tag/0.31.1,21426299,MDc6UmVsZWFzZTIxNDI2Mjk5,0.31.1,master,0.31.1,0,9599,simonw,0,2019-11-13T02:18:39Z,2019-11-13T02:40:53Z,"- 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",107914493,datasette, https://github.com/simonw/datasette/releases/tag/0.31.2,21449006,MDc6UmVsZWFzZTIxNDQ5MDA2,0.31.2,master,0.31.2,0,9599,simonw,0,2019-11-13T16:48:36Z,2019-11-13T17:38:59Z,"- 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",107914493,datasette, https://github.com/simonw/datasette/releases/tag/0.32,21492068,MDc6UmVsZWFzZTIxNDkyMDY4,0.32,master,Datasette 0.32,0,9599,simonw,0,2019-11-14T23:20:21Z,2019-11-14T23:42:14Z,"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",107914493,datasette, https://github.com/simonw/datasette/releases/tag/0.33,22415542,MDc6UmVsZWFzZTIyNDE1NTQy,0.33,master,Datasette 0.33,0,9599,simonw,0,2019-12-22T16:27:04Z,2019-12-22T16:43:31Z,"* `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",107914493,datasette, https://github.com/simonw/sqlite-utils/releases/tag/2.0,22509033,MDc6UmVsZWFzZTIyNTA5MDMz,2.0,master,2.0,0,9599,simonw,0,2019-12-30T06:18:58Z,2019-12-30T06:26:09Z,"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.",140912432,sqlite-utils, https://github.com/simonw/sqlite-utils/releases/tag/2.0.1,22603380,MDc6UmVsZWFzZTIyNjAzMzgw,2.0.1,master,2.0.1,0,9599,simonw,0,2020-01-05T17:23:02Z,2020-01-05T17:33:15Z,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).,140912432,sqlite-utils, https://github.com/simonw/datasette/releases/tag/0.34,23239304,MDc6UmVsZWFzZTIzMjM5MzA0,0.34,master,Datasette 0.34,0,9599,simonw,0,2020-01-30T00:09:01Z,2020-01-30T00:29:21Z,"- `_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 ",107914493,datasette, https://github.com/simonw/sqlite-utils/releases/tag/2.1,23274412,MDc6UmVsZWFzZTIzMjc0NDEy,2.1,master,2.1,0,9599,simonw,0,2020-01-31T00:25:20Z,2020-01-31T00:30:40Z,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).,140912432,sqlite-utils, https://github.com/simonw/datasette/releases/tag/0.35,23395622,MDc6UmVsZWFzZTIzMzk1NjIy,0.35,master,Datasette 0.35,0,9599,simonw,0,2020-02-05T02:17:47Z,2020-02-05T02:32:34Z,"* 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",107914493,datasette, https://github.com/simonw/sqlite-utils/releases/tag/2.2,23471014,MDc6UmVsZWFzZTIzNDcxMDE0,2.2,master,2.2,0,9599,simonw,0,2020-02-01T21:59:08Z,2020-02-07T07:18:12Z,"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.",140912432,sqlite-utils, https://github.com/simonw/sqlite-utils/releases/tag/2.2.1,23471112,MDc6UmVsZWFzZTIzNDcxMTEy,2.2.1,master,2.2.1,0,9599,simonw,0,2020-02-07T07:20:03Z,2020-02-07T07:24:54Z,"Fixed a bug where `.upsert(..., hash_id=""pk"")` threw an error (#84).",140912432,sqlite-utils, https://github.com/dogsheep/twitter-to-sqlite/releases/tag/0.16,23471420,MDc6UmVsZWFzZTIzNDcxNDIw,0.16,master,0.16,0,9599,simonw,0,2020-02-07T07:42:45Z,2020-02-07T07:44:53Z,New `friends` command for importing accounts that a specific user follows.,206156866,twitter-to-sqlite, https://github.com/simonw/sqlite-utils/releases/tag/2.3,23508352,MDc6UmVsZWFzZTIzNTA4MzUy,2.3,master,2.3,0,9599,simonw,0,2020-02-08T23:56:16Z,2020-02-08T23:59:20Z,"`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)",140912432,sqlite-utils, https://github.com/simonw/sqlite-utils/releases/tag/2.3.1,23556494,MDc6UmVsZWFzZTIzNTU2NDk0,2.3.1,master,2.3.1,0,9599,simonw,0,2020-02-11T05:52:23Z,2020-02-11T05:59:43Z,`table.create_index()` now works for columns that contain spaces. (#85),140912432,sqlite-utils, https://github.com/simonw/datasette/releases/tag/0.36,23896184,MDc6UmVsZWFzZTIzODk2MTg0,0.36,master,Datasette 0.36,0,9599,simonw,0,2020-02-22T03:04:46Z,2020-02-22T03:24:50Z,"* The `datasette` object passed to plugins now has API documentation: [Datasette class](https://datasette.readthedocs.io/en/latest/datasette.html#datasette). (#576) * New methods on `datasette`: `.add_database()` and `.remove_database()` - [documentation](https://datasette.readthedocs.io/en/latest/datasette.html#datasette-add-database). (#671) * `prepare_connection()` plugin hook now takes optional `datasette` and `database` arguments - [prepare_connection(conn, database, datasette)](https://datasette.readthedocs.io/en/latest/plugins.html#plugin-hook-prepare-connection). (#678) * Added three new plugins and one new conversion tool to the [The Datasette Ecosystem](https://datasette.readthedocs.io/en/latest/ecosystem.html#ecosystem). https://datasette.readthedocs.io/en/latest/changelog.html#v0-36",107914493,datasette, https://github.com/simonw/datasette/releases/tag/0.37,23986460,MDc6UmVsZWFzZTIzOTg2NDYw,0.37,master,Datasette 0.37,0,9599,simonw,0,2020-02-26T01:22:02Z,2020-02-26T03:44:07Z,"* Plugins now have a supported mechanism for writing to a database, using the new `.execute_write()` and `.execute_write_fn()` methods. [Documentation](https://datasette.readthedocs.io/en/stable/internals.html#database-execute-write). (#682) * Immutable databases that have had their rows counted using the `inspect` command now use the calculated count more effectively - thanks, Kevin Keogh. (#666) * `--reload` no longer restarts the server if a database file is modified, unless that database was opened immutable mode with `-i`. (#494) * New `?_searchmode=raw` option turns off escaping for FTS queries in `?_search=` allowing full use of SQLite’s [FTS5 query syntax](https://www.sqlite.org/fts5.html#full_text_query_syntax). (#676) ",107914493,datasette, https://github.com/simonw/sqlite-utils/releases/tag/2.4,24026132,MDc6UmVsZWFzZTI0MDI2MTMy,2.4,master,2.4,0,9599,simonw,0,2020-02-27T04:55:58Z,2020-02-27T04:58:25Z,"* `table.disable_fts()` can now be used to remove FTS tables and triggers that were created using `table.enable_fts(...)`. (#88) * The `sqlite-utils disable-fts` command can be used to remove FTS tables and triggers from the command-line. (#88) * Trying to create table columns with square braces ([ or ]) in the name now raises an error. (#86) * Subclasses of `dict`, `list` and `tuple` are now detected as needing a JSON column. (#87) ",140912432,sqlite-utils, https://github.com/simonw/datasette/releases/tag/0.37.1,24154697,MDc6UmVsZWFzZTI0MTU0Njk3,0.37.1,master,Datasette 0.37.1,0,9599,simonw,0,2020-03-03T03:43:08Z,2020-03-03T03:46:17Z,"* Don’t attempt to count table rows to display on the index page for databases > 100MB. (#688) * Print exceptions if they occur in the write thread rather than silently swallowing them. * Handle the possibility of `scope[""path""]` being a string rather than bytes * Better documentation for the [extra_template_vars(template, database, table, view_name, request, datasette)](https://datasette.readthedocs.io/en/stable/plugins.html#plugin-hook-extra-template-vars) plugin hook. ",107914493,datasette, https://github.com/simonw/datasette/releases/tag/0.38,24330942,MDc6UmVsZWFzZTI0MzMwOTQy,0.38,master,0.38,0,9599,simonw,0,2020-03-08T23:26:50Z,2020-03-08T23:42:36Z,"* The [Docker build](https://hub.docker.com/r/datasetteproject/datasette) of Datasette now uses SQLite 3.31.1, upgraded from 3.26. (#695) * `datasette publish cloudrun` now accepts an optional `--memory=2Gi` flag for setting the Cloud Run allocated memory to a value other than the default (256Mi). (#694) * Fixed bug where templates that shipped with plugins were sometimes not being correctly loaded. (#697) ",107914493,datasette, https://github.com/dogsheep/github-to-sqlite/releases/tag/0.7,24410477,MDc6UmVsZWFzZTI0NDEwNDc3,0.7,master,0.7,0,9599,simonw,0,2020-03-11T02:47:32Z,2020-03-11T02:48:32Z,* New `github-to-sqlite commits my.db dogsheep/github-to-sqlite` command. #17,207052882,github-to-sqlite, https://github.com/simonw/sqlite-utils/releases/tag/2.4.1,24530295,MDc6UmVsZWFzZTI0NTMwMjk1,2.4.1,master,2.4.1,0,9599,simonw,0,2020-03-02T06:12:21Z,2020-03-14T20:06:08Z,"* `table.enable_fts()` now works with columns that contain spaces. (#90) ",140912432,sqlite-utils, https://github.com/simonw/sqlite-utils/releases/tag/2.4.2,24530387,MDc6UmVsZWFzZTI0NTMwMzg3,2.4.2,master,2.4.2,0,9599,simonw,0,2020-03-14T20:09:56Z,2020-03-14T20:13:18Z,"* `table.column_dicts` now works with all column types - previously it would throw errors on types other than `TEXT`, `BLOB`, `INTEGER` or `FLOAT`. (#92) * Documentation for `NotFoundError` thrown by `table.get(pk)` - see [Retrieving a specific record](https://sqlite-utils.readthedocs.io/en/latest/python-api.html#python-api-get). ",140912432,sqlite-utils, https://github.com/dogsheep/twitter-to-sqlite/releases/tag/0.17,24722801,MDc6UmVsZWFzZTI0NzIyODAx,0.17,master,0.17,0,9599,simonw,0,2020-03-20T19:22:37Z,2020-03-20T19:23:40Z,"* Upgraded to latest `sqlite-utils` (currently 2.4.2) * This fixed a bug with `user-timeline` - #34",206156866,twitter-to-sqlite, https://github.com/dogsheep/twitter-to-sqlite/releases/tag/0.18,24724394,MDc6UmVsZWFzZTI0NzI0Mzk0,0.18,master,0.18,0,9599,simonw,0,2020-03-20T20:16:46Z,2020-03-20T20:19:42Z,"* `twitter-to-sqlite user-timeline` command now accepts `--sql` and `--attach` and `--ids` options, and can also accept multiple screen names or user IDs as command arguments. #35",206156866,twitter-to-sqlite, https://github.com/dogsheep/twitter-to-sqlite/releases/tag/0.19,24728163,MDc6UmVsZWFzZTI0NzI4MTYz,0.19,master,0.19,0,9599,simonw,0,2020-03-20T23:14:02Z,2020-03-20T23:16:53Z,"* The `twitter-to-sqlite friends` and `twitter-to-sqlite followers` commands now accept the `--sql` and `--attach` options. #36 * Improved the display of the progress bar for the `user-timeline` command. #38",206156866,twitter-to-sqlite, https://github.com/dogsheep/hacker-news-to-sqlite/releases/tag/0.1a,24731201,MDc6UmVsZWFzZTI0NzMxMjAx,0.1a,master,0.1a,0,9599,simonw,0,2020-03-21T04:19:07Z,2020-03-21T04:26:28Z,* `user` and `trees` commands.,248903544,hacker-news-to-sqlite, https://github.com/dogsheep/hacker-news-to-sqlite/releases/tag/0.2a,24738954,MDc6UmVsZWFzZTI0NzM4OTU0,0.2a,master,0.2a,0,9599,simonw,0,2020-03-21T15:27:15Z,2020-03-21T19:46:58Z,Compatibility with sqlite-utils 1.x,248903544,hacker-news-to-sqlite, https://github.com/dogsheep/hacker-news-to-sqlite/releases/tag/0.3,24738963,MDc6UmVsZWFzZTI0NzM4OTYz,0.3,master,0.3,0,9599,simonw,0,2020-03-21T19:46:08Z,2020-03-21T19:47:36Z,First non-alpha release. Now configures full-text search for the `users` and `items` tables. #1,248903544,hacker-news-to-sqlite, https://github.com/dogsheep/hacker-news-to-sqlite/releases/tag/0.3.1,24740687,MDc6UmVsZWFzZTI0NzQwNjg3,0.3.1,master,0.3.1,0,9599,simonw,0,2020-03-21T22:39:34Z,2020-03-21T22:41:16Z,Added documentation on [Browsing your data with Datasette](https://github.com/dogsheep/hacker-news-to-sqlite/blob/0.3.1/README.md#browsing-your-data-with-datasette).,248903544,hacker-news-to-sqlite, https://github.com/simonw/sqlite-utils/releases/tag/2.4.3,24786773,MDc6UmVsZWFzZTI0Nzg2Nzcz,2.4.3,master,2.4.3,0,9599,simonw,0,2020-03-23T19:58:55Z,2020-03-23T20:00:25Z,* Column type suggestion code is no longer confused by null values. (#94),140912432,sqlite-utils, https://github.com/simonw/sqlite-utils/releases/tag/2.4.4,24787721,MDc6UmVsZWFzZTI0Nzg3NzIx,2.4.4,master,2.4.4,0,9599,simonw,0,2020-03-23T20:32:09Z,2020-03-23T20:34:18Z,* Fixed bug where columns with only null values were not correctly created. (#95),140912432,sqlite-utils, https://github.com/dogsheep/github-to-sqlite/releases/tag/1.0,24792596,MDc6UmVsZWFzZTI0NzkyNTk2,1.0,master,1.0,0,9599,simonw,0,2020-03-24T00:07:47Z,2020-03-24T00:11:51Z,"* Full-text search is configured for more tables. #19 * Release assets are now pulled out into a separate `assets` table. #15 * Now depends on sqlite-utils 2.x. #20 * Commit raw authors are now used to populate a new `raw_authors` able. #18 * New live demo at https://github-to-sqlite.dogsheep.net/ #13 * GitHub API errors are now raised as Pyton exceptions. #21 * Fixed bug running `commits` against repos with no commits. #22",207052882,github-to-sqlite, https://github.com/dogsheep/inaturalist-to-sqlite/releases/tag/0.2,24793032,MDc6UmVsZWFzZTI0NzkzMDMy,0.2,master,0.2,0,9599,simonw,0,2020-03-24T00:35:44Z,2020-03-24T00:36:40Z,"* Upgraded to `sqlite-utils` 2.x * First non-alpha release",206202864,inaturalist-to-sqlite, https://github.com/simonw/datasette/releases/tag/0.39,24836140,MDc6UmVsZWFzZTI0ODM2MTQw,0.39,master,0.39,0,9599,simonw,0,2020-03-25T04:02:37Z,2020-03-25T04:11:35Z,"* New [base_url](https://datasette.readthedocs.io/en/latest/config.html#config-base-url) configuration setting for serving up the correct links while running Datasette under a different URL prefix. (#394) * New metadata settings `""sort""` and `""sort_desc""` for setting the default sort order for a table. See [Setting a default sort order](https://datasette.readthedocs.io/en/latest/metadata.html#metadata-default-sort). (#702) * Sort direction arrow now displays by default on the primary key. This means you only have to click once (not twice) to sort in reverse order. (#677) * New `await Request(scope, receive).post_vars()` method for accessing POST form variables. (#700) * Plugin hooks documentation now links to example uses of each plugin. (#709) ",107914493,datasette, https://github.com/dogsheep/pocket-to-sqlite/releases/tag/0.2,24950669,MDc6UmVsZWFzZTI0OTUwNjY5,0.2,master,0.2,0,9599,simonw,0,2020-03-27T22:23:16Z,2020-03-27T22:26:30Z,"* Defaults to only retrieving updated items, unless you use `--all`. #2 * Now displays a progress bar for initial data import and `--all`. * Data is now fetched 500 items at a time using API pagination. #1 * Now depends on `sqlite-utils 2.x`. * `auth.json` now uses `pocket_` prefix on each stored key. #4",213286752,pocket-to-sqlite, https://github.com/dogsheep/healthkit-to-sqlite/releases/tag/0.5,24953710,MDc6UmVsZWFzZTI0OTUzNzEw,0.5,master,0.5,0,9599,simonw,0,2020-03-28T01:50:51Z,2020-03-28T01:55:19Z,* Upgraded to latest sqlite-utils,197882382,healthkit-to-sqlite, https://github.com/dogsheep/swarm-to-sqlite/releases/tag/0.3,24954042,MDc6UmVsZWFzZTI0OTU0MDQy,0.3,master,0.3,0,9599,simonw,0,2020-03-28T02:25:29Z,2020-03-28T02:28:35Z,* Upgraded to sqlite-utils 2.x,205429375,swarm-to-sqlite, https://github.com/dogsheep/swarm-to-sqlite/releases/tag/0.3.1,24954053,MDc6UmVsZWFzZTI0OTU0MDUz,0.3.1,master,0.3.1,0,9599,simonw,0,2020-03-28T02:29:41Z,2020-03-28T02:30:10Z,"* Fixed bug with very old checkins that were missing their source - thanks, @mfa! #6",205429375,swarm-to-sqlite, https://github.com/dogsheep/twitter-to-sqlite/releases/tag/0.20,25070766,MDc6UmVsZWFzZTI1MDcwNzY2,0.20,master,0.20,0,9599,simonw,0,2020-04-01T04:18:17Z,2020-04-01T04:18:53Z,"* Reworked how `--since` works to fix a bug spotted in #39. The most recently seen tweet ID for various commands is now stored in a new `since_ids` table. * New feature: the friends, followers and listed counts for each user are now stored in a `count_history` table and updated any time we spot that the counts in that user's profile have changed. #40",206156866,twitter-to-sqlite, https://github.com/dogsheep/twitter-to-sqlite/releases/tag/0.20.1,25070964,MDc6UmVsZWFzZTI1MDcwOTY0,0.20.1,master,0.20.1,0,9599,simonw,0,2020-04-01T04:31:23Z,2020-04-01T04:33:35Z,"* Buf fix: `since_id` table no longer records a record for `None`, `None`. #41",206156866,twitter-to-sqlite, https://github.com/simonw/sqlite-utils/releases/tag/2.5,25436265,MDc6UmVsZWFzZTI1NDM2MjY1,2.5,master,2.5,0,9599,simonw,0,2020-04-13T03:52:19Z,2020-04-13T03:54:08Z,"* Panda’s Timestamp is now stored as a SQLite TEXT column. Thanks, b0b5h4rp13! (#96) * `table.last_pk` is now only available for inserts or upserts of a single record. (#98) * New `Database(filepath, recreate=True)` parameter for deleting and recreating the database. (#97) ",140912432,sqlite-utils, https://github.com/simonw/sqlite-utils/releases/tag/2.6,25554617,MDc6UmVsZWFzZTI1NTU0NjE3,2.6,master,2.6,0,9599,simonw,0,2020-04-16T03:13:13Z,2020-04-16T03:14:48Z,"* New `table.rows_where(..., order_by=""age desc"")` argument, see [Listing rows](https://sqlite-utils.readthedocs.io/en/stable/python-api.html#listing-rows). (#76) ",140912432,sqlite-utils, https://github.com/dogsheep/github-to-sqlite/releases/tag/1.0.1,25583094,MDc6UmVsZWFzZTI1NTgzMDk0,1.0.1,master,1.0.1,0,9599,simonw,0,2020-04-16T17:41:47Z,2020-04-16T18:09:29Z,"* Fixed bug where repository topics were not being correctly fetched #26 * Live demo at https://github-to-sqlite.dogsheep.net/ now uses [datasette-render-markdown](https://github.com/simonw/datasette-render-markdown) and pulls in issue comments #25",207052882,github-to-sqlite, https://github.com/dogsheep/twitter-to-sqlite/releases/tag/0.21,25632029,MDc6UmVsZWFzZTI1NjMyMDI5,0.21,master,0.21,0,9599,simonw,0,2020-04-17T23:44:31Z,2020-04-17T23:46:51Z,"* New command: `twitter-to-sqlite lists username` fetches lists owned by the specified users. #43 * Handle tweets with a blank `source`. #44 * Fixed error with `twitter-to-sqlite user-timeline --sql=... --ids`. #42 * Better error messages for non-existing users. #37 ",206156866,twitter-to-sqlite, https://github.com/dogsheep/github-to-sqlite/releases/tag/1.1,25640859,MDc6UmVsZWFzZTI1NjQwODU5,1.1,master,1.1,0,9599,simonw,0,2020-04-18T15:07:04Z,2020-04-18T15:09:55Z,"* New `github-to-sqlite contributors` command for fetching contributors to one or more repositories. #28 * The [live demo](https://github-to-sqlite.dogsheep.net/) now includes contributors, and pulls data from `simonw/datasette` and `simonw/sqlite-utils` in addition to the Dogsheep repositories. * The `organization` column in the `repos` table is now a foreign key to `users` as opposed to a big piece of JSON. #27",207052882,github-to-sqlite, https://github.com/dogsheep/github-to-sqlite/releases/tag/2.0,25745723,MDc6UmVsZWFzZTI1NzQ1NzIz,2.0,master,2.0,0,9599,simonw,0,2020-04-22T01:20:52Z,2020-04-22T01:24:37Z,"This release includes some backwards-incompatible schema changes: * The `milestone` and `assignee` columns on the `issues` table are now integers that are foreign keys to the `milestones` and `users` tables - previously they could be `text` columns instead. #30 * `milestones` now has an integer foreign key in the `creator` column, and a new `repo` column that is an integer foreign key to the `repos` table. #29 * The `repo` column in the `issues` table is now an integer foreign key to `repos`. Previously it was a string of the format `dogsheep/github-to-sqlite`. #31",207052882,github-to-sqlite, https://github.com/simonw/datasette/releases/tag/0.40,25748264,MDc6UmVsZWFzZTI1NzQ4MjY0,0.40,master,0.40,0,9599,simonw,0,2020-04-22T04:06:39Z,2020-04-22T04:06:51Z,"* Datasette [Metadata](https://datasette.readthedocs.io/en/latest/metadata.html) can now be provided as a YAML file as an optional alternative to JSON. See [Using YAML for metadata](https://datasette.readthedocs.io/en/latest/metadata.html#metadata-yaml). (#713) * Removed support for `datasette publish now`, which used the the now-retired Zeit Now v1 hosting platform. A new plugin, [datasette-publish-now](https://github.com/simonw/datasette-publish-now), can be installed to publish data to Zeit ([now Vercel](https://vercel.com/blog/zeit-is-now-vercel)) Now v2. (#710) * Fixed a bug where the `extra_template_vars(request, view_name)` plugin hook was not receiving the correct `view_name`. (#716) * Variables added to the template context by the `extra_template_vars()` plugin hook are now shown in the `?_context=1` debugging mode (see [template_debug](https://datasette.readthedocs.io/en/latest/config.html#config-template-debug)). (#693) * Fixed a bug where the “templates considered” HTML comment was no longer being displayed. (#689) * Fixed a `datasette publish` bug where `--plugin-secret` would over-ride plugin configuration in the provided `metadata.json` file. (#724) * Added a new CSS class for customizing the canned query page. (#727)",107914493,datasette, https://github.com/dogsheep/dogsheep-photos/releases/tag/0.1a,25832422,MDc6UmVsZWFzZTI1ODMyNDIy,0.1a,master,0.1a,0,9599,simonw,0,2020-04-19T00:15:55Z,2020-04-24T00:40:57Z,* First alpha release,256834907,dogsheep-photos, https://github.com/dogsheep/dogsheep-photos/releases/tag/0.2a,25832475,MDc6UmVsZWFzZTI1ODMyNDc1,0.2a,master,0.2a,0,9599,simonw,0,2020-04-24T00:42:43Z,2020-04-24T00:44:21Z,* Only upload photos not already in S3. #9 ,256834907,dogsheep-photos, https://github.com/dogsheep/twitter-to-sqlite/releases/tag/0.21.1,26059149,MDc6UmVsZWFzZTI2MDU5MTQ5,0.21.1,master,0.21.1,0,9599,simonw,0,2020-04-30T18:20:43Z,2020-04-30T18:21:46Z,* Fixed bug that occurred when the `since_ids` table had not yet been created. #46,206156866,twitter-to-sqlite, https://github.com/simonw/sqlite-utils/releases/tag/2.7,26059545,MDc6UmVsZWFzZTI2MDU5NTQ1,2.7,master,2.7,0,9599,simonw,0,2020-04-18T00:04:50Z,2020-04-30T18:33:20Z,"* New `columns=` argument for the `.insert()`, `.insert_all()`, `.upsert()` and `.upsert_all()` methods, for over-riding the auto-detected types for columns and specifying additional columns that should be added when the table is created. See [Custom column order and column types](https://sqlite-utils.readthedocs.io/en/stable/python-api.html#python-api-custom-columns). (#100) ",140912432,sqlite-utils, https://github.com/dogsheep/github-to-sqlite/releases/tag/2.1,26067911,MDc6UmVsZWFzZTI2MDY3OTEx,2.1,master,2.1,0,9599,simonw,0,2020-04-30T23:02:24Z,2020-04-30T23:03:32Z,* New `github-to-sqlite scrape-dependents` command for importing the dependent repositories for a repo. #34,207052882,github-to-sqlite, https://github.com/simonw/sqlite-utils/releases/tag/2.7.1,26096691,MDc6UmVsZWFzZTI2MDk2Njkx,2.7.1,master,2.7.1,0,9599,simonw,0,2020-05-01T22:08:37Z,2020-05-01T22:11:19Z,"* New `sqlite-utils views my.db` command for listing views in a database, see [Listing views](https://sqlite-utils.readthedocs.io/en/latest/cli.html#cli-views). (#105) * `sqlite-utils tables` (and `views`) has a new `--schema` option which outputs the table/view schema, see [Listing tables](https://sqlite-utils.readthedocs.io/en/latest/cli.html#cli-tables). (#104) * Nested structures containing invalid JSON values (e.g. Python bytestrings) are now serialized using `repr()` instead of throwing an error. (#102)",140912432,sqlite-utils, https://github.com/simonw/sqlite-utils/releases/tag/2.7.2,26107311,MDc6UmVsZWFzZTI2MTA3MzEx,2.7.2,master,2.7.2,0,9599,simonw,0,2020-05-02T16:05:27Z,2020-05-02T16:10:11Z,"* `db.create_view(...)` now has additional parameters `ignore=True` or `replace=True`, see [Creating views](https://sqlite-utils.readthedocs.io/en/latest/python-api.html#creating-views). (#106) ",140912432,sqlite-utils, https://github.com/dogsheep/github-to-sqlite/releases/tag/2.2,26110434,MDc6UmVsZWFzZTI2MTEwNDM0,2.2,master,2.2,0,9599,simonw,0,2020-05-02T21:23:11Z,2020-05-02T21:28:00Z,"* New command: `github-to-sqlite stargazers` ([docs](https://github.com/dogsheep/github-to-sqlite/blob/2.2/README.md#fetching-users-that-have-starred-specific-repos)) for fetching all users who have starred the specified repositories. #4 * Added several views: [dependent_repos](https://github-to-sqlite.dogsheep.net/github/dependent_repos), [repos_starred](https://github-to-sqlite.dogsheep.net/github/repos_starred), [recent_releases](https://github-to-sqlite.dogsheep.net/github/recent_releases). #10 #12 #36 * Added indexes on all foreign key relationships. #35 * GitHub API token can now be read from `GITHUB_TOKEN` environment variable. #33",207052882,github-to-sqlite, https://github.com/simonw/sqlite-utils/releases/tag/2.8,26120136,MDc6UmVsZWFzZTI2MTIwMTM2,2.8,master,2.8,0,9599,simonw,0,2020-05-03T15:39:56Z,2020-05-03T15:41:31Z,"* New `sqlite-utils create-table` command, see [Creating tables](https://sqlite-utils.readthedocs.io/en/latest/cli.html#creating-tables). (#27) * New `sqlite-utils create-view` command, see [Creating views](https://sqlite-utils.readthedocs.io/en/latest/cli.html#creating-views). (#107) ",140912432,sqlite-utils, https://github.com/dogsheep/dogsheep-photos/releases/tag/0.3a,26199348,MDc6UmVsZWFzZTI2MTk5MzQ4,0.3a,master,0.3a,0,9599,simonw,0,2020-05-05T20:16:53Z,2020-05-05T20:17:00Z,"* Upload photos to S3 in a thread pool #11 * New `--dry-run` option to `upload` command * New `photos-to-sqlite apple-photos` command for importing Apple Photos metadata #1 * Apple Photos quality scores are imported into `apple_photos_scores` table #15 * Machine learning labels imported from Apple Photos into `labels` table #16",256834907,dogsheep-photos, https://github.com/simonw/datasette/releases/tag/0.41,26240662,MDc6UmVsZWFzZTI2MjQwNjYy,0.41,master,0.41,0,9599,simonw,0,2020-05-06T18:20:58Z,2020-05-06T18:30:03Z,"You can now create [custom pages](https://datasette.readthedocs.io/en/0.41/custom_templates.html#custom-pages) within your Datasette instance using a custom template file. For example, adding a template file called `templates/pages/about.html` will result in a new page being served at `/about` on your instance. See the [custom pages documentation](https://datasette.readthedocs.io/en/0.41/custom_templates.html#custom-pages) for full details, including how to return custom HTTP headers, redirects and status codes. (#648) [Configuration directory mode](https://datasette.readthedocs.io/en/0.41/config.html#config-dir) (#731) allows you to define a custom Datasette instance as a directory. So instead of running the following: $ datasette one.db two.db \ --metadata.json \ --template-dir=templates/ \ --plugins-dir=plugins \ --static css:css You can instead arrange your files in a single directory called `my-project` and run this: $ datasette my-project/ Also in this release: - New `NOT LIKE` table filter: `?colname__notlike=expression`. (#750) - Datasette now has a *pattern portfolio* at `/-/patterns` - e.g. . This is a page that shows every Datasette user interface component in one place, to aid core development and people building custom CSS themes. (#151) - SQLite [PRAGMA functions](https://www.sqlite.org/pragma.html#pragfunc) such as `pragma_table_info(tablename)` are now allowed in Datasette SQL queries. (#761) - Datasette pages now consistently return a `content-type` of `text/html; charset=utf-8""`. (#752) - Datasette now handles an ASGI `raw_path` value of `None`, which should allow compatibilty with the [Mangum](https://github.com/erm/mangum) adapter for running ASGI apps on AWS Lambda. Thanks, Colin Dellow. (#719) - Installation documentation now covers how to [Install using pipx](https://datasette.readthedocs.io/en/0.41/installation.html#installation-pipx). (#756) - Improved the documentation for [Full-text search](https://datasette.readthedocs.io/en/0.41/full_text_search.html#full-text-search).",107914493,datasette, https://github.com/simonw/datasette/releases/tag/0.42,26320774,MDc6UmVsZWFzZTI2MzIwNzc0,0.42,master,0.42,0,9599,simonw,0,2020-05-08T17:38:27Z,2020-05-08T17:56:36Z,"A small release which provides improved internal methods for use in plugins, along with documentation. See #685. * Added documentation for `db.execute()`, see [await db.execute(sql, ...)](https://datasette.readthedocs.io/en/stable/internals.html#database-execute). * Renamed `db.execute_against_connection_in_thread()` to `db.execute_fn()` and made it a documented method, see [await db.execute_fn(fn)](https://datasette.readthedocs.io/en/stable/internals.html#database-execute-fn). * New `results.first()` and `results.single_value()` methods, plus documentation for the `Results` class - see [Results](https://datasette.readthedocs.io/en/stable/internals.html#database-results). ",107914493,datasette, https://github.com/simonw/sqlite-utils/releases/tag/2.9,26362623,MDc6UmVsZWFzZTI2MzYyNjIz,2.9,master,2.9,0,9599,simonw,0,2020-05-11T01:54:56Z,2020-05-11T01:57:11Z,"- New `sqlite-utils drop-table` command, see [Dropping tables](https://sqlite-utils.readthedocs.io/en/2.9/cli.html#cli-drop-table). ([#111](https://github.com/simonw/sqlite-utils/issues/111)) - New `sqlite-utils drop-view` command, see [Dropping views](https://sqlite-utils.readthedocs.io/en/2.9/cli.html#cli-drop-view). - Python `decimal.Decimal` objects are now stored as `FLOAT`. ([#110](https://github.com/simonw/sqlite-utils/issues/110))",140912432,sqlite-utils, https://github.com/simonw/sqlite-utils/releases/tag/2.9.1,26395903,MDc6UmVsZWFzZTI2Mzk1OTAz,2.9.1,master,2.9.1,0,9599,simonw,0,2020-05-11T19:20:29Z,2020-05-11T19:21:24Z,"* Added custom project links to the [PyPI listing](https://pypi.org/project/sqlite-utils/). ",140912432,sqlite-utils, https://github.com/dogsheep/dogsheep-photos/releases/tag/0.4,26698662,MDc6UmVsZWFzZTI2Njk4NjYy,0.4,master,0.4,0,9599,simonw,0,2020-05-20T04:22:26Z,2020-05-20T04:24:28Z,"- Renamed this project to `dogsheep-photos`. #26 - `apple-photos` command now works even if you haven't yet run `upload`. #19 - `--image-url-prefix` and `--image-url-suffix` options to `apple-photos`. #24 - New `create-subset` command. #23 ",256834907,dogsheep-photos, https://github.com/dogsheep/dogsheep-photos/releases/tag/0.4.1,26873698,MDc6UmVsZWFzZTI2ODczNjk4,0.4.1,master,0.4.1,0,9599,simonw,0,2020-05-25T20:11:20Z,2020-05-25T20:13:23Z,"- Documentation now explains how to use this with the [datasette-media](https://github.com/simonw/datasette-media), [datasette-json-html](https://github.com/simonw/datasette-json-html) and [datasette-template-sql](https://github.com/simonw/datasette-template-sql) plugins. #20",256834907,dogsheep-photos, https://github.com/simonw/datasette/releases/tag/0.43,26994005,MDc6UmVsZWFzZTI2OTk0MDA1,0.43,master,0.43,0,9599,simonw,0,2020-05-28T14:11:06Z,2020-05-28T14:39:18Z,"The main focus of this release is a major upgrade to the [register_output_renderer(datasette)](https://datasette.readthedocs.io/en/stable/plugins.html#plugin-register-output-renderer) plugin hook, which allows plugins to provide new output formats for Datasette such as [datasette-atom](https://github.com/simonw/datasette-atom) and [datasette-ics](https://github.com/simonw/datasette-ics). - Redesign of [register_output_renderer(datasette)](https://datasette.readthedocs.io/en/stable/plugins.html#plugin-register-output-renderer) to provide more context to the render callback and support an optional `""can_render""` callback that controls if a suggested link to the output format is provided. ([#581](https://github.com/simonw/datasette/issues/581), [#770](https://github.com/simonw/datasette/issues/770)) - Visually distinguish float and integer columns - useful for figuring out why order-by-column might be returning unexpected results. ([#729](https://github.com/simonw/datasette/issues/729)) - The [Request object](https://datasette.readthedocs.io/en/stable/internals.html#internals-request), which is passed to several plugin hooks, is now documented. ([#706](https://github.com/simonw/datasette/issues/706)) - New `metadata.json` option for setting a custom default page size for specific tables and views, see [Setting a custom page size](https://datasette.readthedocs.io/en/stable/metadata.html#metadata-page-size). ([#751](https://github.com/simonw/datasette/issues/751)) - Canned queries can now be configured with a default URL fragment hash, useful when working with plugins such as [datasette-vega](https://github.com/simonw/datasette-vega), see [Setting a default fragment](https://datasette.readthedocs.io/en/stable/sql_queries.html#canned-queries-default-fragment). ([#706](https://github.com/simonw/datasette/issues/706)) - Fixed a bug in `datasette publish` when running on operating systems where the `/tmp` directory lives in a different volume, using a backport of the Python 3.8 `shutil.copytree()` function. ([#744](https://github.com/simonw/datasette/issues/744)) - Every plugin hook is now covered by the unit tests, and a new unit test checks that each plugin hook has at least one corresponding test. ([#771](https://github.com/simonw/datasette/issues/771), [#773](https://github.com/simonw/datasette/issues/773))",107914493,datasette, https://github.com/simonw/datasette/releases/tag/0.44,27483276,MDc6UmVsZWFzZTI3NDgzMjc2,0.44,master,0.44,0,9599,simonw,0,2020-06-12T01:19:30Z,2020-06-12T07:10:38Z,"Authentication and permissions, writable canned queries, flash messages, new plugin hooks and more. [Full release notes](https://datasette.readthedocs.io/en/stable/changelog.html#v0-44). See also [Datasette 0.44: the annotated release notes](https://simonwillison.net/2020/Jun/12/annotated-release-notes/).",107914493,datasette, https://github.com/simonw/sqlite-utils/releases/tag/2.10,27504516,MDc6UmVsZWFzZTI3NTA0NTE2,2.10,master,2.10,0,9599,simonw,0,2020-06-12T17:43:45Z,2020-06-12T17:44:32Z,- The `sqlite-utils` command now supports UPDATE/INSERT/DELETE in addition to SELECT. #115,140912432,sqlite-utils, https://github.com/simonw/datasette/releases/tag/0.45a0,27703093,MDc6UmVsZWFzZTI3NzAzMDkz,0.45a0,master,0.45a0,0,9599,simonw,1,2020-06-18T20:58:09Z,2020-06-18T21:14:00Z,,107914493,datasette, https://github.com/simonw/datasette/releases/tag/0.45a1,27707079,MDc6UmVsZWFzZTI3NzA3MDc5,0.45a1,master,0.45a1,0,9599,simonw,1,2020-06-18T23:52:16Z,2020-06-19T00:02:29Z,,107914493,datasette, https://github.com/simonw/sqlite-utils/releases/tag/2.10.1,27847716,MDc6UmVsZWFzZTI3ODQ3NzE2,2.10.1,master,2.10.1,0,9599,simonw,0,2020-06-23T21:04:07Z,2020-06-23T21:04:50Z,* Added documentation for the `table.pks` introspection property. #116,140912432,sqlite-utils, https://github.com/simonw/datasette/releases/tag/0.45a2,27856779,MDc6UmVsZWFzZTI3ODU2Nzc5,0.45a2,master,0.45a2,0,9599,simonw,1,2020-06-24T04:17:30Z,2020-06-24T04:32:12Z,,107914493,datasette, https://github.com/simonw/datasette/releases/tag/0.45a3,27994774,MDc6UmVsZWFzZTI3OTk0Nzc0,0.45a3,master,0.45a3,0,9599,simonw,1,2020-06-28T03:22:49Z,2020-06-28T03:27:12Z,,107914493,datasette, https://github.com/simonw/datasette/releases/tag/0.45a4,28008549,MDc6UmVsZWFzZTI4MDA4NTQ5,0.45a4,master,0.45a4,0,9599,simonw,1,2020-06-29T02:31:16Z,2020-06-29T02:33:02Z,,107914493,datasette, https://github.com/simonw/datasette/releases/tag/0.45a5,28097766,MDc6UmVsZWFzZTI4MDk3NzY2,0.45a5,master,0.45a5,0,9599,simonw,1,2020-07-01T04:25:35Z,2020-07-01T04:27:08Z,,107914493,datasette, https://github.com/simonw/datasette/releases/tag/0.45,28134124,MDc6UmVsZWFzZTI4MTM0MTI0,0.45,master,0.45,0,9599,simonw,0,2020-07-01T21:43:07Z,2020-07-01T21:46:07Z,"Magic parameters for canned queries, a log out feature, improved plugin documentation and four new plugin hooks. ### Magic parameters for canned queries Canned queries now support [Magic parameters](https://docs.datasette.io/en/stable/sql_queries.html#canned-queries-magic-parameters), which can be used to insert or select automatically generated values. For example: ```sql insert into logs (user_id, timestamp) values (:_actor_id, :_now_datetime_utc) ``` This inserts the currently authenticated actor ID and the current datetime. ([#842](https://github.com/simonw/datasette/issues/842)) ### Log out The [ds_actor cookie](https://docs.datasette.io/en/stable/authentication.html#authentication-ds-actor) can be used by plugins (or by Datasette's [--root mechanism](https://docs.datasette.io/en/stable/authentication.html#authentication-root)) to authenticate users. The new `/-/logout` page provides a way to clear that cookie. A ""Log out"" button now shows in the global navigation provided the user is authenticated using the `ds_actor` cookie. ([#840](https://github.com/simonw/datasette/issues/840)) ### Better plugin documentation The plugin documentation has been re-arranged into four sections, including a brand new section on testing plugins. ([#687](https://github.com/simonw/datasette/issues/687)) - [Plugins](https://docs.datasette.io/en/stable/plugins.html#plugins) introduces Datasette's plugin system and describes how to install and configure plugins. - [Writing plugins](https://docs.datasette.io/en/stable/writing_plugins.html#writing-plugins) describes how to author plugins, from simple one-off plugins to packaged plugins that can be published to PyPI. It also describes how to start a plugin using the new [datasette-plugin](https://github.com/simonw/datasette-plugin) cookiecutter template. - [Plugin hooks](https://docs.datasette.io/en/stable/plugin_hooks.html#plugin-hooks) is a full list of detailed documentation for every Datasette plugin hook. - [Testing plugins](https://docs.datasette.io/en/stable/testing_plugins.html#testing-plugins) describes how to write tests for Datasette plugins, using [pytest](https://docs.pytest.org/) and [HTTPX](https://www.python-httpx.org/). ### New plugin hooks - [register_magic_parameters(datasette)](https://docs.datasette.io/en/stable/plugin_hooks.html#plugin-hook-register-magic-parameters) can be used to define new types of magic canned query parameters. - [startup(datasette)](https://docs.datasette.io/en/stable/plugin_hooks.html#plugin-hook-startup) can run custom code when Datasette first starts up. [datasette-init](https://github.com/simonw/datasette-init) is a new plugin that uses this hook to create database tables and views on startup if they have not yet been created. ([#834](https://github.com/simonw/datasette/issues/834)) - [canned_queries(datasette, database, actor)](https://docs.datasette.io/en/stable/plugin_hooks.html#plugin-hook-canned-queries) lets plugins provide additional canned queries beyond those defined in Datasette's metadata. See [datasette-saved-queries](https://github.com/simonw/datasette-saved-queries) for an example of this hook in action. ([#852](https://github.com/simonw/datasette/issues/852)) - [forbidden(datasette, request, message)](https://docs.datasette.io/en/stable/plugin_hooks.html#plugin-hook-forbidden) is a hook for customizing how Datasette responds to 403 forbidden errors. ([#812](https://github.com/simonw/datasette/issues/812)) ### Smaller changes - Cascading view permissons - so if a user has `view-table` they can view the table page even if they do not have `view-database` or `view-instance`. ([#832](https://github.com/simonw/datasette/issues/832)) - CSRF protection no longer applies to `Authentication: Bearer token` requests or requests without cookies. ([#835](https://github.com/simonw/datasette/issues/835)) - `datasette.add_message()` now works inside plugins. ([#864](https://github.com/simonw/datasette/issues/864)) - Workaround for ""Too many open files"" error in test runs. ([#846](https://github.com/simonw/datasette/issues/846)) - Respect existing `scope[""actor""]` if already set by ASGI middleware. ([#854](https://github.com/simonw/datasette/issues/854)) - New process for shipping [Alpha and beta releases](https://docs.datasette.io/en/stable/contributing.html#contributing-alpha-beta). ([#807](https://github.com/simonw/datasette/issues/807)) - `{{ csrftoken() }}` now works when plugins render a template using `datasette.render_template(..., request=request)`. ([#863](https://github.com/simonw/datasette/issues/863)) - Datasette now creates a single [Request object](https://docs.datasette.io/en/stable/internals.html#internals-request) and uses it throughout the lifetime of the current HTTP request. ([#870](https://github.com/simonw/datasette/issues/870))",107914493,datasette, https://github.com/simonw/sqlite-utils/releases/tag/2.11,28369250,MDc6UmVsZWFzZTI4MzY5MjUw,2.11,master,2.11,0,9599,simonw,0,2020-07-08T17:36:07Z,2020-07-08T17:36:45Z,"- New `--truncate` option to `sqlite-utils insert`, and `truncate=True` argument to `.insert_all()`. Thanks, Thomas Sibley. ([#118](https://github.com/simonw/sqlite-utils/pull/118)) - The `sqlite-utils query` command now runs updates in a transaction. Thanks, Thomas Sibley. ([#120](https://github.com/simonw/sqlite-utils/pull/120))",140912432,sqlite-utils, https://github.com/dogsheep/github-to-sqlite/releases/tag/2.3,28422716,MDc6UmVsZWFzZTI4NDIyNzE2,2.3,master,2.3,0,9599,simonw,0,2020-07-09T23:26:34Z,2020-07-09T23:28:07Z,- New `github-to-sqlite repos my.db -r simonw/datasette` option for importing just specific repositories. #42,207052882,github-to-sqlite, https://github.com/dogsheep/github-to-sqlite/releases/tag/2.4,28705938,MDc6UmVsZWFzZTI4NzA1OTM4,2.4,master,2.4,0,9599,simonw,0,2020-07-18T22:34:15Z,2020-07-18T22:35:27Z,- New `github-to-sqlite tags github.db simonw/datasette` command for importing all tags for a repository. #43,207052882,github-to-sqlite, https://github.com/dogsheep/twitter-to-sqlite/releases/tag/0.21.2,28705982,MDc6UmVsZWFzZTI4NzA1OTgy,0.21.2,master,0.21.2,0,9599,simonw,0,2020-07-18T22:42:54Z,2020-07-18T22:43:20Z,- Added changelog badge,206156866,twitter-to-sqlite, https://github.com/dogsheep/twitter-to-sqlite/releases/tag/0.21.3,28876263,MDc6UmVsZWFzZTI4ODc2MjYz,0.21.3,master,0.21.3,0,9599,simonw,0,2020-07-23T14:56:02Z,2020-07-23T14:57:11Z,* Added table of contents to the documentation,206156866,twitter-to-sqlite, https://github.com/simonw/sqlite-utils/releases/tag/2.12,28975119,MDc6UmVsZWFzZTI4OTc1MTE5,2.12,master,2.12,0,9599,simonw,0,2020-07-27T07:21:26Z,2020-07-27T07:24:10Z,"The theme of this release is better tools for working with binary data. The new `insert-files` command can be used to insert binary files directly into a database table, and other commands have been improved with better support for BLOB columns. - `sqlite-utils insert-files my.db gifs *.gif` can now insert the contents of files into a specified table. The columns in the table can be customized to include different pieces of metadata derived from the files. See [Inserting binary data from files](https://sqlite-utils.readthedocs.io/en/stable/cli.html#cli-insert-files). ([#122](https://github.com/simonw/sqlite-utils/issues/122)) - `--raw` option to `sqlite-utils query` - for outputting just a single raw column value - see [Returning raw data from a query, such as binary content](https://sqlite-utils.readthedocs.io/en/stable/cli.html#cli-query-raw). ([#123](https://github.com/simonw/sqlite-utils/issues/123)) - JSON output now encodes BLOB values as special base64 obects - see [Running queries and returning JSON](https://sqlite-utils.readthedocs.io/en/stable/cli.html#cli-query-json). ([#125](https://github.com/simonw/sqlite-utils/issues/125)) - The same format of JSON base64 objects can now be used to insert binary data - see [Inserting JSON data](https://sqlite-utils.readthedocs.io/en/stable/cli.html#cli-inserting-data). ([#126](https://github.com/simonw/sqlite-utils/issues/126)) - The `sqlite-utils query` command can now accept named parameters, e.g. `sqlite-utils :memory: ""select :num * :num2"" -p num 5 -p num2 6` - see [Running queries and returning JSON](https://sqlite-utils.readthedocs.io/en/stable/cli.html#cli-query-json). ([#124](https://github.com/simonw/sqlite-utils/issues/124))",140912432,sqlite-utils, https://github.com/simonw/sqlite-utils/releases/tag/2.13,29096810,MDc6UmVsZWFzZTI5MDk2ODEw,2.13,master,2.13,0,9599,simonw,0,2020-07-30T01:13:53Z,2020-07-30T01:15:55Z,"- `memoryview` and `uuid.UUID` objects are now supported. `memoryview` objects will be stored using `BLOB` and `uuid.UUID` objects will be stored using `TEXT`. (#128) ",140912432,sqlite-utils, https://github.com/simonw/sqlite-utils/releases/tag/2.14,29196241,MDc6UmVsZWFzZTI5MTk2MjQx,2.14,master,2.14,0,9599,simonw,0,2020-08-01T20:58:47Z,2020-08-01T21:00:31Z,"- The [insert-files command](https://sqlite-utils.readthedocs.io/en/stable/cli.html#cli-insert-files) can now read from standard input: `cat dog.jpg | sqlite-utils insert-files dogs.db pics - --name=dog.jpg`. ([#127](https://github.com/simonw/sqlite-utils/issues/127)) - You can now specify a full-text search tokenizer using the new `tokenize=` parameter to [enable_fts()](https://sqlite-utils.readthedocs.io/en/stable/python-api.html#python-api-fts). This means you can enable Porter stemming on a table by running `db[""articles""].enable_fts([""headline"", ""body""], tokenize=""porter"")`. ([#130](https://github.com/simonw/sqlite-utils/issues/130)) - You can also set a custom tokenizer using the [sqlite-utils enable-fts](https://sqlite-utils.readthedocs.io/en/stable/cli.html#cli-fts) CLI command, via the new `--tokenize` option.",140912432,sqlite-utils, https://github.com/simonw/sqlite-utils/releases/tag/2.14.1,29394982,MDc6UmVsZWFzZTI5Mzk0OTgy,2.14.1,master,2.14.1,0,9599,simonw,0,2020-08-06T06:31:11Z,2020-08-06T06:31:48Z,- Documentation improvements,140912432,sqlite-utils, https://github.com/simonw/datasette/releases/tag/0.46,29489364,MDc6UmVsZWFzZTI5NDg5MzY0,0.46,main,0.46,0,9599,simonw,0,2020-08-09T16:09:07Z,2020-08-09T16:10:47Z,"**Warning:** This release contains a security fix related to authenticated writable canned queries. If you are using this feature you should upgrade as soon as possible. - **Security fix:** CSRF tokens were incorrectly included in read-only canned query forms, which could allow them to be leaked to a sophisticated attacker. See [issue 918](https://github.com/simonw/datasette/issues/918) for details. - Datasette now supports GraphQL via the new [datasette-graphql](https://github.com/simonw/datasette-graphql) plugin - see [GraphQL in Datasette with the new datasette-graphql plugin](https://simonwillison.net/2020/Aug/7/datasette-graphql/). - Principle git branch has been renamed from `master` to `main`. ([#849](https://github.com/simonw/datasette/issues/849)) - New debugging tool: `/-/allow-debug tool` ([demo here](https://latest.datasette.io/-/allow-debug)) helps test allow blocks against actors, as described in [Defining permissions with ""allow"" blocks](https://datasette.readthedocs.io/en/stable/authentication.html#authentication-permissions-allow). ([#908](https://github.com/simonw/datasette/issues/908)) - New logo for the documentation, and a new project tagline: ""An open source multi-tool for exploring and publishing data"". - Whitespace in column values is now respected on display, using `white-space: pre-wrap`. ([#896](https://github.com/simonw/datasette/issues/896)) - New `await request.post_body()` method for accessing the raw POST body, see [Request object](https://datasette.readthedocs.io/en/stable/internals.html#internals-request). ([#897](https://github.com/simonw/datasette/issues/897)) - Database file downloads now include a `content-length` HTTP header, enabling download progress bars. ([#905](https://github.com/simonw/datasette/issues/905)) - File downloads now also correctly set the suggested file name using a `content-disposition` HTTP header. ([#909](https://github.com/simonw/datasette/issues/909)) - `tests` are now excluded from the Datasette package properly - thanks, abeyerpath. ([#456](https://github.com/simonw/datasette/issues/456)) - The Datasette package published to PyPI now includes `sdist` as well as `bdist_wheel`. - Better titles for canned query pages. ([#887](https://github.com/simonw/datasette/issues/887)) - Now only loads Python files from a directory passed using the `--plugins-dir` option - thanks, Amjith Ramanujam. ([#890](https://github.com/simonw/datasette/pull/890)) - New documentation section on [Publishing to Vercel](https://datasette.readthedocs.io/en/stable/publish.html#publish-vercel).",107914493,datasette, https://github.com/simonw/sqlite-utils/releases/tag/2.15,29529316,MDc6UmVsZWFzZTI5NTI5MzE2,2.15,master,2.15,0,9599,simonw,0,2020-08-10T19:06:02Z,2020-08-10T19:07:27Z,"- New `db.enable_wal()` and `db.disable_wal()` methods for enabling and disabling [Write-Ahead Logging](https://www.sqlite.org/wal.html) for a database file - see [WAL mode](https://sqlite-utils.readthedocs.io/en/stable//python-api.html#python-api-wal) in the Python API documentation. - Also `sqlite-utils enable-wal file.db` and `sqlite-utils disable-wal file.db` commands for doing the same thing on the command-line, see [WAL mode (CLI)](https://sqlite-utils.readthedocs.io/en/stable/cli.html#cli-wal). ([#132](https://github.com/simonw/sqlite-utils/issues/132))",140912432,sqlite-utils, https://github.com/simonw/datasette/releases/tag/0.47,29585154,MDc6UmVsZWFzZTI5NTg1MTU0,0.47,main,0.47,0,9599,simonw,0,2020-08-12T00:42:47Z,2020-08-12T00:44:52Z,"- Datasette now has [a GitHub discussions forum](https://github.com/simonw/datasette/discussions) for conversations about the project that go beyond just bug reports and issues. - Datasette can now be installed on macOS using Homebrew! Run `brew install simonw/datasette/datasette`. See [Using Homebrew](https://datasette.readthedocs.io/en/stable/installation.html#installation-homebrew). ([#335](https://github.com/simonw/datasette/issues/335)) - Two new commands: `datasette install name-of-plugin` and `datasette uninstall name-of-plugin`. These are equivalent to `pip install` and `pip uninstall` but automatically run in the same virtual environment as Datasette, so users don't have to figure out where that virtual environment is - useful for installations created using Homebrew or `pipx`. See [Installing plugins](https://datasette.readthedocs.io/en/stable/plugins.html#plugins-installing). ([#925](https://github.com/simonw/datasette/issues/925)) - A new command-line option, `datasette --get`, accepts a path to a URL within the Datasette instance. It will run that request through Datasette (without starting a web server) and print out the repsonse. See [datasette --get](https://datasette.readthedocs.io/en/stable/getting_started.html#getting-started-datasette-get) for an example. ([#926](https://github.com/simonw/datasette/issues/926))",107914493,datasette, https://github.com/simonw/datasette/releases/tag/0.47.1,29587652,MDc6UmVsZWFzZTI5NTg3NjUy,0.47.1,main,0.47.1,0,9599,simonw,0,2020-08-12T02:37:24Z,2020-08-12T02:38:00Z,- Fixed a bug where the `sdist` distribution of Datasette was not correctly including the template files. ([#930](https://github.com/simonw/datasette/issues/930)),107914493,datasette, https://github.com/simonw/sqlite-utils/releases/tag/2.15.1,29616454,MDc6UmVsZWFzZTI5NjE2NDU0,2.15.1,main,2.15.1,0,9599,simonw,0,2020-08-12T16:59:48Z,2020-08-12T17:00:27Z,- Now available as a `sdist` package on PyPI in addition to a wheel. ([#133](https://github.com/simonw/sqlite-utils/issues/133)),140912432,sqlite-utils, https://github.com/simonw/datasette/releases/tag/0.47.2,29625082,MDc6UmVsZWFzZTI5NjI1MDgy,0.47.2,main,0.47.2,0,9599,simonw,0,2020-08-12T20:54:33Z,2020-08-12T20:55:28Z,- Fixed an issue with the Docker image [published to Docker Hub](https://hub.docker.com/r/datasetteproject/datasette). ([#931](https://github.com/simonw/datasette/issues/931)),107914493,datasette, https://github.com/simonw/datasette/releases/tag/0.47.3,29738457,MDc6UmVsZWFzZTI5NzM4NDU3,0.47.3,main,0.47.3,0,9599,simonw,0,2020-08-15T20:56:08Z,2020-08-15T21:03:58Z,- The `datasette --get` command-line mechanism now ensures any plugins using the `startup()` hook are correctly executed. ([#934](https://github.com/simonw/datasette/issues/934)),107914493,datasette, https://github.com/simonw/datasette/releases/tag/0.48,29749566,MDc6UmVsZWFzZTI5NzQ5NTY2,0.48,main,0.48,0,9599,simonw,0,2020-08-16T18:56:31Z,2020-08-16T18:58:34Z,"- Datasette documentation now lives at [docs.datasette.io](https://docs.datasette.io/). - `db.is_mutable` property is now documented and tested, see [Database introspection](https://docs.datasette.io/en/stable/internals.html#internals-database-introspection). - The `extra_template_vars`, `extra_css_urls`, `extra_js_urls` and `extra_body_script` plugin hooks now all accept the same arguments. See [extra_template_vars(template, database, table, columns, view_name, request, datasette)](https://docs.datasette.io/en/stable/plugin_hooks.html#plugin-hook-extra-template-vars) for details. ([#939](https://github.com/simonw/datasette/issues/939)) - Those hooks now accept a new `columns` argument detailing the table columns that will be rendered on that page. ([#938](https://github.com/simonw/datasette/issues/938)) - Fixed bug where plugins calling `db.execute_write_fn()` could hang Datasette if the connection failed. ([#935](https://github.com/simonw/datasette/issues/935)) - Fixed bug with the `?_nl=on` output option and binary data. ([#914](https://github.com/simonw/datasette/issues/914))",107914493,datasette, https://github.com/dogsheep/github-to-sqlite/releases/tag/2.5,29822005,MDc6UmVsZWFzZTI5ODIyMDA1,2.5,main,2.5,0,9599,simonw,0,2020-08-18T15:05:50Z,2020-08-18T15:08:20Z,"- New `github-to-sqlite emojis` command for fetching emoji supported by GitHub. [Demo](https://github-to-sqlite.dogsheep.net/github/emojis). #47 - Added table of contents to README. - Switched to GitHub Actions for CI. - Switched default branch to `main` ",207052882,github-to-sqlite, https://github.com/simonw/sqlite-utils/releases/tag/2.16,29999731,MDc6UmVsZWFzZTI5OTk5NzMx,2.16,main,2.16,0,9599,simonw,0,2020-08-21T21:02:29Z,2020-08-21T21:05:51Z,"- `--load-extension` option for `sqlite-utils query` for loading SQLite extensions. ([#134](https://github.com/simonw/sqlite-utils/issues/134)) - New `sqlite_utils.utils.find_spatialite()` function for finding SpatiaLite in common locations. ([#135](https://github.com/simonw/sqlite-utils/issues/135))",140912432,sqlite-utils, https://github.com/simonw/sqlite-utils/releases/tag/2.16.1,30352225,MDc6UmVsZWFzZTMwMzUyMjI1,2.16.1,main,2.16.1,0,9599,simonw,0,2020-08-28T22:45:11Z,2020-08-28T22:47:02Z,"- `insert_all(..., alter=True)` now works for columns introduced after the first 100 records. Thanks, Simon Wiles! ([#139](https://github.com/simonw/sqlite-utils/issues/139)) - Continuous Integration is now powered by GitHub Actions. ([#143](https://github.com/simonw/sqlite-utils/issues/143))",140912432,sqlite-utils, https://github.com/simonw/datasette/releases/tag/0.49a0,30353073,MDc6UmVsZWFzZTMwMzUzMDcz,0.49a0,main,0.49a0,0,9599,simonw,1,2020-08-28T23:12:47Z,2020-08-28T23:18:09Z,"- `register_output_renderer()` render functions can now return a `Response`. ([#953](https://github.com/simonw/datasette/issues/953)) - New `--upgrade` option for `datasette install`. ([#945](https://github.com/simonw/datasette/issues/945)) - `datasette publish heroku` now deploys using Python 3.8.5",107914493,datasette, https://github.com/dogsheep/dogsheep-beta/releases/tag/0.1a,30477968,MDc6UmVsZWFzZTMwNDc3OTY4,0.1a,main,0.1a,0,9599,simonw,1,2020-09-01T04:16:59Z,2020-09-01T04:19:00Z,- First working version,197431109,dogsheep-beta, https://github.com/dogsheep/dogsheep-beta/releases/tag/0.1a2,30478994,MDc6UmVsZWFzZTMwNDc4OTk0,0.1a2,main,0.1a2,0,9599,simonw,1,2020-09-01T04:49:41Z,2020-09-01T04:50:01Z,- Now creates an index on the `timestamp` column. #1,197431109,dogsheep-beta, https://github.com/dogsheep/dogsheep-beta/releases/tag/0.1,30481804,MDc6UmVsZWFzZTMwNDgxODA0,0.1,main,0.1,0,9599,simonw,0,2020-09-01T06:10:44Z,2020-09-01T06:12:05Z,"- Optimize the FTS table and vacuum the database. #4 - First non-alpha release",197431109,dogsheep-beta, https://github.com/dogsheep/dogsheep-beta/releases/tag/0.2,30536189,MDc6UmVsZWFzZTMwNTM2MTg5,0.2,main,0.2,0,9599,simonw,0,2020-09-01T20:40:52Z,2020-09-01T20:41:31Z,"- Use Porter stemming by default, allow that to be over-ridden with the new `--tokenize=` option. #2",197431109,dogsheep-beta, https://github.com/dogsheep/dogsheep-beta/releases/tag/0.3,30613603,MDc6UmVsZWFzZTMwNjEzNjAz,0.3,main,0.3,0,9599,simonw,0,2020-09-02T21:07:13Z,2020-09-02T21:07:44Z,- New `category` column plus default `categories` table. #7,197431109,dogsheep-beta, https://github.com/dogsheep/dogsheep-beta/releases/tag/0.4a0,30632372,MDc6UmVsZWFzZTMwNjMyMzcy,0.4a0,main,0.4a0,0,9599,simonw,1,2020-09-03T03:53:29Z,2020-09-03T03:54:23Z,"- Incomplete preview of the `/-/beta` search interface. #3 #9 ",197431109,dogsheep-beta, https://github.com/dogsheep/dogsheep-beta/releases/tag/0.4a1,30678449,MDc6UmVsZWFzZTMwNjc4NDQ5,0.4a1,main,0.4a1,0,9599,simonw,1,2020-09-03T18:03:15Z,2020-09-03T18:03:50Z,"- Added `received` category. #10 - New `is_public` column. #11",197431109,dogsheep-beta, https://github.com/dogsheep/dogsheep-beta/releases/tag/0.4,30688677,MDc6UmVsZWFzZTMwNjg4Njc3,0.4,main,0.4,0,9599,simonw,0,2020-09-03T21:09:50Z,2020-09-03T21:11:28Z,"- Working faceted search interface at `/-/beta` #3 - `is_public` column for filtering between public and private data. #11 - New `received` category. #10",197431109,dogsheep-beta, https://github.com/dogsheep/dogsheep-beta/releases/tag/0.4.1,30690154,MDc6UmVsZWFzZTMwNjkwMTU0,0.4.1,main,0.4.1,0,9599,simonw,0,2020-09-03T21:40:40Z,2020-09-03T21:41:52Z,- Fixed support for [advanced FTS query syntax](https://www.sqlite.org/fts5.html#full_text_query_syntax). #13,197431109,dogsheep-beta, https://github.com/dogsheep/dogsheep-beta/releases/tag/0.5,30699190,MDc6UmVsZWFzZTMwNjk5MTkw,0.5,main,0.5,0,9599,simonw,0,2020-09-04T01:45:35Z,2020-09-04T01:46:16Z,- Custom template displays can now render a point on a map. #12,197431109,dogsheep-beta, https://github.com/dogsheep/dogsheep-beta/releases/tag/0.6,30780951,MDc6UmVsZWFzZTMwNzgwOTUx,0.6,main,0.6,0,9599,simonw,0,2020-09-05T16:24:11Z,2020-09-05T16:26:06Z,"- Rerun the search query with FTS quoting if a SQLite FTS error occurs. This means searching for e.g. ""#dogfest"" will no longer throw an error, while still supporting advanced SQLite FTS syntax. #14 - Maximum width 100% on images in results - Don't display facet headers if there are no results for that facet.",197431109,dogsheep-beta, https://github.com/simonw/sqlite-utils/releases/tag/2.17,30875333,MDc6UmVsZWFzZTMwODc1MzMz,2.17,main,2.17,0,9599,simonw,0,2020-09-07T22:08:12Z,2020-09-07T22:08:33Z,"This release handles a bug where replacing rows in FTS tables could result in growing numbers of unneccessary rows in the associated `*_fts_docsize` table. ([#149](https://github.com/simonw/sqlite-utils/issues/149)) - `PRAGMA recursive_triggers=on` by default for all connections. You can turn it off with `Database(recursive_triggers=False)`. ([#152](https://github.com/simonw/sqlite-utils/issues/152)) - `table.optimize()` method now deletes unnecessary rows from the `*_fts_docsize` table. ([#153](https://github.com/simonw/sqlite-utils/issues/153)) - New tracer method for tracking underlying SQL queries, see [Tracing queries](http://127.0.0.1:8000/python-api.html#python-api-tracing). ([#150](https://github.com/simonw/sqlite-utils/issues/150)) - Neater indentation for schema SQL. ([#148](https://github.com/simonw/sqlite-utils/issues/148)) - Documentation for `sqlite_utils.AlterError` exception thrown by in `add_foreign_keys()`.",140912432,sqlite-utils, https://github.com/simonw/sqlite-utils/releases/tag/2.18,30942758,MDc6UmVsZWFzZTMwOTQyNzU4,2.18,main,2.18,0,9599,simonw,0,2020-09-08T23:37:28Z,2020-09-08T23:39:21Z,"- `table.rebuild_fts()` method for rebuilding a FTS index, see [Rebuilding a full-text search table](https://sqlite-utils.readthedocs.io/en/stable/python-api.html#python-api-fts-rebuild). ([#155](https://github.com/simonw/sqlite-utils/issues/155)) - `sqlite-utils rebuild-fts data.db` command for rebuilding FTS indexes across all tables, or just specific tables. ([#155](https://github.com/simonw/sqlite-utils/issues/155)) - `table.optimize()` method no longer deletes junk rows from the `*_fts_docsize` table. This was added in 2.17 but it turns out running `table.rebuild_fts()` is a better solution to this problem. - Fixed a bug where rows with additional columns that are inserted after the first batch of records could cause an error due to breaking SQLite's maximum number of parameters. Thanks, Simon Wiles. ([#145](https://github.com/simonw/sqlite-utils/issues/145))",140912432,sqlite-utils, https://github.com/dogsheep/dogsheep-beta/releases/tag/0.7a0,30944731,MDc6UmVsZWFzZTMwOTQ0NzMx,0.7a0,main,0.7a0,0,9599,simonw,1,2020-09-09T00:45:07Z,2020-09-09T00:46:06Z,"- Renamed `table` column to `type`. #17 - New `-d` option for passing one or more databases to index. Without this all databases in the config file will be indexed.",197431109,dogsheep-beta, https://github.com/simonw/datasette/releases/tag/0.49a1,31227999,MDc6UmVsZWFzZTMxMjI3OTk5,0.49a1,main,0.49a1,0,9599,simonw,1,2020-09-14T02:47:21Z,2020-09-14T02:48:19Z,"- Upgraded [CodeMirror](https://codemirror.net/) to 5.57.0. ([#948](https://github.com/simonw/datasette/issues/948)) - Upgraded code style to Black 20.8b1. ([#958](https://github.com/simonw/datasette/issues/958)) - New `datasette --pdb` option. ([#962](https://github.com/simonw/datasette/issues/962)) - `datasette --get` exit code now reflects the internal HTTP status code. ([#947](https://github.com/simonw/datasette/issues/947)) - Fixed bug where selected facets were not correctly persisted in hidden form fields on the table page. ([#963](https://github.com/simonw/datasette/issues/963)) - New mechanism for defining page templates with custom path parameters. ([#944](https://github.com/simonw/datasette/issues/944))",107914493,datasette, https://github.com/simonw/datasette/releases/tag/0.49,31288240,MDc6UmVsZWFzZTMxMjg4MjQw,0.49,main,0.49,0,9599,simonw,0,2020-09-14T21:38:24Z,2020-09-14T21:40:11Z,"- Writable canned queries now expose a JSON API, see [JSON API for writable canned queries](https://docs.datasette.io/en/stable/sql_queries.html#canned-queries-json-api). ([#880](https://github.com/simonw/datasette/issues/880)) - New mechanism for defining page templates with custom path parameters - a template file called `pages/about/{slug}.html` will be used to render any requests to `/about/something`. See [Path parameters for pages](https://docs.datasette.io/en/stable/custom_templates.html#custom-pages-parameters). ([#944](https://github.com/simonw/datasette/issues/944)) - `register_output_renderer()` render functions can now return a `Response`. ([#953](https://github.com/simonw/datasette/issues/953)) - New `--upgrade` option for `datasette install`. ([#945](https://github.com/simonw/datasette/issues/945)) - New `datasette --pdb` option. ([#962](https://github.com/simonw/datasette/issues/962)) - `datasette --get` exit code now reflects the internal HTTP status code. ([#947](https://github.com/simonw/datasette/issues/947)) - New `raise_404()` template function for returning 404 errors. ([#964](https://github.com/simonw/datasette/issues/964)) - `datasette publish heroku` now deploys using Python 3.8.5 - Upgraded [CodeMirror](https://codemirror.net/) to 5.57.0. ([#948](https://github.com/simonw/datasette/issues/948)) - Upgraded code style to Black 20.8b1. ([#958](https://github.com/simonw/datasette/issues/958)) - Fixed bug where selected facets were not correctly persisted in hidden form fields on the table page. ([#963](https://github.com/simonw/datasette/issues/963)) - Renamed the default error template from `500.html` to `error.html`. - Custom error pages are now documented, see [Custom error pages](https://docs.datasette.io/en/stable/custom_templates.html#custom-pages-errors). ([#965](https://github.com/simonw/datasette/issues/965))",107914493,datasette, https://github.com/simonw/datasette/releases/tag/0.49.1,31354944,MDc6UmVsZWFzZTMxMzU0OTQ0,0.49.1,main,0.49.1,0,9599,simonw,0,2020-09-15T20:20:15Z,2020-09-15T20:21:16Z,"- Fixed a bug with writable canned queries that use magic parameters but accept no non-magic arguments. (#967) ",107914493,datasette, https://github.com/dogsheep/github-to-sqlite/releases/tag/2.6,31441882,MDc6UmVsZWFzZTMxNDQxODgy,2.6,main,2.6,0,9599,simonw,0,2020-09-17T03:54:16Z,2020-09-17T03:55:03Z,- New `github-to-sqlite get /gists` command for making authenticated API calls against any API path. #50 ,207052882,github-to-sqlite, https://github.com/dogsheep/dogsheep-beta/releases/tag/0.7,31501128,MDc6UmVsZWFzZTMxNTAxMTI4,0.7,main,0.7,0,9599,simonw,0,2020-09-17T22:56:01Z,2020-09-17T22:57:09Z,"- Option to sort by relevance / oldest / newest. #21 - Renamed `table` column to `type`. #17 - New `-d` option for passing one or more databases to index. Without this all databases in the config file will be indexed.",197431109,dogsheep-beta, https://github.com/dogsheep/dogsheep-beta/releases/tag/0.7.1,31501584,MDc6UmVsZWFzZTMxNTAxNTg0,0.7.1,main,0.7.1,0,9599,simonw,0,2020-09-17T23:13:01Z,2020-09-17T23:13:46Z,- Fixed bug with sort orders displayed for the timeline view. #22,197431109,dogsheep-beta, https://github.com/dogsheep/dogsheep-beta/releases/tag/0.8,31547860,MDc6UmVsZWFzZTMxNTQ3ODYw,0.8,main,0.8,0,9599,simonw,0,2020-09-18T22:40:02Z,2020-09-18T22:41:33Z,"- New `template_debug` configuration setting. #25 - Templates now autoescape by default, use `{{ display.foo|safe }}` if you know you want HTML not to be escaped. - Fixed bug where the wrong template fragment could be used for a row. #24 - Sort order is now persisted when you execute a new search. #23 ",197431109,dogsheep-beta, https://github.com/simonw/sqlite-utils/releases/tag/2.19,31581701,MDc6UmVsZWFzZTMxNTgxNzAx,2.19,main,2.19,0,9599,simonw,0,2020-09-20T22:22:56Z,2020-09-20T22:24:04Z,"- New `sqlite-utils add-foreign-keys` command for [Adding multiple foreign keys at once](https://sqlite-utils.readthedocs.io/en/stable/cli.html#cli-add-foreign-keys). ([#157](https://github.com/simonw/sqlite-utils/issues/157)) - New `table.enable_fts(..., replace=True)` argument for replacing an existing FTS table with a new configuration. ([#160](https://github.com/simonw/sqlite-utils/issues/160)) - New `table.add_foreign_key(..., ignore=True)` argument for ignoring a foreign key if it already exists. ([#112](https://github.com/simonw/sqlite-utils/issues/112))",140912432,sqlite-utils, https://github.com/dogsheep/dogsheep-beta/releases/tag/0.9a0,31582397,MDc6UmVsZWFzZTMxNTgyMzk3,0.9a0,main,0.9a0,0,9599,simonw,1,2020-09-20T23:37:09Z,2020-09-20T23:37:48Z,"- Added by date, as part of developing a timeline view. #16",197431109,dogsheep-beta, https://github.com/simonw/sqlite-utils/releases/tag/2.20,31680849,MDc6UmVsZWFzZTMxNjgwODQ5,2.20,main,2.20,0,9599,simonw,0,2020-09-23T00:35:52Z,2020-09-23T00:37:01Z,"This release introduces two key new capabilities: **transform** ([#114](https://github.com/simonw/sqlite-utils/issues/114)) and **extract** ([#42](https://github.com/simonw/sqlite-utils/issues/42)). ### Transform SQLite's ALTER TABLE has [several documented limitations](https://sqlite.org/lang_altertable.html). The `table.transform()` Python method and `sqlite-utils transform` CLI command work around these limitations using a pattern where a new table with the desired structure is created, data is copied over to it and the old table is then dropped and replaced by the new one. You can use these tools to drop columns, change column types, rename columns, add and remove `NOT NULL` and defaults, remove foreign key constraints and more. See the [transforming tables (CLI)](https://sqlite-utils.readthedocs.io/en/stable/cli.html#cli-transform-table) and [transforming tables (Python library)](https://sqlite-utils.readthedocs.io/en/stable/python-api.html#python-api-transform) documentation for full details of how to use them. ### Extract Sometimes a database table - especially one imported from a CSV file - will contain duplicate data. A `Trees` table may include a `Species` column with only a few dozen unique values, when the table itself contains thousands of rows. The `table.extract()` method and `sqlite-utils extract` commands can extract a column - or multiple columns - out into a separate lookup table, and set up a foreign key relationship from the original table. The Python library [extract() documentation](https://sqlite-utils.readthedocs.io/en/stable/python-api.html#python-api-extract) describes how extraction works in detail, and [Extracting columns into a separate table](https://sqlite-utils.readthedocs.io/en/stable/cli.html#cli-extract) in the CLI documentation includes a detailed example. ### Other changes - The `@db.register_function` decorator can be used to quickly register Python functions as custom SQL functions, see [Registering custom SQL functions](https://sqlite-utils.readthedocs.io/en/stable/python-api.html#python-api-register-function). ([#162](https://github.com/simonw/sqlite-utils/issues/162)) - The `table.rows_where()` method now accepts an optional `select=` argument for specifying which columns should be selected, see [Listing rows](https://sqlite-utils.readthedocs.io/en/stable/python-api.html#python-api-rows).",140912432,sqlite-utils, https://github.com/simonw/sqlite-utils/releases/tag/2.21,31773390,MDc6UmVsZWFzZTMxNzczMzkw,2.21,main,2.21,0,9599,simonw,0,2020-09-24T16:44:30Z,2020-09-24T16:45:44Z,"- `table.extract()` and `sqlite-utils extract` now apply much, much faster - one example operation reduced from twelve minutes to just four seconds! ([#172](https://github.com/simonw/sqlite-utils/issues/172)) - `sqlite-utils extract` no longer shows a progress bar, because it's fast enough not to need one. - New `column_order=` option for `table.transform()` which can be used to alter the order of columns in a table. ([#175](https://github.com/simonw/sqlite-utils/issues/175)) - `sqlite-utils transform --column-order=` option (with a `-o` shortcut) for changing column order. ([#176](https://github.com/simonw/sqlite-utils/issues/176)) - The `table.transform(drop_foreign_keys=)` parameter and the `sqlite-utils transform --drop-foreign-key` option have changed. They now accept just the name of the column rather than requiring all three of the column, other table and other column. This is technically a backwards-incompatible change but I chose not to bump the major version number because the transform feature is so new. ([#177](https://github.com/simonw/sqlite-utils/issues/177)) - The table `.disable_fts()`, `.rebuild_fts()`, `.delete()`, `.delete_where()` and `.add_missing_columns()` methods all now `return self`, which means they can be chained together with other table operations.",140912432,sqlite-utils, https://github.com/simonw/datasette/releases/tag/0.50a0,32072114,MDc6UmVsZWFzZTMyMDcyMTE0,0.50a0,main,0.50a0,0,9599,simonw,1,2020-10-01T23:35:04Z,2020-10-01T23:35:54Z,"- New column action menu - table columns now show a cog icon which provides a contextual menu for that column. ([#981](https://github.com/simonw/datasette/issues/981)) - New `datasette -o` option which opens your browser as soon as Datasette starts up. ([#970](https://github.com/simonw/datasette/issues/970) - `sqlite3.enable_callback_tracebacks(True)` so errors in custom SQL functions will now display tracebacks. ([#891](https://github.com/simonw/datasette/issues/891)) - Fixed two rendering bugs with column headers in portrait mobile view. ([#978](https://github.com/simonw/datasette/issues/978), [#980](https://github.com/simonw/datasette/issues/980))",107914493,datasette, https://github.com/simonw/datasette/releases/tag/0.50a1,32238807,MDc6UmVsZWFzZTMyMjM4ODA3,0.50a1,main,0.50a1,0,9599,simonw,1,2020-10-06T20:50:54Z,2020-10-06T20:52:49Z,"- Column action menu now shows the column type. ([#993](https://github.com/simonw/datasette/issues/993)) - Column action sort links now correctly link to the first page of sorted results. ([#989](https://github.com/simonw/datasette/issues/989)) - [Publishing to Google Cloud Run](https://docs.datasette.io/en/latest/publish.html#publish-cloud-run) documentation now covers Google Cloud SDK options. Thanks, Geoffrey Hing. ([#995](https://github.com/simonw/datasette/pull/995))",107914493,datasette, https://github.com/simonw/datasette/releases/tag/0.50,32384200,MDc6UmVsZWFzZTMyMzg0MjAw,0.50,main,0.50,0,9599,simonw,0,2020-10-09T17:57:55Z,2020-10-09T17:58:27Z,"The key new feature in this release is the **column actions** menu on the table page ([#891](https://github.com/simonw/datasette/issues/891)). This can be used to sort a column in ascending or descending order, facet data by that column or filter the table to just rows that have a value for that column. Plugin authors can use the new [datasette.client](https://docs.datasette.io/en/stable/internals.html#internals-datasette-client) object to make internal HTTP requests from their plugins, allowing them to make use of Datasette's JSON API. ([#943](https://github.com/simonw/datasette/issues/943)) New [Deploying Datasette](https://docs.datasette.io/en/stable/deploying.html#deploying) documentation with guides for deploying Datasette on a Linux server [using systemd](https://docs.datasette.io/en/stable/deploying.html#deploying-systemd) or to hosting providers [that support buildpacks](https://docs.datasette.io/en/stable/deploying.html#deploying-buildpacks). ([#514](https://github.com/simonw/datasette/issues/514), [#997](https://github.com/simonw/datasette/issues/997)) Other improvements in this release: - [Publishing to Google Cloud Run](https://docs.datasette.io/en/stable/publish.html#publish-cloud-run) documentation now covers Google Cloud SDK options. Thanks, Geoffrey Hing. ([#995](https://github.com/simonw/datasette/pull/995)) - New `datasette -o` option which opens your browser as soon as Datasette starts up. ([#970](https://github.com/simonw/datasette/issues/970)) - Datasette now sets `sqlite3.enable_callback_tracebacks(True)` so that errors in custom SQL functions will display tracebacks. ([#891](https://github.com/simonw/datasette/issues/891)) - Fixed two rendering bugs with column headers in portrait mobile view. ([#978](https://github.com/simonw/datasette/issues/978), [#980](https://github.com/simonw/datasette/issues/980)) - New `db.table_column_details(table)` introspection method for retrieving full details of the columns in a specific table, see [Database introspection](https://docs.datasette.io/en/stable/internals.html#internals-database-introspection). - Fixed a routing bug with custom page wildcard templates. ([#996](https://github.com/simonw/datasette/issues/996)) - `datasette publish heroku` now deploys using Python 3.8.6. - New `datasette publish heroku --tar=` option. ([#969](https://github.com/simonw/datasette/issues/969)) - `OPTIONS` requests against HTML pages no longer return a 500 error. ([#1001](https://github.com/simonw/datasette/issues/1001)) - Datasette now supports Python 3.9.",107914493,datasette, https://github.com/simonw/datasette/releases/tag/0.50.1,32395303,MDc6UmVsZWFzZTMyMzk1MzAz,0.50.1,main,0.50.1,0,9599,simonw,0,2020-10-10T00:41:35Z,2020-10-10T00:44:23Z,"- Fixed a bug introduced in 0.50 where the export as JSON/CSV links on the table, row and query pages were broken. (#1010) ",107914493,datasette, https://github.com/simonw/datasette/releases/tag/0.50.2,32397338,MDc6UmVsZWFzZTMyMzk3MzM4,0.50.2,main,0.50.2,0,9599,simonw,0,2020-10-10T03:53:47Z,2020-10-10T03:59:18Z,"* Fixed another bug introduced in 0.50 where column header links on the table page were broken. (#1011) ",107914493,datasette, https://github.com/dogsheep/evernote-to-sqlite/releases/tag/0.1,32428098,MDc6UmVsZWFzZTMyNDI4MDk4,0.1,main,0.1,0,9599,simonw,0,2020-10-11T21:46:09Z,2020-10-11T21:47:39Z,"- Initial release, with support for importing ENEX files.",303218369,evernote-to-sqlite, https://github.com/dogsheep/evernote-to-sqlite/releases/tag/0.2,32429687,MDc6UmVsZWFzZTMyNDI5Njg3,0.2,main,0.2,0,9599,simonw,0,2020-10-12T00:05:21Z,2020-10-12T00:07:24Z,"- Notes now use an ID derived from a hash of their contents. #3 - Date columns are now in ISO format, and indexd. #4 - Notes and resources table now have full-text search configured. #4 - Improved how OCR is stored in the database, only storing the most confident matches. #6",303218369,evernote-to-sqlite, https://github.com/dogsheep/swarm-to-sqlite/releases/tag/0.3.2,32470830,MDc6UmVsZWFzZTMyNDcwODMw,0.3.2,main,0.3.2,0,9599,simonw,0,2020-10-12T20:31:24Z,2020-10-12T20:33:48Z,"- Fix for ""table photos has no column named hasSticker"" bug, thanks @mattiaborsoi. #10 - Switched CI to GitHub Actions.",205429375,swarm-to-sqlite, https://github.com/simonw/sqlite-utils/releases/tag/2.22,32688819,MDc6UmVsZWFzZTMyNjg4ODE5,2.22,main,2.22,0,9599,simonw,0,2020-10-16T19:30:25Z,2020-10-16T19:31:45Z,"- New `--encoding` option for processing CSV and TSV files that use a non-utf-8 encoding, for both the `insert` and `update` commands. ([#182](https://github.com/simonw/sqlite-utils/issues/182)) - The `--load-extension` option is now available to many more commands. ([#137](https://github.com/simonw/sqlite-utils/issues/137)) - `--load-extension=spatialite` can be used to load SpatiaLite from common installation locations, if it is available. ([#136](https://github.com/simonw/sqlite-utils/issues/136)) - Tests now also run against Python 3.9. ([#184](https://github.com/simonw/sqlite-utils/issues/184)) - Passing `pk=[""id""]` now has the same effect as passing `pk=""id""`. ([#181](https://github.com/simonw/sqlite-utils/issues/181))",140912432,sqlite-utils, https://github.com/dogsheep/healthkit-to-sqlite/releases/tag/1.0,32712413,MDc6UmVsZWFzZTMyNzEyNDEz,1.0,main,1.0,0,9599,simonw,0,2020-10-17T21:15:29Z,2020-10-17T21:17:34Z,"- Fixed a bug where export files generated in languages other than English failed to import. #11 - CI now uses GitHub Actions",197882382,healthkit-to-sqlite, https://github.com/dogsheep/dogsheep-beta/releases/tag/0.9,32713381,MDc6UmVsZWFzZTMyNzEzMzgx,0.9,main,0.9,0,9599,simonw,0,2020-10-17T23:01:38Z,2020-10-17T23:03:04Z,"- Facet by date. #16 - Now depends on [Datasette 0.50.2](https://docs.datasette.io/en/stable/changelog.html#v0-50-2) - Uses `datasette.client` and passes through authentication cookies. #28 ",197431109,dogsheep-beta, https://github.com/dogsheep/github-to-sqlite/releases/tag/2.7,32736481,MDc6UmVsZWFzZTMyNzM2NDgx,2.7,main,2.7,0,9599,simonw,0,2020-10-19T05:36:32Z,2020-10-19T05:38:34Z,"- `github-to-sqlite repos` command now takes options `--readme` and `--readme-html`, which write the README or rendered HTML README into the `readme` or `readme_html` columns, respectively. #52 - New `--accept` option for `github-to-sqlite get`. #50",207052882,github-to-sqlite, https://github.com/simonw/datasette/releases/tag/0.51a0,32791115,MDc6UmVsZWFzZTMyNzkxMTE1,0.51a0,main,0.51a0,0,9599,simonw,1,2020-10-20T05:31:14Z,2020-10-20T05:33:01Z,"- Fixed a bunch of issues relating to the [base_url](https://docs.datasette.io/en/latest/config.html#config-base-url) setting. ([#1023](https://github.com/simonw/datasette/issues/1023)) - New `datasette.urls` URL builder for plugins, see [Building URLs within plugins](https://docs.datasette.io/en/latest/writing_plugins.html#writing-plugins-building-urls). ([#904](https://github.com/simonw/datasette/issues/904)) - Removed `--debug` option, which didn't do anything. ([#814](https://github.com/simonw/datasette/issues/814)) - `Link:` HTTP header pagination. ([#1014](https://github.com/simonw/datasette/issues/1014)) - `x` button for clearing filters. ([#1016](https://github.com/simonw/datasette/issues/1016)) - Edit SQL button on canned queries, ([#1019](https://github.com/simonw/datasette/issues/1019)) - `--load-extension=spatialite` shortcut. ([#1028](https://github.com/simonw/datasette/issues/1028))",107914493,datasette, https://github.com/dogsheep/pocket-to-sqlite/releases/tag/0.2.1,32891952,MDc6UmVsZWFzZTMyODkxOTUy,0.2.1,master,0.2.1,0,9599,simonw,0,2020-10-22T00:06:50Z,2020-10-22T00:08:24Z,- Tweaked dependencies for compatibility with new PyPI resolver.,213286752,pocket-to-sqlite, https://github.com/dogsheep/inaturalist-to-sqlite/releases/tag/0.2.1,32891966,MDc6UmVsZWFzZTMyODkxOTY2,0.2.1,master,0.2.1,0,9599,simonw,0,2020-10-22T00:08:29Z,2020-10-22T00:08:58Z,"- Tweaked dependencies for compatibility with new PyPI resolver. ",206202864,inaturalist-to-sqlite, https://github.com/simonw/sqlite-utils/releases/tag/2.23,33188958,MDc6UmVsZWFzZTMzMTg4OTU4,2.23,main,2.23,0,9599,simonw,0,2020-10-28T21:38:10Z,2020-10-28T21:38:54Z,"- `table.m2m(other_table, records)` method now takes any iterable, not just a list or tuple. Thanks, Adam Wolf. ([#189](https://github.com/simonw/sqlite-utils/pull/189)) - `sqlite-utils insert` now displays a progress bar for CSV or TSV imports. ([#173](https://github.com/simonw/sqlite-utils/issues/173)) - New `@db.register_function(deterministic=True)` option for registering deterministic SQLite functions in Python 3.8 or higher. ([#191](https://github.com/simonw/sqlite-utils/issues/191))",140912432,sqlite-utils, https://github.com/simonw/datasette/releases/tag/0.51a1,33253780,MDc6UmVsZWFzZTMzMjUzNzgw,0.51a1,main,0.51a1,0,9599,simonw,1,2020-10-30T05:35:23Z,2020-10-30T05:37:34Z,"- New colour scheme and improved visual design, courtesy of Natalie Downe. ([#1056](https://github.com/simonw/datasette/pull/1056)) - scale-in animation for column action menu. ([#1039](https://github.com/simonw/datasette/issues/1039)) - Wide tables now scroll horizontally. ([#998](https://github.com/simonw/datasette/issues/998)) - Option to pass a list of templates to `.render_template()` is now documented. ([#1045](https://github.com/simonw/datasette/issues/1045)) - New `datasette.urls.static_plugins()` method. ([#1033](https://github.com/simonw/datasette/issues/1033)) - `BLOB` column values can now be downloaded directly from the Datasette UI. ([#1036](https://github.com/simonw/datasette/issues/1036)) - `.csv` exports now link to direct `BLOB` downloads. ([#1034](https://github.com/simonw/datasette/issues/1034)) - `datasette -o` option now opens the most relevant page. ([#976](https://github.com/simonw/datasette/issues/976)) - `datasette --cors` option now enables access to `/database.db` downloads. ([#1057](https://github.com/simonw/datasette/issues/1057)) - Database file downloads now implement cascading permissions, so you can download a database if you have `view-database-download` permission even if you do not have permission to access the Datasette instance. ([#1058](https://github.com/simonw/datasette/issues/1058)) - New documentation on [Designing URLs for your plugin](https://docs.datasette.io/en/latest/writing_plugins.html#writing-plugins-designing-urls). ([#1053](https://github.com/simonw/datasette/issues/1053)) - New navigation menu plus a [menu_links(datasette, actor)](https://docs.datasette.io/en/latest/plugin_hooks.html#plugin-hook-menu-links) plugin hook to customize it. ([#1064](https://github.com/simonw/datasette/issues/1064)) - [table_actions(datasette, actor, database, table)](https://docs.datasette.io/en/latest/plugin_hooks.html#plugin-hook-table-actions) plugin hook for the new table actions menu. ([#1066](https://github.com/simonw/datasette/issues/1066))",107914493,datasette, https://github.com/simonw/datasette/releases/tag/0.51a2,33284522,MDc6UmVsZWFzZTMzMjg0NTIy,0.51a2,main,0.51a2,0,9599,simonw,1,2020-10-30T17:56:02Z,2020-10-30T17:57:53Z,"- New [load_template(template, request, datasette)](https://docs.datasette.io/en/latest/plugin_hooks.html#plugin-hook-load-template) plugin hook. ([#1042](https://github.com/simonw/datasette/issues/1042)) - New [debug-menu](https://docs.datasette.io/en/latest/authentication.html#permissions-debug-menu) permission. ([#1068](https://github.com/simonw/datasette/issues/1068))",107914493,datasette, https://github.com/simonw/datasette/releases/tag/0.51,33311677,MDc6UmVsZWFzZTMzMzExNjc3,0.51,main,0.51,0,9599,simonw,0,2020-10-31T22:24:54Z,2020-10-31T22:29:33Z,"A new visual design, plugin hooks for adding navigation options, better handling of binary data, URL building utility methods and better support for running Datasette behind a proxy. ### New visual design Datasette is no longer white and grey with blue and purple links! [Natalie Downe](https://twitter.com/natbat) has been working on a visual refresh, the first iteration of which is included in this release. ([#1056](https://github.com/simonw/datasette/pull/1056)) ![datasette-0 51](https://user-images.githubusercontent.com/9599/97791267-d9011e80-1b8d-11eb-9b1b-42908266f36f.png) ### Plugins can now add links within Datasette A number of existing Datasette plugins add new pages to the Datasette interface, providig tools for things like [uploading CSVs](https://github.com/simonw/datasette-upload-csvs), [editing table schemas](https://github.com/simonw/datasette-edit-schema) or [configuring full-text search](https://github.com/simonw/datasette-configure-fts). Plugins like this can now link to themselves from other parts of Datasette interface. The [menu_links(datasette, actor)](https://docs.datasette.io/en/stable/plugin_hooks.html#plugin-hook-menu-links) hook ([#1064](https://github.com/simonw/datasette/issues/1064)) lets plugins add links to Datasette's new top-right application menu, and the [table_actions(datasette, actor, database, table)](https://docs.datasette.io/en/stable/plugin_hooks.html#plugin-hook-table-actions) hook ([#1066](https://github.com/simonw/datasette/issues/1066)) adds links to a new ""table actions"" menu on the table page. The demo at [latest.datasette.io](https://latest.datasette.io/) now includes some example plugins. To see the new table actions menu first [sign into that demo as root](https://latest.datasette.io/login-as-root) and then visit the [facetable](https://latest.datasette.io/fixtures/facetable) table to see the new cog icon menu at the top of the page. ### Binary data SQLite tables can contain binary data in `BLOB` columns. Datasette now provides links for users to download this data directly from Datasette, and uses those links to make binary data available from CSV exports. See [Binary data](https://docs.datasette.io/en/stable/binary_data.html#binary) for more details. ([#1036](https://github.com/simonw/datasette/issues/1036) and [#1034](https://github.com/simonw/datasette/issues/1034)). ### URL building The new [datasette.urls](https://docs.datasette.io/en/stable/internals.html#internals-datasette-urls) family of methods can be used to generate URLs to key pages within the Datasette interface, both within custom templates and Datasette plugins. See [Building URLs within plugins](https://docs.datasette.io/en/stable/writing_plugins.html#writing-plugins-building-urls) for more details. ([#904](https://github.com/simonw/datasette/issues/904)) ### Running Datasette behind a proxy The [base_url](https://docs.datasette.io/en/stable/config.html#config-base-url) configuration option is designed to help run Datasette on a specific path behind a proxy - for example if you want to run an instance of Datasette at `/my-datasette/` within your existing site's URL hierarchy, proxied behind nginx or Apache. Support for this configuration option has been greatly improved ([#1023](https://github.com/simonw/datasette/issues/1023)), and guidelines for using it are now available in a new documentation section on [Running Datasette behind a proxy](https://docs.datasette.io/en/stable/deploying.html#deploying-proxy). ([#1027](https://github.com/simonw/datasette/issues/1027)) ### Smaller changes - Wide tables shown within Datasette now scroll horizontally ([#998](https://github.com/simonw/datasette/issues/998)). This is achieved using a new `
` element which may impact the implementation of some plugins (for example [this change to datasette-cluster-map](https://github.com/simonw/datasette-cluster-map/commit/fcb4abbe7df9071c5ab57defd39147de7145b34e)). - New [debug-menu](https://docs.datasette.io/en/stable/authentication.html#permissions-debug-menu) permission. ([#1068](https://github.com/simonw/datasette/issues/1068)) - Removed `--debug` option, which didn't do anything. ([#814](https://github.com/simonw/datasette/issues/814)) - `Link:` HTTP header pagination. ([#1014](https://github.com/simonw/datasette/issues/1014)) - `x` button for clearing filters. ([#1016](https://github.com/simonw/datasette/issues/1016)) - Edit SQL button on canned queries, ([#1019](https://github.com/simonw/datasette/issues/1019)) - `--load-extension=spatialite` shortcut. ([#1028](https://github.com/simonw/datasette/issues/1028)) - scale-in animation for column action menu. ([#1039](https://github.com/simonw/datasette/issues/1039)) - Option to pass a list of templates to `.render_template()` is now documented. ([#1045](https://github.com/simonw/datasette/issues/1045)) - New `datasette.urls.static_plugins()` method. ([#1033](https://github.com/simonw/datasette/issues/1033)) - `datasette -o` option now opens the most relevant page. ([#976](https://github.com/simonw/datasette/issues/976)) - `datasette --cors` option now enables access to `/database.db` downloads. ([#1057](https://github.com/simonw/datasette/issues/1057)) - Database file downloads now implement cascading permissions, so you can download a database if you have `view-database-download` permission even if you do not have permission to access the Datasette instance. ([#1058](https://github.com/simonw/datasette/issues/1058)) - New documentation on [Designing URLs for your plugin](https://docs.datasette.io/en/stable/writing_plugins.html#writing-plugins-designing-urls). ([#1053](https://github.com/simonw/datasette/issues/1053))",107914493,datasette, https://github.com/simonw/datasette/releases/tag/0.51.1,33314301,MDc6UmVsZWFzZTMzMzE0MzAx,0.51.1,main,0.51.1,0,9599,simonw,0,2020-11-01T03:33:47Z,2020-11-01T03:34:36Z,- Improvements to the new [Binary data](https://docs.datasette.io/en/stable/binary_data.html#binary) documentation page.,107914493,datasette, https://github.com/simonw/sqlite-utils/releases/tag/3.0a0,33591216,MDc6UmVsZWFzZTMzNTkxMjE2,3.0a0,main,3.0a0,0,9599,simonw,1,2020-11-07T01:22:24Z,2020-11-07T01:24:43Z,"This release introduces a new `sqlite-utils search` command for searching tables, see [Executing searches](https://sqlite-utils.readthedocs.io/en/latest/cli.html#cli-search). ([#192](https://github.com/simonw/sqlite-utils/issues/192)) The `table.search()` method has been redesigned, see [Searching with table.search()](https://sqlite-utils.readthedocs.io/en/latest/python-api.html#python-api-fts-search). ([#197](https://github.com/simonw/sqlite-utils/issues/197)) The release includes minor backwards-incompatible changes, hence the version bump to 3.0. Those changes, which should not affect most users, are: - The `-c` shortcut option for outputting CSV is no longer available. The full `--csv` option is required instead. - The `-f` shortcut for `--fmt` has also been removed - use `--fmt`. - The `table.search()` method now defaults to sorting by relevance, not sorting by `rowid`. ([#198](https://github.com/simonw/sqlite-utils/issues/198)) - The `table.search()` method now returns a generator over a list of Python dictionaries. It previously returned a list of tuples. Also in this release: - The `query`, `tables`, `rows` and `search` CLI commands now accept a new `--tsv` option which outputs the results in TSV. ([#193](https://github.com/simonw/sqlite-utils/issues/193)) - A new `table.virtual_table_using` property reveals if a table is a virtual table, and returns the upper case type of virtual table (e.g. `FTS4` or `FTS5`) if it is. It returns `None` if the table is not a virtual table. ([#196](https://github.com/simonw/sqlite-utils/issues/196)) - The new `table.search_sql()` method returns the SQL for searching a table, see [Building SQL queries with table.search_sql()](https://sqlite-utils.readthedocs.io/en/latest/python-api.html#python-api-fts-search-sql). - `sqlite-utils rows` now accepts multiple optional `-c` parameters specifying the columns to return. ([#200](https://github.com/simonw/sqlite-utils/issues/200))",140912432,sqlite-utils, https://github.com/simonw/sqlite-utils/releases/tag/3.0,33615120,MDc6UmVsZWFzZTMzNjE1MTIw,3.0,main,3.0,0,9599,simonw,0,2020-11-08T17:23:38Z,2020-11-08T17:24:27Z,"This release introduces a new `sqlite-utils search` command for searching tables, see [Executing searches](https://sqlite-utils.readthedocs.io/en/latest/cli.html#cli-search). ([#192](https://github.com/simonw/sqlite-utils/issues/192)) The `table.search()` method has been redesigned, see [Searching with table.search()](https://sqlite-utils.readthedocs.io/en/latest/python-api.html#python-api-fts-search). ([#197](https://github.com/simonw/sqlite-utils/issues/197)) The release includes minor backwards-incompatible changes, hence the version bump to 3.0. Those changes, which should not affect most users, are: - The `-c` shortcut option for outputting CSV is no longer available. The full `--csv` option is required instead. - The `-f` shortcut for `--fmt` has also been removed - use `--fmt`. - The `table.search()` method now defaults to sorting by relevance, not sorting by `rowid`. ([#198](https://github.com/simonw/sqlite-utils/issues/198)) - The `table.search()` method now returns a generator over a list of Python dictionaries. It previously returned a list of tuples. Also in this release: - The `query`, `tables`, `rows` and `search` CLI commands now accept a new `--tsv` option which outputs the results in TSV. ([#193](https://github.com/simonw/sqlite-utils/issues/193)) - A new `table.virtual_table_using` property reveals if a table is a virtual table, and returns the upper case type of virtual table (e.g. `FTS4` or `FTS5`) if it is. It returns `None` if the table is not a virtual table. ([#196](https://github.com/simonw/sqlite-utils/issues/196)) - The new `table.search_sql()` method returns the SQL for searching a table, see [Building SQL queries with table.search_sql()](https://sqlite-utils.readthedocs.io/en/latest/python-api.html#python-api-fts-search-sql). - `sqlite-utils rows` now accepts multiple optional `-c` parameters specifying the columns to return. ([#200](https://github.com/simonw/sqlite-utils/issues/200)) Changes since the 3.0a0 alpha release: - The `sqlite-utils search` command now defaults to returning every result, unless you add a `--limit 20` option. - The `sqlite-utils search -c` and `table.search(columns=[])` options are now fully respected. ([#201](https://github.com/simonw/sqlite-utils/issues/201))",140912432,sqlite-utils, https://github.com/simonw/datasette/releases/tag/0.52,34539374,MDc6UmVsZWFzZTM0NTM5Mzc0,0.52,main,0.52,0,9599,simonw,0,2020-11-28T23:54:35Z,2020-11-28T23:57:12Z,"This release includes a number of changes relating to an internal rebranding effort: Datasette's **configuration** mechanism (things like `datasette --config default_page_size:10`) has been renamed to **settings**. - New `--setting default_page_size 10` option as a replacement for `--config default_page_size:10` (note the lack of a colon). The `--config` option is deprecated but will continue working until Datasette 1.0. ([#992](https://github.com/simonw/datasette/issues/992)) - The `/-/config` introspection page is now `/-/settings`, and the previous page redirects to the new one. ([#1103](https://github.com/simonw/datasette/issues/1103)) - The `config.json` file in [Configuration directory mode](https://docs.datasette.io/en/stable/settings.html#config-dir) is now called `settings.json`. ([#1104](https://github.com/simonw/datasette/issues/1104)) - The undocumented `datasette.config()` internal method has been replaced by a documented [.setting(key)](https://docs.datasette.io/en/stable/internals.html#datasette-setting) method. ([#1107](https://github.com/simonw/datasette/issues/1107)) Also in this release: - New plugin hook: [database_actions(datasette, actor, database)](https://docs.datasette.io/en/stable/plugin_hooks.html#plugin-hook-database-actions), which adds menu items to a new cog menu shown at the top of the database page. ([#1077](https://github.com/simonw/datasette/issues/1077)) - `datasette publish cloudrun` has a new `--apt-get-install` option that can be used to install additional Ubuntu packages as part of the deployment. This is useful for deploying the new [datasette-ripgrep plugin](https://github.com/simonw/datasette-ripgrep). ([#1110](https://github.com/simonw/datasette/issues/1110)) - Swept the documentation to remove words that minimize involved difficulty. ([#1089](https://github.com/simonw/datasette/issues/1089)) And some bug fixes: - Foreign keys linking to rows with blank label columns now display as a hyphen, allowing those links to be clicked. ([#1086](https://github.com/simonw/datasette/issues/1086)) - Fixed bug where row pages could sometimes 500 if the underlying queries exceeded a time limit. ([#1088](https://github.com/simonw/datasette/issues/1088)) - Fixed a bug where the table action menu could appear partially obscured by the edge of the page. ([#1084](https://github.com/simonw/datasette/issues/1084))",107914493,datasette, https://github.com/simonw/datasette/releases/tag/0.52.1,34551688,MDc6UmVsZWFzZTM0NTUxNjg4,0.52.1,main,0.52.1,0,9599,simonw,0,2020-11-29T19:38:29Z,2020-11-29T19:39:52Z,"- Documentation on [Testing plugins](https://docs.datasette.io/en/stable/testing_plugins.html#testing-plugins) now recommends using [datasette.client](https://docs.datasette.io/en/stable/internals.html#internals-datasette-client). ([#1102](https://github.com/simonw/datasette/issues/1102)) - Fix bug where compound foreign keys produced broken links. ([#1098](https://github.com/simonw/datasette/issues/1098)) - `datasette --load-module=spatialite` now also checks for `/usr/local/lib/mod_spatialite.so`. Thanks, Dan Peterson. ([#1114](https://github.com/simonw/datasette/issues/1114))",107914493,datasette, https://github.com/dogsheep/github-to-sqlite/releases/tag/2.8,34556308,MDc6UmVsZWFzZTM0NTU2MzA4,2.8,main,2.8,0,9599,simonw,0,2020-11-30T01:40:37Z,2020-11-30T01:41:38Z,"- New command: `github-to-sqlite workflows`, for fetching the YAML configuration used by [GitHub Actions](https://github.com/features/actions) workflows and using it to populate new `workflows`, `jobs` and `steps` tables. #54 - New command: `github-to-sqlite pull-requests` - thanks, @adamjonas! #48 - `github-to-sqlite issues --issue` option can now be used multiple times.",207052882,github-to-sqlite, https://github.com/dogsheep/github-to-sqlite/releases/tag/2.8.1,34558928,MDc6UmVsZWFzZTM0NTU4OTI4,2.8.1,main,2.8.1,0,9599,simonw,0,2020-11-30T04:16:41Z,2020-11-30T04:18:21Z,"- README now links to example database tables for each command. #56 - Added documentation for `github-to-sqlite releases`.",207052882,github-to-sqlite, https://github.com/simonw/datasette/releases/tag/0.52.2,34725716,MDc6UmVsZWFzZTM0NzI1NzE2,0.52.2,main,0.52.2,0,9599,simonw,0,2020-12-03T00:57:40Z,2020-12-03T00:58:43Z,"- Generated columns from SQLite 3.31.0 or higher are now correctly displayed. ([#1116](https://github.com/simonw/datasette/issues/1116)) - Error message if you attempt to open a SpatiaLite database now suggests using `--load-extension=spatialite` if it detects that the extension is available in a common location. ([#1115](https://github.com/simonw/datasette/issues/1115)) - `OPTIONS` requests against the `/database` page no longer raise a 500 error. ([#1100](https://github.com/simonw/datasette/issues/1100)) - Databases larger than 32MB that are published to Cloud Run can now be downloaded. ([#749](https://github.com/simonw/datasette/issues/749)) - Fix for misaligned cog icon on table and database pages. Thanks, Abdussamet Koçak. ([#1121](https://github.com/simonw/datasette/issues/1121))",107914493,datasette, https://github.com/simonw/datasette/releases/tag/0.52.3,34782337,MDc6UmVsZWFzZTM0NzgyMzM3,0.52.3,main,0.52.3,0,9599,simonw,0,2020-12-03T19:07:05Z,2020-12-03T19:08:29Z,- Fixed bug where static assets would 404 for Datasette installed on ARM Amazon Linux. ([#1124](https://github.com/simonw/datasette/issues/1124>)),107914493,datasette, https://github.com/simonw/datasette/releases/tag/0.52.4,34882011,MDc6UmVsZWFzZTM0ODgyMDEx,0.52.4,main,0.52.4,0,9599,simonw,0,2020-12-05T19:42:42Z,2020-12-05T19:42:57Z,"- Show [pysqlite3](https://github.com/coleifer/pysqlite3) version on `/-/versions`, if installed. ([#1125](https://github.com/simonw/datasette/issues/1125)) - Errors output by Datasette (e.g. for invalid SQL queries) now go to `stderr`, not `stdout`. ([#1131](https://github.com/simonw/datasette/issues/1131)) - Fix for a startup error on windows caused by unnecessary `from os import EX_CANTCREAT` - thanks, Abdussamet Koçak. ([#1094](https://github.com/simonw/datasette/issues/1094))",107914493,datasette, https://github.com/simonw/datasette/releases/tag/0.52.5,35063580,MDc6UmVsZWFzZTM1MDYzNTgw,0.52.5,0.52.x,0.52.5,0,9599,simonw,0,2020-12-09T20:03:44Z,2020-12-09T20:10:23Z,- Fix for error caused by combining the `_searchmode=raw` and `?_search_COLUMN` parameters. ([#1134](https://github.com/simonw/datasette/issues/1134)),107914493,datasette, https://github.com/simonw/datasette/releases/tag/0.53,35131848,MDc6UmVsZWFzZTM1MTMxODQ4,0.53,main,0.53,0,9599,simonw,0,2020-12-11T01:44:36Z,2020-12-11T01:46:44Z,"Datasette has an official project website now, at . This release mainly updates the documentation to reflect the new site. - New `?column__arraynotcontains=` table filter. ([#1132](https://github.com/simonw/datasette/issues/1132)) - `datasette serve` has a new `--create` option, which will create blank database files if they do not already exist rather than exiting with an error. ([#1135](https://github.com/simonw/datasette/issues/1135)) - New `?_header=off` option for CSV export which omits the CSV header row, [documented here](https://docs.datasette.io/en/stable/csv_export.html#csv-export-url-parameters). ([#1133](https://github.com/simonw/datasette/issues/1133)) - ""Powered by Datasette"" link in the footer now links to . ([#1138](https://github.com/simonw/datasette/issues/1138)) - Project news no longer lives in the README - it can now be found at . ([#1137](https://github.com/simonw/datasette/issues/1137))",107914493,datasette, https://github.com/simonw/sqlite-utils/releases/tag/3.1,35200016,MDc6UmVsZWFzZTM1MjAwMDE2,3.1,main,3.1,0,9599,simonw,0,2020-12-13T07:30:59Z,2020-12-13T07:31:40Z,"- New command: `sqlite-utils analyze-tables my.db` outputs useful information about the table columns in the database, such as the number of distinct values and how many rows are null. See [Analyzing tables](https://sqlite-utils.readthedocs.io/en/stable/cli.html#cli-analyze-tables) for documentation. ([#207](https://github.com/simonw/sqlite-utils/issues/207)) - New `table.analyze_column(column)` Python method used by the `analyze-tables` command - see [Analyzing a column](https://sqlite-utils.readthedocs.io/en/stable/python-api.html#python-api-analyze-column). - The `table.update()` method now correctly handles values that should be stored as JSON. Thanks, Andreas Madsack. ([#204](https://github.com/simonw/sqlite-utils/pull/204))",140912432,sqlite-utils, https://github.com/dogsheep/github-to-sqlite/releases/tag/2.8.2,35374715,MDc6UmVsZWFzZTM1Mzc0NzE1,2.8.2,main,2.8.2,0,9599,simonw,0,2020-12-16T19:20:36Z,2020-12-16T19:21:58Z,"- `--readme` now stores `null` if the README file does not exist, rather than throwing an error. #57 - README HTML is rewritten to fix broken internal links, e.g. for a table of contents. #58 ",207052882,github-to-sqlite, https://github.com/dogsheep/dogsheep-beta/releases/tag/0.10,35382391,MDc6UmVsZWFzZTM1MzgyMzkx,0.10,main,0.10,0,9599,simonw,0,2020-12-16T21:27:04Z,2020-12-16T21:28:13Z,"- Now depends on [sqlite-utils](https://github.com/simonw/sqlite-utils) >= 3.0. #30 - The user's original search term is now passed to the `display_sql` SQL query as the `:q` parameter. #29 ",197431109,dogsheep-beta, https://github.com/dogsheep/dogsheep-beta/releases/tag/0.10.1,35520026,MDc6UmVsZWFzZTM1NTIwMDI2,0.10.1,main,0.10.1,0,9599,simonw,0,2020-12-19T06:18:01Z,2020-12-19T06:19:13Z,- Fix for error if search query contains hyphens such as `github-to-sqlite`. #31 ,197431109,dogsheep-beta, https://github.com/simonw/sqlite-utils/releases/tag/3.1.1,35902315,MDc6UmVsZWFzZTM1OTAyMzE1,3.1.1,main,3.1.1,0,9599,simonw,0,2021-01-01T23:56:20Z,2021-01-01T23:57:07Z,"- Fixed failing test caused by `optimize` sometimes creating larger database files. ([#209](https://github.com/simonw/sqlite-utils/issues/209)) - Documentation now lives on - README now includes `brew install sqlite-utils` installation method.",140912432,sqlite-utils, https://github.com/simonw/sqlite-utils/releases/tag/3.2,35930040,MDc6UmVsZWFzZTM1OTMwMDQw,3.2,main,3.2,0,9599,simonw,0,2021-01-03T21:15:26Z,2021-01-03T21:17:37Z,"This release introduces a new mechanism for speeding up `count(*)` queries using cached table counts, stored in a `_counts` table and updated by triggers. This mechanism is described in [Cached table counts using triggers](https://sqlite-utils.datasette.io/en/stable/python-api.html#python-api-cached-table-counts), and can be enabled using Python API methods or the new `enable-counts` CLI command. ([#212](https://github.com/simonw/sqlite-utils/issues/212)) - `table.enable_counts()` method for enabling these triggers on a specific table. - `db.enable_counts()` method for enabling triggers on every table in the database. ([#213](https://github.com/simonw/sqlite-utils/issues/213)) - New `sqlite-utils enable-counts my.db` command for enabling counts on all or specific tables, see [Enabling cached counts](https://sqlite-utils.datasette.io/en/stable/cli.html#cli-enable-counts). ([#214](https://github.com/simonw/sqlite-utils/issues/214)) - New `sqlite-utils triggers` command for listing the triggers defined for a database or specific tables, see [Listing triggers](https://sqlite-utils.datasette.io/en/stable/cli.html#cli-triggers). ([#218](https://github.com/simonw/sqlite-utils/issues/218)) - New `db.use_counts_table` property which, if `True`, causes `table.count` to read from the `_counts` table. ([#215](https://github.com/simonw/sqlite-utils/issues/215)) - `table.has_counts_triggers` property revealing if a table has been configured with the new `_counts` database triggers. - `db.reset_counts()` method and `sqlite-utils reset-counts` command for resetting the values in the `_counts` table. ([#219](https://github.com/simonw/sqlite-utils/issues/219)) - The previously undocumented `db.escape()` method has been renamed to `db.quote()` and is now covered by the documentation: [Quoting strings for use in SQL](https://sqlite-utils.datasette.io/en/stable/python-api.html#python-api-quote). ([#217](https://github.com/simonw/sqlite-utils/issues/217)) - New `table.triggers_dict` and `db.triggers_dict` introspection properties. ([#211](https://github.com/simonw/sqlite-utils/issues/211), [#216](https://github.com/simonw/sqlite-utils/issues/216)) - `sqlite-utils insert` now shows a more useful error message for invalid JSON. ([#206](https://github.com/simonw/sqlite-utils/issues/206))",140912432,sqlite-utils, https://github.com/simonw/sqlite-utils/releases/tag/3.2.1,36307444,MDc6UmVsZWFzZTM2MzA3NDQ0,3.2.1,main,3.2.1,0,9599,simonw,0,2021-01-12T23:22:53Z,2021-01-12T23:23:25Z,- Fixed a bug where `.add_missing_columns()` failed to take case insensitive column names into account. ([#221](https://github.com/simonw/sqlite-utils/issues/221)),140912432,sqlite-utils, https://github.com/simonw/sqlite-utils/releases/tag/3.3,36530216,MDc6UmVsZWFzZTM2NTMwMjE2,3.3,main,3.3,0,9599,simonw,0,2021-01-18T04:28:24Z,2021-01-18T04:29:48Z,- The `table.m2m()` method now accepts an optional `alter=True` argument to specify that any missing columns should be added to the referenced table. See [Working with many-to-many relationships](https://sqlite-utils.datasette.io/en/stable/python-api.html#python-api-m2m). ([#222](https://github.com/simonw/sqlite-utils/issues/222)),140912432,sqlite-utils, https://github.com/dogsheep/swarm-to-sqlite/releases/tag/0.3.3,36530359,MDc6UmVsZWFzZTM2NTMwMzU5,0.3.3,main,0.3.3,0,9599,simonw,0,2021-01-18T04:34:56Z,2021-01-18T04:36:03Z,- Fixed bug where tool could crash with an error about missing columns. #11,205429375,swarm-to-sqlite, https://github.com/simonw/datasette/releases/tag/0.54a0,36623336,MDc6UmVsZWFzZTM2NjIzMzM2,0.54a0,main,0.54a0,0,9599,simonw,1,2021-01-19T20:50:12Z,2021-01-19T20:51:13Z,"**Alpha release**. Release notes in progress. - Improved support for named in-memory databases. ([#1151](https://github.com/simonw/datasette/issues/1151)) - New `_internal` in-memory database tracking attached databases, tables and columns. ([#1150](https://github.com/simonw/datasette/issues/1150)) - Support for JavaScript modules. ([#1186](https://github.com/simonw/datasette/issues/1186), [#1187](https://github.com/simonw/datasette/issues/1187))",107914493,datasette, https://github.com/simonw/datasette/releases/tag/0.54,36871901,MDc6UmVsZWFzZTM2ODcxOTAx,0.54,main,0.54,0,9599,simonw,0,2021-01-25T17:35:06Z,2021-01-25T17:36:30Z,"The two big new features in this release are the `_internal` SQLite in-memory database storing details of all connected databases and tables, and support for JavaScript modules in plugins and additional scripts. For additional commentary on this release, see [Datasette 0.54, the annotated release notes](https://simonwillison.net/2021/Jan/25/datasette/). ### The _internal database As part of ongoing work to help Datasette handle much larger numbers of connected databases and tables (see [Datasette Library](https://github.com/simonw/datasette/issues/417)) Datasette now maintains an in-memory SQLite database with details of all of the attached databases, tables, columns, indexes and foreign keys. ([#1150](https://github.com/simonw/datasette/issues/1150)) This will support future improvements such as a searchable, paginated homepage of all available tables. You can explore an example of this database by [signing in as root](https://latest.datasette.io/login-as-root) to the `latest.datasette.io` demo instance and then navigating to [latest.datasette.io/_internal](https://latest.datasette.io/_internal). Plugins can use these tables to introspect attached data in an efficient way. Plugin authors should note that this is not yet considered a stable interface, so any plugins that use this may need to make changes prior to Datasette 1.0 if the `_internal` table schemas change. ### Named in-memory database support As part of the work building the `_internal` database, Datasette now supports named in-memory databases that can be shared across multiple connections. This allows plugins to create in-memory databases which will persist data for the lifetime of the Datasette server process. ([#1151](https://github.com/simonw/datasette/issues/1151)) The new `memory_name=` parameter to the [Database class](https://docs.datasette.io/en/stable/internals.html#internals-database) can be used to create named, shared in-memory databases. ### JavaScript modules [JavaScript modules](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules) were introduced in ECMAScript 2015 and provide native browser support for the `import` and `export` keywords. To use modules, JavaScript needs to be included in `