releases

149 rows sorted by body

View and edit SQL

Suggested facets: prerelease, created_at (date), published_at (date)

id html_url node_id tag_name target_commitish name draft author prerelease created_at published_at assets body ▼ repo
17055917 https://github.com/simonw/datasette-render-html/releases/tag/0.1 MDc6UmVsZWFzZTE3MDU1OTE3 0.1 master   0 simonw 9599 0 2019-04-30T01:55:11Z 2019-04-30T01:59:32Z []   datasette-render-html 184168864
17874587 https://github.com/simonw/datasette-render-binary/releases/tag/0.1 MDc6UmVsZWFzZTE3ODc0NTg3 0.1 master 0.1 0 simonw 9599 0 2019-06-09T16:01:27Z 2019-06-09T16:10:36Z []   datasette-render-binary 191022928
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
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
14760894 https://github.com/simonw/datasette-json-html/releases/tag/0.4.0 MDc6UmVsZWFzZTE0NzYwODk0 0.4.0 master 0.4.0 - <pre> support 0 simonw 9599 0 2019-01-02T04:10:17Z 2019-01-02T04:17:15Z [] You can use `{"pre": "text"}` to render text in a `<pre>` HTML tag: { "pre": "This\nhas\nnewlines" } Produces: <pre>This has newlines</pre> If the value attached to the `"pre"` key is itself a JSON object, that JSON will be pretty-printed: { "pre": { "this": { "object": ["is", "nested"] } } } Produces: <pre>{ &#34;this&#34;: { &#34;object&#34;: [ &#34;is&#34;, &#34;nested&#34; ] } }</pre> datasette-json-html 142967347
10542772 https://github.com/simonw/datasette/releases/tag/0.16 MDc6UmVsZWFzZTEwNTQyNzcy 0.16 master 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
8652546 https://github.com/simonw/datasette/releases/tag/0.13 MDc6UmVsZWFzZTg2NTI1NDY= 0.13 master 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
8575785 https://github.com/simonw/csvs-to-sqlite/releases/tag/0.5 MDc6UmVsZWFzZTg1NzU3ODU= 0.5 master csvs-to-sqlite 0.5 0 simonw 9599 0 2017-11-19T05:11:27Z 2017-11-19T05:53:25Z [] ## Now handles columns with integers and nulls in correctly Pandas does a good job of figuring out which SQLite column types should be used for a DataFrame - with one exception: due to a limitation of NumPy it treats columns containing a mixture of integers and NaN (blank values) as being of type float64, which means they end up as REAL columns in SQLite. http://pandas.pydata.org/pandas-docs/stable/gotchas.html#support-for-integer-na To fix this, we now check to see if a float64 column actually consists solely of NaN and integer-valued floats (checked using v.is_integer() in Python). If that is the case, we over-ride the column type to be INTEGER instead. See #5 - also a8ab524 and 0997b7b csvs-to-sqlite 110509816
8651869 https://github.com/simonw/csvs-to-sqlite/releases/tag/0.6 MDc6UmVsZWFzZTg2NTE4Njk= 0.6 master csvs-to-sqlite 0.6 0 simonw 9599 0 2017-11-24T23:12:10Z 2017-11-24T23:16:45Z [] ## SQLite full-text search support - Added `--fts` option for setting up SQLite full-text search. The `--fts` option will create a corresponding SQLite FTS virtual table, using the best available version of the FTS module. https://sqlite.org/fts5.html https://www.sqlite.org/fts3.html Usage: csvs-to-sqlite my-csv.csv output.db -f column1 -f column2 Example generated with this option: https://sf-trees-search.now.sh/ Example search: https://sf-trees-search.now.sh/sf-trees-search-a899b92?sql=select+*+from+Street_Tree_List+where+rowid+in+%28select+rowid+from+Street_Tree_List_fts+where+Street_Tree_List_fts+match+%27grove+london+dpw%27%29%0D%0A Will be used in https://github.com/simonw/datasette/issues/131 - `--fts` and `--extract-column` now cooperate. If you extract a column and then specify that same column in the `--fts` list, `csvs-to-sqlite` now uses the original value of that column in the index. Example using CSV from https://data.sfgov.org/City-Infrastructure/Street-Tree-List/tkzw-k3nq csvs-to-sqlite Street_Tree_List.csv trees-fts.db \ -c qLegalStatus -c qSpecies -c qSiteInfo \ -c PlantType -c qCaretaker -c qCareAssistant \ -f qLegalStatus -f qSpecies -f qAddress \ -f qSiteInfo -f PlantType -f qCaretaker \ -f qCareAssistant -f PermitNotes Closes #9 - Handle column names with spaces in them. - Added `csvs-to-sqlite --version` option. Using http://click.pocoo.org/5/api/#click.version_option csvs-to-sqlite 110509816
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
20685215 https://github.com/simonw/datasette-render-timestamps/releases/tag/0.2 MDc6UmVsZWFzZTIwNjg1MjE1 0.2 master 0.2 0 simonw 9599 0 2019-10-14T14:51:18Z 2019-10-14T14:52:55Z [] * Ability to [configure date format](https://github.com/simonw/datasette-render-timestamps/blob/0.2/README.md#configuration) - (pull request #1). Thanks, @chris48s! datasette-render-timestamps 214299267
18451672 https://github.com/simonw/datasette-auth-github/releases/tag/0.3 MDc6UmVsZWFzZTE4NDUxNjcy 0.3 master 0.3 0 simonw 9599 0 2019-07-06T17:14:58Z 2019-07-06T17:15:29Z [] * Ability to restrict access to specific users or members of specific GitHub organizations #4 datasette-auth-github 195087137
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
18312546 https://github.com/simonw/db-to-sqlite/releases/tag/0.8 MDc6UmVsZWFzZTE4MzEyNTQ2 0.8 master 0.8 0 simonw 9599 0 2019-06-29T21:52:48Z 2019-06-29T21:53:58Z [] * Added `--progress` option to show progress bars during import - #7 db-to-sqlite 166159072
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
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
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
19899411 https://github.com/simonw/datasette-rure/releases/tag/0.2 MDc6UmVsZWFzZTE5ODk5NDEx 0.2 master 0.2 0 simonw 9599 0 2019-09-11T03:24:21Z 2019-09-11T03:25:22Z [] * Added regexp_match() function, #1 * Added regexp_matches() function, #2 datasette-rure 207630174
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
21310374 https://github.com/simonw/yaml-to-sqlite/releases/tag/0.2.1 MDc6UmVsZWFzZTIxMzEwMzc0 0.2.1 master 0.2.1 0 simonw 9599 0 2019-11-08T06:43:41Z 2019-11-08T06:46:02Z [] * Better help for `--pk` yaml-to-sqlite 175550127
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
18242248 https://github.com/simonw/db-to-sqlite/releases/tag/0.4 MDc6UmVsZWFzZTE4MjQyMjQ4 0.4 master 0.4 0 simonw 9599 0 2019-02-24T23:44:01Z 2019-06-26T15:55:54Z [] * Create `--all` tables in toposort order * Depend on sqlite-utils version 0.14 or higher db-to-sqlite 166159072
19927123 https://github.com/simonw/datasette-rure/releases/tag/0.3 MDc6UmVsZWFzZTE5OTI3MTIz 0.3 master 0.3 0 simonw 9599 0 2019-09-11T22:58:20Z 2019-09-11T23:00:32Z [] * Documentation now links to interactive demos * Now uses an LRU cache for compiled regular expressions, which can give a 10x speedup on queries #3 datasette-rure 207630174
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
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
20686035 https://github.com/simonw/datasette-leaflet-geojson/releases/tag/0.3 MDc6UmVsZWFzZTIwNjg2MDM1 0.3 master 0.3 0 simonw 9599 0 2019-10-14T15:13:15Z 2019-10-14T15:18:48Z [] * Fixed bug displaying multiple polygon maps on a page - #4 - thanks, @chris48s * Upgraded Leaflet to 1.5.1 - #5 - thanks, @chris48s datasette-leaflet-geojson 135007287
18185234 https://github.com/simonw/csvs-to-sqlite/releases/tag/0.9.1 MDc6UmVsZWFzZTE4MTg1MjM0 0.9.1 master csvs-to-sqlite 0.9.1 0 simonw 9599 0 2019-06-24T15:16:54Z 2019-06-24T15:21:12Z [] * Fixed bug where `-f` option used FTS4 even when FTS5 was available (#41) csvs-to-sqlite 110509816
18452996 https://github.com/simonw/datasette-auth-github/releases/tag/0.3.2 MDc6UmVsZWFzZTE4NDUyOTk2 0.3.2 master 0.3.2 0 simonw 9599 0 2019-07-06T20:18:37Z 2019-07-06T22:01:45Z [] * Fixed bug where custom template was not correctly included in the package #15 datasette-auth-github 195087137
18451716 https://github.com/simonw/datasette-auth-github/releases/tag/0.3.1 MDc6UmVsZWFzZTE4NDUxNzE2 0.3.1 master 0.3.1 0 simonw 9599 0 2019-07-06T17:27:03Z 2019-07-06T17:27:46Z [] * Fixed bug where we were requesting the incorrect OAuth scope when using `allow_orgs` #14 datasette-auth-github 195087137
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
18242294 https://github.com/simonw/db-to-sqlite/releases/tag/0.5 MDc6UmVsZWFzZTE4MjQyMjk0 0.5 master 0.5 0 simonw 9599 0 2019-06-26T15:44:35Z 2019-06-26T15:57:17Z [] * Foreign keys are now all added at the end, which means we can support circular foreign key references #1 * Dropped dependency on `toposort` * Added `--all --skip=table` option for skipping one or more tables when running `--all` db-to-sqlite 166159072
18321523 https://github.com/simonw/db-to-sqlite/releases/tag/1.0.1 MDc6UmVsZWFzZTE4MzIxNTIz 1.0.1 master 1.0.1 0 simonw 9599 0 2019-07-01T04:08:01Z 2019-07-01T04:09:04Z [] * Improvements to README db-to-sqlite 166159072
18453004 https://github.com/simonw/datasette-auth-github/releases/tag/0.4 MDc6UmVsZWFzZTE4NDUzMDA0 0.4 master 0.4 0 simonw 9599 0 2019-07-06T22:02:38Z 2019-07-06T22:03:41Z [] * More compact JSON encoding for authentication cookie value * Support single string values for `allow_users`/`allow_orgs` options, #16 datasette-auth-github 195087137
18453939 https://github.com/simonw/datasette-auth-github/releases/tag/0.5 MDc6UmVsZWFzZTE4NDUzOTM5 0.5 master 0.5 0 simonw 9599 0 2019-07-07T02:35:09Z 2019-07-07T02:37:16Z [] * New `allow_teams` configuration option for restricting access to members of a GitHub team - #11 * Signed cookies expire after a TTL (customize with new `cooke_ttl` setting) - #22 * Documentation on using this as ASGI middleware - #19 * Avoid 404 on `/-/auth-callback` if user is logged in - #24 * Added `cookie_version` setting for invalidating all cookies - #18 datasette-auth-github 195087137
20521948 https://github.com/simonw/datasette-auth-github/releases/tag/0.10 MDc6UmVsZWFzZTIwNTIxOTQ4 0.10 master 0.10 0 simonw 9599 0 2019-10-07T15:36:41Z 2019-10-07T15:40:02Z [] * New `cacheable_prefixes` mechanism to avoid performance issues caused by adding `cache-control: private` to static assets - #47 datasette-auth-github 195087137
18555982 https://github.com/simonw/datasette-auth-github/releases/tag/0.7 MDc6UmVsZWFzZTE4NTU1OTgy 0.7 master 0.7 0 simonw 9599 0 2019-07-11T15:05:54Z 2019-07-11T15:07:15Z [] * New `require_auth` configuration option. This defaults to `True` (reflecting existing behaviour) when `datasette-auth-github` is used as a Datasette plugin, but it defaults to `False` if you use the wrapper ASGI middleware class directly. #37 datasette-auth-github 195087137
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
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
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
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
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
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
18458558 https://github.com/simonw/datasette-auth-github/releases/tag/0.6 MDc6UmVsZWFzZTE4NDU4NTU4 0.6 master 0.6 0 simonw 9599 0 2019-07-07T19:41:27Z 2019-07-07T19:41:47Z [] * Redirects back to where you were after you login, using a new `asgi_auth_redirect` cookie - #26 * Unset asgi_auth_logout cookie when you sign in again - #28 * Fixed bug where API call to GitHub intermittently failed with `ConnectionResetError` - #27 * More robust creation of derived cookie signing secret using `hashlib.pbkdf2_hmac` * HTML pages now served with `charset=UTF-8` - #30 datasette-auth-github 195087137
20687261 https://github.com/simonw/datasette-auth-github/releases/tag/0.11 MDc6UmVsZWFzZTIwNjg3MjYx 0.11 master 0.11 0 simonw 9599 0 2019-10-14T15:25:24Z 2019-10-14T16:06:25Z [] * Subclasses can now customize the creation of the redirect cookie - #49 - thanks, @ananis25 datasette-auth-github 195087137
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
18451662 https://github.com/simonw/datasette-auth-github/releases/tag/0.2 MDc6UmVsZWFzZTE4NDUxNjYy 0.2 master 0.2 0 simonw 9599 0 2019-07-06T17:11:39Z 2019-07-06T17:14:02Z [] * `/-/logout` URL for logging out #7 * Custom navigation showing login state #5 * Restored ASGI lifespan support #10 * `disable_auto_login` setting #9 * `Cache-Control: private` #6 datasette-auth-github 195087137
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
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
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
8546575 https://github.com/simonw/datasette/releases/tag/0.12 MDc6UmVsZWFzZTg1NDY1NzU= 0.12 master 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
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
8556054 https://github.com/simonw/csvs-to-sqlite/releases/tag/0.3 MDc6UmVsZWFzZTg1NTYwNTQ= 0.3 master csvs-to-sqlite 0.3 0 simonw 9599 0 2017-11-17T05:26:07Z 2017-11-17T05:33:39Z [] - **Mechanism for converting columns into separate tables** Let's say you have a CSV file that looks like this: county,precinct,office,district,party,candidate,votes Clark,1,President,,REP,John R. Kasich,5 Clark,2,President,,REP,John R. Kasich,0 Clark,3,President,,REP,John R. Kasich,7 (Real example from https://github.com/openelections/openelections-data-sd/blob/ master/2016/20160607__sd__primary__clark__precinct.csv ) You can now convert selected columns into separate lookup tables using the new --extract-column option (shortname: -c) - for example: csvs-to-sqlite openelections-data-*/*.csv \ -c county:County:name \ -c precinct:Precinct:name \ -c office -c district -c party -c candidate \ openelections.db The format is as follows: column_name:optional_table_name:optional_table_value_column_name If you just specify the column name e.g. `-c office`, the following table will be created: CREATE TABLE "party" ( "id" INTEGER PRIMARY KEY, "value" TEXT ); If you specify all three options, e.g. `-c precinct:Precinct:name` the table will look like this: CREATE TABLE "Precinct" ( "id" INTEGER PRIMARY KEY, "name" TEXT ); The original tables will be created like this: CREATE TABLE "ca__primary__san_francisco__precinct" ( "county" INTEGER, "precinct" INTEGER, "office" INTEGER, "district" INTEGER, "party" INTEGER, "candidate" INTEGER, "votes" INTEGER, FOREIGN KEY (county) REFERENCES County(id), FOREIGN KEY (party) REFERENCES party(id), FOREIGN KEY (precinct) REFERENCES Precinct(id), FOREIGN KEY (office) REFERENCES office(id), FOREIGN KEY (candidate) REFERENCES candidate(id) ); They will be populated with IDs that reference the new derived tab… csvs-to-sqlite 110509816
8656486 https://github.com/simonw/csvs-to-sqlite/releases/tag/0.7 MDc6UmVsZWFzZTg2NTY0ODY= 0.7 master csvs-to-sqlite 0.7 0 simonw 9599 0 2017-11-26T03:11:33Z 2017-11-26T03:14:11Z [] - Add -s option to specify input field separator (#13) [Jani Monoses] csvs-to-sqlite 110509816
21179472 https://github.com/simonw/sqlite-transform/releases/tag/0.2 MDc6UmVsZWFzZTIxMTc5NDcy 0.2 master 0.2 0 simonw 9599 0 2019-11-04T02:21:24Z 2019-11-04T02:26:57Z [] - Added `lambda` command, which lets you specify a Python expression (or multiple lines of code) to be executed against every value in the column. [Documentation here](https://github.com/simonw/sqlite-transform/blob/0.2/README.md#lambda-for-executing-your-own-code). (#2) - Added a `parsedate` command, which works like `parsedatetime` except it outputs just the date component. (#1) sqlite-transform 219372133
18598299 https://github.com/simonw/datasette-auth-github/releases/tag/0.9 MDc6UmVsZWFzZTE4NTk4Mjk5 0.9 master 0.9 0 simonw 9599 0 2019-07-14T00:40:16Z 2019-07-14T00:41:33Z [] - Explicit log in screen now includes SVG GitHub logo on the button - #42 - Default signed cookie TTL is now 1 hour, not 24 hours - #43 datasette-auth-github 195087137
21179411 https://github.com/simonw/sqlite-transform/releases/tag/0.1 MDc6UmVsZWFzZTIxMTc5NDEx 0.1 master 0.1 0 simonw 9599 0 2019-11-04T01:07:27Z 2019-11-04T02:19:37Z [] - First release, supporting only the `parsedatetime` command. sqlite-transform 219372133
21162720 https://github.com/simonw/datasette-leaflet-geojson/releases/tag/0.4 MDc6UmVsZWFzZTIxMTYyNzIw 0.4 master 0.4 0 simonw 9599 0 2019-11-02T01:45:52Z 2019-11-02T01:48:09Z [] - Fixed bug where plugin fails to render a map if the cell value was truncated (#3) - Fixed incompatibility when loaded in the same environment as `datasette-pretty-json` (#6) datasette-leaflet-geojson 135007287
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
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
18312451 https://github.com/simonw/db-to-sqlite/releases/tag/0.7 MDc6UmVsZWFzZTE4MzEyNDUx 0.7 master 0.7 0 simonw 9599 0 2019-06-29T21:27:30Z 2019-06-29T21:31:00Z [] - Support `pip install db-to-sqlite[postgresql]` #4 - Documentation for both that and `pip install db-to-sqlite[mysql]` db-to-sqlite 166159072
15022807 https://github.com/simonw/csvs-to-sqlite/releases/tag/0.9 MDc6UmVsZWFzZTE1MDIyODA3 0.9 master csvs-to-sqlite 0.9 0 simonw 9599 0 2019-01-17T05:17:02Z 2019-01-17T05:20:23Z [] - Support for loading CSVs directly from URLs, thanks @betatim - #38 - New -pk/--primary-key options, closes #22 - Create FTS index for extracted column values - Added --no-fulltext-fks option, closes #32 - Now using black for code formatting - Bumped versions of dependencies csvs-to-sqlite 110509816
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
18598348 https://github.com/simonw/datasette-auth-github/releases/tag/0.9.1 MDc6UmVsZWFzZTE4NTk4MzQ4 0.9.1 master 0.9.1 0 simonw 9599 0 2019-07-14T00:58:35Z 2019-07-14T00:59:24Z [] - Updated documentation to reflect new one hour `cookie_ttl` default - #43 datasette-auth-github 195087137
21163426 https://github.com/simonw/datasette-cluster-map/releases/tag/0.7 MDc6UmVsZWFzZTIxMTYzNDI2 0.7 master 0.7 0 simonw 9599 0 2019-11-02T03:35:00Z 2019-11-02T03:54:36Z [] - Upgraded Leaflet to 1.5.1 - Upgraded leaflet.markercluster to 1.4.1 This fixes a bug where `datasette-cluster-map` and [datasette-leaflet-geojson](https://github.com/simonw/datasette-leaflet-geojson) could not run within the same Datasette instance. datasette-cluster-map 130236762
18310609 https://github.com/simonw/db-to-sqlite/releases/tag/0.6 MDc6UmVsZWFzZTE4MzEwNjA5 0.6 master 0.6 0 simonw 9599 0 2019-06-29T15:18:30Z 2019-06-29T15:27:18Z [] - `--all` can now add many foreign key relationships without a `VACUUM` between each one, #8 - Added unit tests against MySQL, refs #5 db-to-sqlite 166159072
10696701 https://github.com/simonw/csvs-to-sqlite/releases/tag/0.8 MDc6UmVsZWFzZTEwNjk2NzAx 0.8 master csvs-to-sqlite 0.8 0 simonw 9599 0 2018-04-24T15:08:37Z 2018-04-24T15:35:30Z [] - `-d` and `-df` options for specifying date/datetime columns, closes #33 - Maintain lookup tables in SQLite, refs #17 - `--index` option to specify which columns to index, closes #24 - Test confirming `--shape` and `--filename-column` and `-c` work together #25 - Use usecols when loading CSV if shape specified - `--filename-column` is now compatible with `--shape`, closes #10 - `--no-index-fks` option By default, csvs-to-sqlite creates an index for every foreign key column that is added using the `--extract-column` option. For large tables, this can dramatically increase the size of the resulting database file on disk. The new `--no-index-fks` option allows you to disable this feature to save on file size. Refs #24 which will allow you to explicitly list which columns SHOULD have an index created. - Added `--filename-column` option, refs #10 - Fixes for Python 2, refs #25 - Implemented new `--shape` option - refs #25 - `--table` option for specifying table to write to, refs #10 - Updated README to cover `--skip-errors`, refs #20 - Add `--skip-errors` option (#20) [Jani Monoses] - Less verbosity (#19) [Jani Monoses] Only log `extract_columns` info when that option is passed. - Add option for field quoting behaviour (#15) [Jani Monoses] csvs-to-sqlite 110509816
8652417 https://github.com/simonw/csvs-to-sqlite/releases/tag/0.6.1 MDc6UmVsZWFzZTg2NTI0MTc= 0.6.1 master csvs-to-sqlite 0.6.1 0 simonw 9599 0 2017-11-25T02:57:01Z 2017-11-25T02:58:25Z [] - `-f and -c` now work for single table multiple columns. Fixes #12 csvs-to-sqlite 110509816
21180593 https://github.com/simonw/sqlite-transform/releases/tag/0.3 MDc6UmVsZWFzZTIxMTgwNTkz 0.3 master 0.3 0 simonw 9599 0 2019-11-04T04:37:39Z 2019-11-04T04:39:06Z [] - `return` is now optional for one-line lambdas, e.g. ``` sqlite-transform lambda my.db mytable mycolumn --code='str(value).upper()' ``` sqlite-transform 219372133
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
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
17976835 https://github.com/simonw/datasette-render-binary/releases/tag/0.2 MDc6UmVsZWFzZTE3OTc2ODM1 0.2 master 0.2 0 simonw 9599 0 2019-06-09T16:20:28Z 2019-06-13T16:14:52Z [] Added screenshot. datasette-render-binary 191022928
18476766 https://github.com/simonw/datasette-auth-github/releases/tag/0.6.3 MDc6UmVsZWFzZTE4NDc2NzY2 0.6.3 master 0.6.3 0 simonw 9599 0 2019-07-08T16:51:01Z 2019-07-08T16:51:39Z [] Additional documentation on `scope["auth"]` when using as ASGI middleware. datasette-auth-github 195087137
18242211 https://github.com/simonw/db-to-sqlite/releases/tag/0.3 MDc6UmVsZWFzZTE4MjQyMjEx 0.3 master 0.3 0 simonw 9599 0 2019-02-24T21:59:42Z 2019-06-26T15:54:56Z [] Anchor to sqlite-utils==0.13 to pick up a breaking change. db-to-sqlite 166159072
18169270 https://github.com/simonw/yaml-to-sqlite/releases/tag/0.2 MDc6UmVsZWFzZTE4MTY5Mjcw 0.2 master 0.2 0 simonw 9599 0 2019-06-23T22:55:32Z 2019-06-23T22:55:50Z [] Better README yaml-to-sqlite 175550127
11136605 https://github.com/simonw/datasette/releases/tag/0.22.1 MDc6UmVsZWFzZTExMTM2NjA1 0.22.1 master 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
18377238 https://github.com/simonw/csvs-to-sqlite/releases/tag/0.9.2 MDc6UmVsZWFzZTE4Mzc3MjM4 0.9.2 master csvs-to-sqlite 0.9.2 0 simonw 9599 0 2019-07-03T04:36:26Z 2019-07-03T04:37:15Z [] Bumped dependencies and pinned pytest to version 4 (5 is incompatible with Python 2.7). csvs-to-sqlite 110509816
11804596 https://github.com/simonw/datasette-vega/releases/tag/0.5 MDc6UmVsZWFzZTExODA0NTk2 0.5 master datasette-vega 0.5 0 simonw 9599 0 2018-07-06T03:18:37Z 2018-07-06T03:34:28Z [] Datasette Vega now preserves graph settings across multiple loads of variants of the same page - for example, clicking column headers to re-order the data or applying suggested facets. On the SQL page it will also persist graph settings across edits to the SQL query. #12 datasette-vega 138669673
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
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
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
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
21343109 https://github.com/simonw/datasette-render-markdown/releases/tag/0.1a MDc6UmVsZWFzZTIxMzQzMTA5 0.1a master 0.1a 0 simonw 9599 1 2019-11-09T23:42:31Z 2019-11-09T23:49:58Z [] First working release datasette-render-markdown 220716822
19890182 https://github.com/simonw/datasette-rure/releases/tag/0.1 MDc6UmVsZWFzZTE5ODkwMTgy 0.1 master 0.1 0 simonw 9599 0 2019-09-10T18:15:45Z 2019-09-10T18:17:42Z [] First working version datasette-rure 207630174
19054897 https://github.com/simonw/db-to-sqlite/releases/tag/1.0.2 MDc6UmVsZWFzZTE5MDU0ODk3 1.0.2 master 1.0.2 0 simonw 9599 0 2019-08-03T04:01:00Z 2019-08-03T04:09:41Z [] Fix for #18 - no longer throws error on empty tables db-to-sqlite 166159072
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
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
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
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
20685181 https://github.com/simonw/datasette-render-timestamps/releases/tag/0.1 MDc6UmVsZWFzZTIwNjg1MTgx 0.1 master 0.1 0 simonw 9599 0 2019-10-10T22:53:49Z 2019-10-14T14:51:38Z [] Initial release datasette-render-timestamps 214299267
17870990 https://github.com/simonw/datasette-bplist/releases/tag/0.1 MDc6UmVsZWFzZTE3ODcwOTkw 0.1 master 0.1 0 simonw 9599 0 2019-06-09T01:14:22Z 2019-06-09T01:19:55Z [] Initial release. datasette-bplist 190950781
20051401 https://github.com/simonw/datasette-atom/releases/tag/0.1a MDc6UmVsZWFzZTIwMDUxNDAx 0.1a master 0.1a 0 simonw 9599 1 2019-09-17T15:34:27Z 2019-09-17T15:40:22Z [] Initial work in progress datasette-atom 209091256
18441103 https://github.com/simonw/datasette-auth-github/releases/tag/0.1 MDc6UmVsZWFzZTE4NDQxMTAz 0.1 master 0.1 0 simonw 9599 0 2019-07-04T15:05:34Z 2019-07-05T15:58:24Z [] Initial working release. datasette-auth-github 195087137
17987324 https://github.com/simonw/datasette-json-html/releases/tag/0.5 MDc6UmVsZWFzZTE3OTg3MzI0 0.5 master 0.5 - tooltips and demos 0 simonw 9599 0 2019-06-14T01:29:34Z 2019-06-14T01:33:44Z [] Links can now have tooltips (#2): ``` { "href": "https://simonwillison.net/", "label": "Simon Willison", "title": "My blog" } ``` Also added [a live demo](https://datasette-json-html.datasette.io/demo?sql=select+%27%7B%0D%0A++++%22href%22%3A+%22https%3A%2F%2Fsimonwillison.net%2F%22%2C%0D%0A++++%22label%22%3A+%22Simon+Willison%22%2C%0D%0A++++%22title%22%3A+%22My+blog%22%0D%0A%7D%27) and linked to it throughout the README (#3, #1) datasette-json-html 142967347
11825600 https://github.com/simonw/datasette/releases/tag/0.23.2 MDc6UmVsZWFzZTExODI1NjAw 0.23.2 master 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
11591352 https://github.com/simonw/datasette/releases/tag/0.23.1 MDc6UmVsZWFzZTExNTkxMzUy 0.23.1 master 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
18458837 https://github.com/simonw/datasette-auth-github/releases/tag/0.6.1 MDc6UmVsZWFzZTE4NDU4ODM3 0.6.1 master 0.6.1 0 simonw 9599 0 2019-07-07T20:38:42Z 2019-07-07T20:39:19Z [] Minor code clean-up and updated one-line description for PyPI / README. datasette-auth-github 195087137
10645022 https://github.com/simonw/datasette/releases/tag/0.20 MDc6UmVsZWFzZTEwNjQ1MDIy 0.20 master 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 master 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
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

Next page

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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,
   [assets] TEXT,
   [body] TEXT,
   [repo] INTEGER REFERENCES [repos]([id])
)
Powered by Datasette · Query took 48.277ms · About: github-to-sqlite