Skip to content

Commit edb987e

Browse files
committed
v0.10.0
1 parent 6263f84 commit edb987e

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

CHANGELOG.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
# CHANGELOG.md
22

3-
## unreleased
3+
## 0.10.0 (2023-08-20)
44

5+
- `.sql` files are now parsed in the dialect of the database they are executed against,
6+
instead of always being parsed as a "Generic" dialect.
7+
This allows using more database-specific features in SQLPage and avoids confusion.
8+
This should not change anything in most cases, but could break your web application
9+
if you were relying on an SQL dialect syntax that is not directly supported by your database,
10+
hence the major version change.
511
- Added the ability to download chart data as SVG, PNG, and **CSV** using the new `toolbar` attribute of the `chart` component.
612
This makes it easy to provide a large data set and allow users to download it as a CSV file from a nice UI.
713
```sql
@@ -18,9 +24,6 @@
1824
instead of displaying an error page explaining the issue.
1925
- Improved the appearance of scrollbars. (Workaround for https://github.com/tabler/tabler/issues/1648).
2026
See https://github.com/lovasoa/SQLpage/discussions/17
21-
- `.sql` files are now parsed in the dialect of the database they are executed against,
22-
instead of always being parsed as a "Generic" dialect.
23-
This allows using more database-specific features in SQLPage and avoids confusion.
2427
- Create a single database connection by default when using `sqlite://:memory:` as the database URL.
2528
This makes it easier to use temporary tables and other connection-specific features.
2629
- When no component is selected, display data with the `debug` component by default.

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sqlpage"
3-
version = "0.9.5"
3+
version = "0.10.0"
44
edition = "2021"
55
description = "A SQL-only web application framework. Takes .sql files and formats the query result using pre-made configurable professional-looking components."
66
keywords = ["web", "sql", "framework"]

0 commit comments

Comments
 (0)