|
1 | 1 | # CHANGELOG.md |
2 | 2 |
|
3 | | - ## v0.39.1 (2025-11-08) |
4 | | - - More precise server timing tracking to debug performance issues |
5 | | - - Fix missing server timing header in some cases |
6 | | - - Implement nice error messages for some header-related errors such as invalid header values. |
7 | | - - `compress_responses` is now set to `false` by default in the configuration. |
8 | | - - When response compression is enabled, additional buffering is needed. Users reported a better experience with pages that load more progressively, reducing the time before the pages' shell is rendered. |
9 | | - - When SQLPage is deployed behind a reverse proxy, compressing responses between sqlpage and the proxy is wasteful. |
10 | | - - In the table component, allow simple objects in custom_actions instead of requiring arrays of objects. |
11 | | - - Fatser icon loading. Previously, even a page containing a single icon required downloading and parsing a ~2MB file. This resulted in a delay where pages initially appeared with a blank space before icons appeared. Icons are now inlined inside pages and appear instantaneously. |
12 | | - - Updated tabler icons to 3.35 |
13 | | - - Fix inaccurate ODBC warnings |
14 | | - - Added support for Microsoft SQL Server named instances: `mssql://user:pass@localhost/db?instance_name=xxx` |
15 | | - - Added a detailed [performance guide](https://sql-page.com/blog?post=Performance+Guide) to the docs. |
16 | | - - Added an `image_height` property to the card component so top images can be capped without stretching or upscaling. |
| 3 | +## unreleased |
| 4 | + - add support for postgres range types |
| 5 | + - Added an `image_height` property to the card component so top images can be capped without stretching or upscaling. |
| 6 | + |
| 7 | + |
| 8 | +## v0.39.1 (2025-11-08) |
| 9 | + - More precise server timing tracking to debug performance issues |
| 10 | + - Fix missing server timing header in some cases |
| 11 | + - Implement nice error messages for some header-related errors such as invalid header values. |
| 12 | + - `compress_responses` is now set to `false` by default in the configuration. |
| 13 | + - When response compression is enabled, additional buffering is needed. Users reported a better experience with pages that load more progressively, reducing the time before the pages' shell is rendered. |
| 14 | + - When SQLPage is deployed behind a reverse proxy, compressing responses between sqlpage and the proxy is wasteful. |
| 15 | + - In the table component, allow simple objects in custom_actions instead of requiring arrays of objects. |
| 16 | + - Fatser icon loading. Previously, even a page containing a single icon required downloading and parsing a ~2MB file. This resulted in a delay where pages initially appeared with a blank space before icons appeared. Icons are now inlined inside pages and appear instantaneously. |
| 17 | + - Updated tabler icons to 3.35 |
| 18 | + - Fix inaccurate ODBC warnings |
| 19 | + - Added support for Microsoft SQL Server named instances: `mssql://user:pass@localhost/db?instance_name=xxx` |
| 20 | + - Added a detailed [performance guide](https://sql-page.com/blog?post=Performance+Guide) to the docs. |
17 | 21 |
|
18 | 22 | ## v0.39.0 (2025-10-28) |
19 | 23 | - Ability to execute sql for URL paths with another extension. If you create sitemap.xml.sql, it will be executed for example.com/sitemap.xml |
|
0 commit comments