releases
344 rows
This data as json, CSV (advanced)
Suggested facets: target_commitish, prerelease, repo, created_at (date), published_at (date)
id ▼ | html_url | node_id | tag_name | target_commitish | name | draft | author | prerelease | created_at | published_at | body | repo | reactions |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
8546575 | https://github.com/simonw/datasette/releases/tag/0.12 | MDc6UmVsZWFzZTg1NDY1NzU= | 0.12 | main | Datasette 0.12 | 0 | simonw 9599 | 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 n… | datasette 107914493 | |
8652546 | https://github.com/simonw/datasette/releases/tag/0.13 | MDc6UmVsZWFzZTg2NTI1NDY= | 0.13 | main | Datasette 0.13: foreign key, search and filters | 0 | simonw 9599 | 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 … | datasette 107914493 | |
8841695 | https://github.com/simonw/datasette/releases/tag/0.14 | MDc6UmVsZWFzZTg4NDE2OTU= | 0.14 | main | Datasette 0.14: customization edition | 0 | simonw 9599 | 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 `<head>` 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=" } ] } … | datasette 107914493 | |
10458641 | https://github.com/simonw/datasette/releases/tag/0.15 | MDc6UmVsZWFzZTEwNDU4NjQx | 0.15 | main | Datasette 0.15: sort by column | 0 | simonw 9599 | 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 ([\… | datasette 107914493 | |
10542772 | https://github.com/simonw/datasette/releases/tag/0.16 | MDc6UmVsZWFzZTEwNTQyNzcy | 0.16 | main | Datasette 0.16: sort on mobile, better error handling | 0 | simonw 9599 | 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. | datasette 107914493 | |
10547491 | https://github.com/simonw/datasette/releases/tag/0.18 | MDc6UmVsZWFzZTEwNTQ3NDkx | 0.18 | main | Datasette 0.18: units | 0 | simonw 9599 | 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=<sqlite3.Connection object at 0x10bbb9f10>, 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/) | datasette 107914493 | |
10575542 | https://github.com/simonw/datasette/releases/tag/0.19 | MDc6UmVsZWFzZTEwNTc1NTQy | 0.19 | main | Datasette 0.19: plugins preview | 0 | simonw 9599 | 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/dat… | datasette 107914493 | |
10645022 | https://github.com/simonw/datasette/releases/tag/0.20 | MDc6UmVsZWFzZTEwNjQ1MDIy | 0.20 | main | Datasette 0.20: static assets and templates for plugins | 0 | simonw 9599 | 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 - <th> 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 <td>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 | datasette 107914493 | |
10868113 | https://github.com/simonw/datasette/releases/tag/0.21 | MDc6UmVsZWFzZTEwODY4MTEz | 0.21 | main | Datasette 0.21: New _shape=, new _size=, search within columns | 0 | simonw 9599 | 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` querystrin… | datasette 107914493 | |
11087850 | https://github.com/simonw/datasette/releases/tag/0.22 | MDc6UmVsZWFzZTExMDg3ODUw | 0.22 | main | Datasette 0.22: Datasette Facets | 0 | simonw 9599 | 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 #2… | datasette 107914493 | |
11136605 | https://github.com/simonw/datasette/releases/tag/0.22.1 | MDc6UmVsZWFzZTExMTM2NjA1 | 0.22.1 | main | Datasette 0.22.1 | 0 | simonw 9599 | 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] | datasette 107914493 | |
11530498 | https://github.com/simonw/datasette/releases/tag/0.23 | MDc6UmVsZWFzZTExNTMwNDk4 | 0.23 | main | Datasette 0.23: CSV, SpatiaLite and more | 0 | simonw 9599 | 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 | datasette 107914493 | |
11591352 | https://github.com/simonw/datasette/releases/tag/0.23.1 | MDc6UmVsZWFzZTExNTkxMzUy | 0.23.1 | main | Datasette 0.23.1 | 0 | simonw 9599 | 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 | datasette 107914493 | |
11825600 | https://github.com/simonw/datasette/releases/tag/0.23.2 | MDc6UmVsZWFzZTExODI1NjAw | 0.23.2 | main | Datasette 0.23.2 | 0 | simonw 9599 | 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 | datasette 107914493 | |
12080036 | https://github.com/simonw/datasette/releases/tag/0.24 | MDc6UmVsZWFzZTEyMDgwMDM2 | 0.24 | main | Datasette 0.24 | 0 | simonw 9599 | 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 | datasette 107914493 | |
12986637 | https://github.com/simonw/datasette/releases/tag/0.25 | MDc6UmVsZWFzZTEyOTg2NjM3 | 0.25 | master | Datasette 0.25 | 0 | simonw 9599 | 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 | datasette 107914493 | |
14560294 | https://github.com/simonw/datasette/releases/tag/0.25.1 | MDc6UmVsZWFzZTE0NTYwMjk0 | 0.25.1 | master | Datasette 0.25.1 | 0 | simonw 9599 | 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. | datasette 107914493 | |
14560304 | https://github.com/simonw/datasette/releases/tag/0.25.2 | MDc6UmVsZWFzZTE0NTYwMzA0 | 0.25.2 | master | Datasette 0.25.2 | 0 | simonw 9599 | 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 | datasette 107914493 | |
14914779 | https://github.com/simonw/datasette/releases/tag/0.26 | MDc6UmVsZWFzZTE0OTE0Nzc5 | 0.26 | master | Datasette 0.26 | 0 | simonw 9599 | 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) | datasette 107914493 | |
15175633 | https://github.com/simonw/sqlite-utils/releases/tag/0.7 | MDc6UmVsZWFzZTE1MTc1NjMz | 0.7 | master | 0.7 | 0 | simonw 9599 | 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 | sqlite-utils 140912432 | |
15206659 | https://github.com/simonw/datasette/releases/tag/0.26.1 | MDc6UmVsZWFzZTE1MjA2NjU5 | 0.26.1 | master | Datasette 0.26.1 | 0 | simonw 9599 | 0 | 2019-01-11T00:51:38Z | 2019-01-28T01:50:45Z | Release notes: https://datasette.readthedocs.io/en/stable/changelog.html#v0-26-1 | datasette 107914493 | |
15208430 | https://github.com/simonw/sqlite-utils/releases/tag/0.8 | MDc6UmVsZWFzZTE1MjA4NDMw | 0.8 | master | 0.8 | 0 | simonw 9599 | 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 | sqlite-utils 140912432 | |
15243253 | https://github.com/simonw/sqlite-utils/releases/tag/0.9 | MDc6UmVsZWFzZTE1MjQzMjUz | 0.9 | master | 0.9 | 0 | simonw 9599 | 0 | 2019-01-28T06:34:33Z | 2019-01-29T15:30:48Z | https://sqlite-utils.readthedocs.io/en/latest/changelog.html#v0-9 | sqlite-utils 140912432 | |
15389392 | https://github.com/simonw/datasette/releases/tag/0.27 | MDc6UmVsZWFzZTE1Mzg5Mzky | 0.27 | master | Datasette 0.27 | 0 | simonw 9599 | 0 | 2019-02-01T03:47:05Z | 2019-02-06T05:10:20Z | https://datasette.readthedocs.io/en/stable/changelog.html#v0-27 | datasette 107914493 | |
15439849 | https://github.com/simonw/sqlite-utils/releases/tag/0.10 | MDc6UmVsZWFzZTE1NDM5ODQ5 | 0.10 | master | 0.10 | 0 | simonw 9599 | 0 | 2019-02-07T05:17:52Z | 2019-02-08T05:19:33Z | https://sqlite-utils.readthedocs.io/en/latest/changelog.html#v0-10 | sqlite-utils 140912432 | |
15731282 | https://github.com/simonw/sqlite-utils/releases/tag/0.11 | MDc6UmVsZWFzZTE1NzMxMjgy | 0.11 | master | 0.11 | 0 | simonw 9599 | 0 | 2019-02-08T05:23:50Z | 2019-02-23T02:15:34Z | https://sqlite-utils.readthedocs.io/en/latest/changelog.html#v0-11 | sqlite-utils 140912432 | |
15731354 | https://github.com/simonw/sqlite-utils/releases/tag/0.12 | MDc6UmVsZWFzZTE1NzMxMzU0 | 0.12 | master | 0.12 | 0 | simonw 9599 | 0 | 2019-02-23T02:22:28Z | 2019-02-23T02:31:29Z | https://sqlite-utils.readthedocs.io/en/latest/changelog.html#v0-12 | sqlite-utils 140912432 | |
15739051 | https://github.com/simonw/sqlite-utils/releases/tag/0.13 | MDc6UmVsZWFzZTE1NzM5MDUx | 0.13 | master | 0.13 | 0 | simonw 9599 | 0 | 2019-02-24T06:54:43Z | 2019-02-24T07:00:14Z | https://sqlite-utils.readthedocs.io/en/latest/changelog.html#v0-13 | sqlite-utils 140912432 | |
15744513 | https://github.com/simonw/sqlite-utils/releases/tag/0.14 | MDc6UmVsZWFzZTE1NzQ0NTEz | 0.14 | master | 0.14 | 0 | simonw 9599 | 0 | 2019-02-24T23:11:51Z | 2019-02-24T23:15:16Z | https://sqlite-utils.readthedocs.io/en/latest/changelog.html#v0-14 | sqlite-utils 140912432 | |
17450414 | https://github.com/simonw/datasette/releases/tag/0.28 | MDc6UmVsZWFzZTE3NDUwNDE0 | 0.28 | master | Datasette 0.28 | 0 | simonw 9599 | 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. | datasette 107914493 | |
17583581 | https://github.com/simonw/sqlite-utils/releases/tag/1.0 | MDc6UmVsZWFzZTE3NTgzNTgx | 1.0 | master | 1.0 | 0 | simonw 9599 | 0 | 2019-05-25T01:06:38Z | 2019-05-25T01:19:21Z | https://sqlite-utils.readthedocs.io/en/latest/changelog.html#v1-0 | sqlite-utils 140912432 | |
17616531 | https://github.com/simonw/sqlite-utils/releases/tag/1.0.1 | MDc6UmVsZWFzZTE3NjE2NTMx | 1.0.1 | master | 1.0.1 | 0 | simonw 9599 | 0 | 2019-05-28T00:50:28Z | 2019-05-28T00:51:21Z | https://sqlite-utils.readthedocs.io/en/latest/changelog.html#v1-0-1 | sqlite-utils 140912432 | |
17645877 | https://github.com/simonw/sqlite-utils/releases/tag/1.1 | MDc6UmVsZWFzZTE3NjQ1ODc3 | 1.1 | master | 1.1 | 0 | simonw 9599 | 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) | sqlite-utils 140912432 | |
17961871 | https://github.com/simonw/sqlite-utils/releases/tag/1.2 | MDc6UmVsZWFzZTE3OTYxODcx | 1.2 | master | 1.2 | 0 | simonw 9599 | 0 | 2019-06-13T06:39:59Z | 2019-06-13T06:42:21Z | https://sqlite-utils.readthedocs.io/en/latest/changelog.html#v1-2 | sqlite-utils 140912432 | |
18132566 | https://github.com/simonw/sqlite-utils/releases/tag/1.2.1 | MDc6UmVsZWFzZTE4MTMyNTY2 | 1.2.1 | master | 1.2.1 | 0 | simonw 9599 | 0 | 2019-06-21T00:01:24Z | 2019-06-21T00:06:29Z | https://sqlite-utils.readthedocs.io/en/latest/changelog.html#v1-2-1 | sqlite-utils 140912432 | |
18226656 | https://github.com/simonw/sqlite-utils/releases/tag/1.2.2 | MDc6UmVsZWFzZTE4MjI2NjU2 | 1.2.2 | master | 1.2.2 | 0 | simonw 9599 | 0 | 2019-06-26T04:20:55Z | 2019-06-26T04:24:33Z | https://sqlite-utils.readthedocs.io/en/latest/changelog.html#v1-2-2 | sqlite-utils 140912432 | |
18307928 | https://github.com/simonw/sqlite-utils/releases/tag/1.3 | MDc6UmVsZWFzZTE4MzA3OTI4 | 1.3 | master | 1.3 | 0 | simonw 9599 | 0 | 2019-06-29T06:32:36Z | 2019-06-29T06:39:32Z | https://sqlite-utils.readthedocs.io/en/latest/changelog.html#v1-3 | sqlite-utils 140912432 | |
18461320 | https://github.com/simonw/datasette/releases/tag/0.29 | MDc6UmVsZWFzZTE4NDYxMzIw | 0.29 | master | Datasette 0.29 | 0 | simonw 9599 | 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. | datasette 107914493 | |
18598489 | https://github.com/simonw/datasette/releases/tag/0.29.1 | MDc6UmVsZWFzZTE4NTk4NDg5 | 0.29.1 | master | 0.29.1 | 0 | simonw 9599 | 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 | datasette 107914493 | |
18723202 | https://github.com/simonw/sqlite-utils/releases/tag/1.6 | MDc6UmVsZWFzZTE4NzIzMjAy | 1.6 | master | 1.6 | 0 | simonw 9599 | 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) | sqlite-utils 140912432 | |
18750551 | https://github.com/dogsheep/healthkit-to-sqlite/releases/tag/0.1 | MDc6UmVsZWFzZTE4NzUwNTUx | 0.1 | master | Initial release | 0 | simonw 9599 | 0 | 2019-07-20T06:22:57Z | 2019-07-20T16:43:09Z | healthkit-to-sqlite 197882382 | ||
18750559 | https://github.com/dogsheep/healthkit-to-sqlite/releases/tag/0.2 | MDc6UmVsZWFzZTE4NzUwNTU5 | 0.2 | master | 0.2 | 0 | simonw 9599 | 0 | 2019-07-20T16:44:05Z | 2019-07-20T16:44:41Z | Fixed a bug where duplicate records could crash the import. | healthkit-to-sqlite 197882382 | |
18762495 | https://github.com/dogsheep/healthkit-to-sqlite/releases/tag/0.3 | MDc6UmVsZWFzZTE4NzYyNDk1 | 0.3 | master | 0.3 | 0 | simonw 9599 | 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 | healthkit-to-sqlite 197882382 | |
18823859 | https://github.com/dogsheep/healthkit-to-sqlite/releases/tag/0.3.1 | MDc6UmVsZWFzZTE4ODIzODU5 | 0.3.1 | master | 0.3.1 | 0 | simonw 9599 | 0 | 2019-07-24T06:33:22Z | 2019-07-24T06:38:36Z | Uses less RAM - see #7 | healthkit-to-sqlite 197882382 | |
18881253 | https://github.com/dogsheep/healthkit-to-sqlite/releases/tag/0.3.2 | MDc6UmVsZWFzZTE4ODgxMjUz | 0.3.2 | master | 0.3.2 | 0 | simonw 9599 | 0 | 2019-07-26T06:02:30Z | 2019-07-26T06:12:12Z | Fix for #9 - Too many SQL variables bug | healthkit-to-sqlite 197882382 | |
18911392 | https://github.com/simonw/sqlite-utils/releases/tag/1.7 | MDc6UmVsZWFzZTE4OTExMzky | 1.7 | master | 1.7 | 0 | simonw 9599 | 0 | 2019-07-24T06:50:41Z | 2019-07-28T12:03:21Z | https://sqlite-utils.readthedocs.io/en/latest/changelog.html#v1-7 | sqlite-utils 140912432 | |
18911404 | https://github.com/simonw/sqlite-utils/releases/tag/1.7.1 | MDc6UmVsZWFzZTE4OTExNDA0 | 1.7.1 | master | 1.7.1 | 0 | simonw 9599 | 0 | 2019-07-28T12:00:51Z | 2019-07-28T12:05:36Z | https://sqlite-utils.readthedocs.io/en/latest/changelog.html#v1-7-1 | sqlite-utils 140912432 | |
19669553 | https://github.com/dogsheep/swarm-to-sqlite/releases/tag/0.1 | MDc6UmVsZWFzZTE5NjY5NTUz | 0.1 | master | 0.1 | 0 | simonw 9599 | 0 | 2019-08-31T02:46:58Z | 2019-08-31T02:58:32Z | First usable release. | swarm-to-sqlite 205429375 | |
19704661 | https://github.com/simonw/datasette/releases/tag/0.29.2 | MDc6UmVsZWFzZTE5NzA0NjYx | 0.29.2 | master | 0.29.2 | 0 | simonw 9599 | 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 | datasette 107914493 | |
19704736 | https://github.com/simonw/sqlite-utils/releases/tag/1.8 | MDc6UmVsZWFzZTE5NzA0NzM2 | 1.8 | master | 1.8 | 0 | simonw 9599 | 0 | 2019-07-28T15:41:42Z | 2019-09-03T00:45:42Z | https://sqlite-utils.readthedocs.io/en/stable/changelog.html#v1-8 | sqlite-utils 140912432 | |
19704739 | https://github.com/simonw/sqlite-utils/releases/tag/1.9 | MDc6UmVsZWFzZTE5NzA0NzM5 | 1.9 | master | 1.9 | 0 | simonw 9599 | 0 | 2019-08-04T03:35:30Z | 2019-09-03T00:46:02Z | https://sqlite-utils.readthedocs.io/en/stable/changelog.html#v1-9 | sqlite-utils 140912432 | |
19704743 | https://github.com/simonw/sqlite-utils/releases/tag/1.10 | MDc6UmVsZWFzZTE5NzA0NzQz | 1.10 | master | 1.10 | 0 | simonw 9599 | 0 | 2019-08-23T12:24:04Z | 2019-09-03T00:46:27Z | https://sqlite-utils.readthedocs.io/en/stable/changelog.html#v1-10 | sqlite-utils 140912432 | |
19704889 | https://github.com/simonw/sqlite-utils/releases/tag/1.11 | MDc6UmVsZWFzZTE5NzA0ODg5 | 1.11 | master | 1.11 | 0 | simonw 9599 | 0 | 2019-09-03T00:58:41Z | 2019-09-03T01:03:27Z | https://sqlite-utils.readthedocs.io/en/stable/changelog.html#v1-11 | sqlite-utils 140912432 | |
19763160 | https://github.com/dogsheep/twitter-to-sqlite/releases/tag/0.1a | MDc6UmVsZWFzZTE5NzYzMTYw | 0.1a | master | Alpha release | 0 | simonw 9599 | 0 | 2019-09-03T20:42:38Z | 2019-09-04T22:08:18Z | twitter-to-sqlite 206156866 | ||
19763185 | https://github.com/dogsheep/twitter-to-sqlite/releases/tag/0.2 | MDc6UmVsZWFzZTE5NzYzMTg1 | 0.2 | master | 0.2 | 0 | simonw 9599 | 0 | 2019-09-04T21:17:34Z | 2019-09-04T22:09:46Z | Full text search for tweets table | twitter-to-sqlite 206156866 | |
19763200 | https://github.com/dogsheep/twitter-to-sqlite/releases/tag/0.3 | MDc6UmVsZWFzZTE5NzYzMjAw | 0.3 | master | 0.3 | 0 | simonw 9599 | 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/ | twitter-to-sqlite 206156866 | |
19865891 | https://github.com/dogsheep/twitter-to-sqlite/releases/tag/0.4 | MDc6UmVsZWFzZTE5ODY1ODkx | 0.4 | master | 0.4 | 0 | simonw 9599 | 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 | twitter-to-sqlite 206156866 | |
19889174 | https://github.com/dogsheep/twitter-to-sqlite/releases/tag/0.5 | MDc6UmVsZWFzZTE5ODg5MTc0 | 0.5 | master | 0.5 | 0 | simonw 9599 | 0 | 2019-09-10T17:38:46Z | 2019-09-10T17:39:47Z | * Added `followers-ids` and `friends-ids` subcommands | twitter-to-sqlite 206156866 | |
19993251 | https://github.com/dogsheep/github-to-sqlite/releases/tag/0.1.1 | MDc6UmVsZWFzZTE5OTkzMjUx | 0.1.1 | master | 0.1.1 | 0 | simonw 9599 | 0 | 2019-09-14T19:19:33Z | 2019-09-14T19:42:08Z | * Fix bug in authentication handling code | github-to-sqlite 207052882 | |
19993751 | https://github.com/dogsheep/github-to-sqlite/releases/tag/0.2 | MDc6UmVsZWFzZTE5OTkzNzUx | 0.2 | master | 0.2 | 0 | simonw 9599 | 0 | 2019-09-14T21:31:17Z | 2019-09-14T21:32:34Z | * Added the `github-to-sqlite starred` command for retrieving starred repos, #1 | github-to-sqlite 207052882 | |
19993820 | https://github.com/dogsheep/github-to-sqlite/releases/tag/0.3 | MDc6UmVsZWFzZTE5OTkzODIw | 0.3 | master | 0.3 | 0 | simonw 9599 | 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 | github-to-sqlite 207052882 | |
20031553 | https://github.com/dogsheep/github-to-sqlite/releases/tag/0.4 | MDc6UmVsZWFzZTIwMDMxNTUz | 0.4 | master | 0.4 | 0 | simonw 9599 | 0 | 2019-09-17T00:18:37Z | 2019-09-17T00:19:42Z | * Added `github-to-sqlite repos` command, #3 | github-to-sqlite 207052882 | |
20114205 | https://github.com/dogsheep/genome-to-sqlite/releases/tag/0.1 | MDc6UmVsZWFzZTIwMTE0MjA1 | 0.1 | master | 0.1 | 0 | simonw 9599 | 0 | 2019-09-19T15:38:10Z | 2019-09-19T15:41:17Z | First release | genome-to-sqlite 209590345 | |
20497186 | https://github.com/dogsheep/twitter-to-sqlite/releases/tag/0.6 | MDc6UmVsZWFzZTIwNDk3MTg2 | 0.6 | master | 0.6 | 0 | simonw 9599 | 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 | twitter-to-sqlite 206156866 | |
20504543 | https://github.com/dogsheep/twitter-to-sqlite/releases/tag/0.7 | MDc6UmVsZWFzZTIwNTA0NTQz | 0.7 | master | 0.7 | 0 | simonw 9599 | 0 | 2019-10-07T00:32:08Z | 2019-10-07T00:33:28Z | * New `statuses-lookup` command for bulk fetching tweets by their IDs - #13 | twitter-to-sqlite 206156866 | |
20506896 | https://github.com/dogsheep/pocket-to-sqlite/releases/tag/0.1 | MDc6UmVsZWFzZTIwNTA2ODk2 | 0.1 | master | 0.1 | 0 | simonw 9599 | 0 | 2019-10-07T05:07:37Z | 2019-10-07T05:18:20Z | Initial release | pocket-to-sqlite 213286752 | |
20631452 | https://github.com/dogsheep/twitter-to-sqlite/releases/tag/0.8 | MDc6UmVsZWFzZTIwNjMxNDUy | 0.8 | master | 0.8 | 0 | simonw 9599 | 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). | twitter-to-sqlite 206156866 | |
20646519 | https://github.com/dogsheep/twitter-to-sqlite/releases/tag/0.9 | MDc6UmVsZWFzZTIwNjQ2NTE5 | 0.9 | master | 0.9 | 0 | simonw 9599 | 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 | twitter-to-sqlite 206156866 | |
20663605 | https://github.com/dogsheep/github-to-sqlite/releases/tag/0.5 | MDc6UmVsZWFzZTIwNjYzNjA1 | 0.5 | master | 0.5 | 0 | simonw 9599 | 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 | github-to-sqlite 207052882 | |
20721291 | https://github.com/dogsheep/twitter-to-sqlite/releases/tag/0.10 | MDc6UmVsZWFzZTIwNzIxMjkx | 0.10 | master | 0.10 | 0 | simonw 9599 | 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 | twitter-to-sqlite 206156866 | |
20754277 | https://github.com/dogsheep/twitter-to-sqlite/releases/tag/0.11 | MDc6UmVsZWFzZTIwNzU0Mjc3 | 0.11 | master | 0.11 | 0 | simonw 9599 | 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 | twitter-to-sqlite 206156866 | |
20755954 | https://github.com/dogsheep/swarm-to-sqlite/releases/tag/0.2 | MDc6UmVsZWFzZTIwNzU1OTU0 | 0.2 | master | 0.2 | 0 | simonw 9599 | 0 | 2019-10-16T20:40:25Z | 2019-10-16T20:40:55Z | * Added --since option, closes #3 | swarm-to-sqlite 205429375 | |
20758324 | https://github.com/dogsheep/twitter-to-sqlite/releases/tag/0.11.1 | MDc6UmVsZWFzZTIwNzU4MzI0 | 0.11.1 | master | 0.11.1 | 0 | simonw 9599 | 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. | twitter-to-sqlite 206156866 | |
20783590 | https://github.com/dogsheep/twitter-to-sqlite/releases/tag/0.12 | MDc6UmVsZWFzZTIwNzgzNTkw | 0.12 | master | 0.12 | 0 | simonw 9599 | 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 | twitter-to-sqlite 206156866 | |
20795250 | https://github.com/simonw/datasette/releases/tag/0.29.3 | MDc6UmVsZWFzZTIwNzk1MjUw | 0.29.3 | master | 0.29.3 | 0 | simonw 9599 | 0 | 2019-09-03T00:40:53Z | 2019-10-18T05:24:54Z | https://datasette.readthedocs.io/en/stable/changelog.html#v0-29-3 | datasette 107914493 | |
21073645 | https://github.com/dogsheep/twitter-to-sqlite/releases/tag/0.13 | MDc6UmVsZWFzZTIxMDczNjQ1 | 0.13 | master | 0.13 | 0 | simonw 9599 | 0 | 2019-10-30T02:20:09Z | 2019-10-30T02:22:30Z | - New `mentions-timeline` command (#26) | twitter-to-sqlite 206156866 | |
21098052 | https://github.com/simonw/datasette/releases/tag/0.30 | MDc6UmVsZWFzZTIxMDk4MDUy | 0.30 | master | 0.30 | 0 | simonw 9599 | 0 | 2019-10-19T01:08:04Z | 2019-10-30T18:51:30Z | https://datasette.readthedocs.io/en/stable/changelog.html#v0-30 | datasette 107914493 | |
21162064 | https://github.com/simonw/datasette/releases/tag/0.30.1 | MDc6UmVsZWFzZTIxMTYyMDY0 | 0.30.1 | master | 0.30.1 | 0 | simonw 9599 | 0 | 2019-10-30T19:00:21Z | 2019-11-02T00:06:02Z | https://datasette.readthedocs.io/en/stable/changelog.html#v0-30-1 | datasette 107914493 | |
21169835 | https://github.com/simonw/datasette/releases/tag/0.30.2 | MDc6UmVsZWFzZTIxMTY5ODM1 | 0.30.2 | master | 0.30.2 | 0 | simonw 9599 | 0 | 2019-11-02T23:12:46Z | 2019-11-02T23:33:13Z | https://datasette.readthedocs.io/en/latest/changelog.html#v0-30-2 | datasette 107914493 | |
21180989 | https://github.com/dogsheep/twitter-to-sqlite/releases/tag/0.14 | MDc6UmVsZWFzZTIxMTgwOTg5 | 0.14 | master | 0.14 | 0 | simonw 9599 | 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. | twitter-to-sqlite 206156866 | |
21276745 | https://github.com/simonw/sqlite-utils/releases/tag/1.12 | MDc6UmVsZWFzZTIxMjc2NzQ1 | 1.12 | master | 1.12 | 0 | simonw 9599 | 0 | 2019-11-04T16:28:52Z | 2019-11-07T05:00:24Z | https://sqlite-utils.readthedocs.io/en/latest/changelog.html#v1-12 | sqlite-utils 140912432 | |
21276749 | https://github.com/simonw/sqlite-utils/releases/tag/1.12.1 | MDc6UmVsZWFzZTIxMjc2NzQ5 | 1.12.1 | master | 1.12.1 | 0 | simonw 9599 | 0 | 2019-11-07T04:58:47Z | 2019-11-07T05:00:55Z | https://sqlite-utils.readthedocs.io/en/latest/changelog.html#v1-12-1 | sqlite-utils 140912432 | |
21306693 | https://github.com/dogsheep/healthkit-to-sqlite/releases/tag/0.4 | MDc6UmVsZWFzZTIxMzA2Njkz | 0.4 | master | 0.4 | 0 | simonw 9599 | 0 | 2019-11-08T01:19:23Z | 2019-11-08T01:19:51Z | * Fixed workout latitude/longitude points import for iOS 13 - #10 | healthkit-to-sqlite 197882382 | |
21342008 | https://github.com/dogsheep/twitter-to-sqlite/releases/tag/0.15 | MDc6UmVsZWFzZTIxMzQyMDA4 | 0.15 | master | 0.15 | 0 | simonw 9599 | 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 | twitter-to-sqlite 206156866 | |
21354706 | https://github.com/dogsheep/github-to-sqlite/releases/tag/0.6 | MDc6UmVsZWFzZTIxMzU0NzA2 | 0.6 | master | 0.6 | 0 | simonw 9599 | 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 | github-to-sqlite 207052882 | |
21426008 | https://github.com/simonw/datasette/releases/tag/0.31 | MDc6UmVsZWFzZTIxNDI2MDA4 | 0.31 | master | Datasette 0.31 | 0 | simonw 9599 | 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 | datasette 107914493 | |
21426299 | https://github.com/simonw/datasette/releases/tag/0.31.1 | MDc6UmVsZWFzZTIxNDI2Mjk5 | 0.31.1 | master | 0.31.1 | 0 | simonw 9599 | 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 | datasette 107914493 | |
21449006 | https://github.com/simonw/datasette/releases/tag/0.31.2 | MDc6UmVsZWFzZTIxNDQ5MDA2 | 0.31.2 | master | 0.31.2 | 0 | simonw 9599 | 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 | datasette 107914493 | |
21492068 | https://github.com/simonw/datasette/releases/tag/0.32 | MDc6UmVsZWFzZTIxNDkyMDY4 | 0.32 | master | Datasette 0.32 | 0 | simonw 9599 | 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 | datasette 107914493 | |
22415542 | https://github.com/simonw/datasette/releases/tag/0.33 | MDc6UmVsZWFzZTIyNDE1NTQy | 0.33 | master | Datasette 0.33 | 0 | simonw 9599 | 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 | datasette 107914493 | |
22509033 | https://github.com/simonw/sqlite-utils/releases/tag/2.0 | MDc6UmVsZWFzZTIyNTA5MDMz | 2.0 | master | 2.0 | 0 | simonw 9599 | 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. | sqlite-utils 140912432 | |
22603380 | https://github.com/simonw/sqlite-utils/releases/tag/2.0.1 | MDc6UmVsZWFzZTIyNjAzMzgw | 2.0.1 | master | 2.0.1 | 0 | simonw 9599 | 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). | sqlite-utils 140912432 | |
23239304 | https://github.com/simonw/datasette/releases/tag/0.34 | MDc6UmVsZWFzZTIzMjM5MzA0 | 0.34 | master | Datasette 0.34 | 0 | simonw 9599 | 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 | datasette 107914493 | |
23274412 | https://github.com/simonw/sqlite-utils/releases/tag/2.1 | MDc6UmVsZWFzZTIzMjc0NDEy | 2.1 | master | 2.1 | 0 | simonw 9599 | 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). | sqlite-utils 140912432 | |
23395622 | https://github.com/simonw/datasette/releases/tag/0.35 | MDc6UmVsZWFzZTIzMzk1NjIy | 0.35 | master | Datasette 0.35 | 0 | simonw 9599 | 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 | datasette 107914493 | |
23471014 | https://github.com/simonw/sqlite-utils/releases/tag/2.2 | MDc6UmVsZWFzZTIzNDcxMDE0 | 2.2 | master | 2.2 | 0 | simonw 9599 | 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. | sqlite-utils 140912432 | |
23471112 | https://github.com/simonw/sqlite-utils/releases/tag/2.2.1 | MDc6UmVsZWFzZTIzNDcxMTEy | 2.2.1 | master | 2.2.1 | 0 | simonw 9599 | 0 | 2020-02-07T07:20:03Z | 2020-02-07T07:24:54Z | Fixed a bug where `.upsert(..., hash_id="pk")` threw an error (#84). | sqlite-utils 140912432 | |
23471420 | https://github.com/dogsheep/twitter-to-sqlite/releases/tag/0.16 | MDc6UmVsZWFzZTIzNDcxNDIw | 0.16 | master | 0.16 | 0 | simonw 9599 | 0 | 2020-02-07T07:42:45Z | 2020-02-07T07:44:53Z | New `friends` command for importing accounts that a specific user follows. | twitter-to-sqlite 206156866 | |
23508352 | https://github.com/simonw/sqlite-utils/releases/tag/2.3 | MDc6UmVsZWFzZTIzNTA4MzUy | 2.3 | master | 2.3 | 0 | simonw 9599 | 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) | sqlite-utils 140912432 | |
23556494 | https://github.com/simonw/sqlite-utils/releases/tag/2.3.1 | MDc6UmVsZWFzZTIzNTU2NDk0 | 2.3.1 | master | 2.3.1 | 0 | simonw 9599 | 0 | 2020-02-11T05:52:23Z | 2020-02-11T05:59:43Z | `table.create_index()` now works for columns that contain spaces. (#85) | sqlite-utils 140912432 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE [releases] ( [html_url] TEXT, [id] INTEGER PRIMARY KEY, [node_id] TEXT, [tag_name] TEXT, [target_commitish] TEXT, [name] TEXT, [draft] INTEGER, [author] INTEGER REFERENCES [users]([id]), [prerelease] INTEGER, [created_at] TEXT, [published_at] TEXT, [body] TEXT, [repo] INTEGER REFERENCES [repos]([id]) , [reactions] TEXT); CREATE INDEX [idx_releases_repo] ON [releases] ([repo]); CREATE INDEX [idx_releases_author] ON [releases] ([author]);