Skip to content

Commit c28cf2a

Browse files
committed
Merge branch 'main' into login
2 parents ce4ffd3 + 7f7fdd6 commit c28cf2a

File tree

22 files changed

+676
-185
lines changed

22 files changed

+676
-185
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
db_url: "mssql://root:[email protected]/sqlpage"
5555
- database: odbc
5656
container: postgres
57-
db_url: "Driver=/usr/lib/x86_64-linux-gnu/odbc/psqlodbcw.so;Server=127.0.0.1;Port=5432;Database=sqlpage;UID=root;PWD=Password123!"
57+
db_url: "Driver=PostgreSQL Unicode;Server=127.0.0.1;Port=5432;Database=sqlpage;UID=root;PWD=Password123!"
5858
setup_odbc: true
5959
steps:
6060
- uses: actions/checkout@v4
@@ -74,6 +74,8 @@ jobs:
7474
env:
7575
DATABASE_URL: ${{ matrix.db_url }}
7676
RUST_BACKTRACE: 1
77+
MALLOC_CHECK_: 3
78+
MALLOC_PERTURB_: 10
7779

7880
windows_test:
7981
runs-on: windows-latest

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
11
# CHANGELOG.md
22

3-
## v0.38.1
3+
## v0.39.0
44
- 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
5+
- Display source line info in errors even when the database does not return a precise error position. In this case, the entire problematic SQL statement is referenced.
6+
- The shell with a vertical sidebar can now have "active" elements, just like the horizontal header bar.
7+
- New `edit_url`, `delete_url`, and `custom_actions` properties in the [table](https://sql-page.com/component.sql?component=table) component to easily add nice icon buttons to a table.
8+
- SQLPage now sets the [`Server-Timing` header](https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/Server-Timing) in development. So when you have a page that loads slowly, you can open your browser's network inspector, click on the slow request, then open the timing tab to understand where it's spending its time.
9+
- <img width="1250" height="1263" alt="image" src="https://github.com/user-attachments/assets/6781a31f-e342-4e8c-8506-bc47049ce313" />
10+
- Fixed a memory corruption issue in the builtin odbc driver manager
11+
- ODBC: fix using globally installed system drivers by their name in debian-based linux distributions.
12+
513

614
## v0.38.0
715
- Added support for the Open Database Connectivity (ODBC) standard.

0 commit comments

Comments
 (0)