Skip to content

Commit 22c39c1

Browse files
committed
blog about v0.13
1 parent 5f2325e commit 22c39c1

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
INSERT INTO blog_posts (title, description, icon, created_at, content)
2+
VALUES (
3+
'SQLPage v0.13',
4+
'SQLPage v0.13 brings easier debugging and a beautiful new timeline component.',
5+
'refresh',
6+
'2023-10-16',
7+
'
8+
# v0.13.0: beautiful timelines and scatter plots
9+
10+
- New [timeline](https://sql.ophir.dev/documentation.sql?component=timeline#component) component to display a timeline of events.
11+
- Add support for scatter and bubble plots in the chart component. See [the chart documentation](https://sql.ophir.dev/documentation.sql?component=chart#component).
12+
- further improve debuggability with more precise error messages. In particular, it used to be hard to debug errors in long migration scripts, because the line number and position was not displayed. This is now fixed.
13+
- Better logs on 404 errors. SQLPage used to log a message without the path of the file that was not found. This made it hard to debug 404 errors. This is now fixed.
14+
- Add a new `top_image` attribute to the [card](https://sql.ophir.dev/documentation.sql?component=card#component) component to display an image at the top of the card. This makes it possible to create beautiful image galleries with SQLPage.
15+
- Updated dependencies, for bug fixes and performance improvements.
16+
- New icons (see https://tabler-icons.io/changelog)
17+
- When `NULL` is passed as an icon name, display no icon instead of raising an error.
18+
- Official docker image folder structure changed. The docker image now expects
19+
- the SQLPage website (`.sql` files) to be in `/var/www/`, and
20+
- the SQLPage configuration folder to be in `/etc/sqlpage/`
21+
- the configuration file should be in `/etc/sqlpage/sqlpage.json`
22+
- the database file should be in `/etc/sqlpage/sqlpage.db`
23+
- custom templates should be in `/etc/sqlpage/templates/`
24+
- This configuration change concerns only the docker image. If you are using the sqlpage binary directly, nothing changes.
25+
26+
**Full Changelog**: https://github.com/lovasoa/SQLpage/compare/v0.12.0...v0.13.0
27+
');

0 commit comments

Comments
 (0)