|
1 | 1 | Changelog
|
2 | 2 | =========
|
3 | 3 |
|
| 4 | +0.12 |
| 5 | +---- |
| 6 | +- Added ``__version__``, now displayed as tooltip in page footer (`#108`_). |
| 7 | +- Added initial docs, including a changelog (`#99`_). |
| 8 | +- Turned on auto-escaping in Jinja. |
| 9 | +- Added a UI for editing named parameters (`#96`_). |
| 10 | +- Pin to specific Jinja version. (`#100`_). |
| 11 | +- Default to 127.0.0.1 not 0.0.0.0. (`#98`_). |
| 12 | +- Added extra metadata options to publish and package commands. (`#92`_). |
| 13 | + |
| 14 | + You can now run these commands like so:: |
| 15 | + |
| 16 | + datasette now publish mydb.db \ |
| 17 | + --title="My Title" \ |
| 18 | + --source="Source" \ |
| 19 | + --source_url="http://www.example.com/" \ |
| 20 | + --license="CC0" \ |
| 21 | + --license_url="https://creativecommons.org/publicdomain/zero/1.0/" |
| 22 | + |
| 23 | + This will write those values into the metadata.json that is packaged with the |
| 24 | + app. If you also pass ``--metadata=metadata.json`` that file will be updated with the extra |
| 25 | + values before being written into the Docker image. |
| 26 | +- Added simple production-ready Dockerfile (`#94`_) [Andrew |
| 27 | + Cutler] |
| 28 | +- New ``?_sql_time_limit_ms=10`` argument to database and table page (`#95`_) |
| 29 | +- SQL syntax highlighting with Codemirror (`#89`_) [Tom Dyson] |
| 30 | + |
| 31 | +.. _#89: https://github.com/simonw/datasette/issues/89 |
| 32 | +.. _#92: https://github.com/simonw/datasette/issues/92 |
| 33 | +.. _#94: https://github.com/simonw/datasette/issues/94 |
| 34 | +.. _#95: https://github.com/simonw/datasette/issues/95 |
| 35 | +.. _#96: https://github.com/simonw/datasette/issues/96 |
| 36 | +.. _#98: https://github.com/simonw/datasette/issues/98 |
| 37 | +.. _#99: https://github.com/simonw/datasette/issues/99 |
| 38 | +.. _#100: https://github.com/simonw/datasette/issues/100 |
| 39 | +.. _#108: https://github.com/simonw/datasette/issues/108 |
| 40 | + |
4 | 41 | 0.11 (2017-11-14)
|
5 | 42 | -----------------
|
6 | 43 | - Added ``datasette publish now --force`` option.
|
7 | 44 |
|
8 | 45 | This calls ``now`` with ``--force`` - useful as it means you get a fresh copy of datasette even if Now has already cached that docker layer.
|
9 | 46 | - Enable ``--cors`` by default when running in a container.
|
10 | 47 |
|
11 |
| - |
12 | 48 | 0.10 (2017-11-14)
|
13 | 49 | -----------------
|
14 | 50 | - Fixed `#83`_ - 500 error on individual row pages.
|
@@ -49,4 +85,4 @@ Changelog
|
49 | 85 |
|
50 | 86 | .. _#70: https://github.com/simonw/datasette/issues/70
|
51 | 87 | .. _#78: https://github.com/simonw/datasette/issues/78
|
52 |
| -.. _#69: https://github.com/simonw/datasette/issues/69 |
| 88 | +.. _#69: https://github.com/simonw/datasette/issues/69 |
0 commit comments