Skip to content

v0.37.1

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 24 Sep 15:31
· 92 commits to main since this release

SQLPage v0.37.1 released !

Note

SQLPage lets you build web applications using SQL queries. If you know SQL, you can create complete web applications quickly.
Download for Windows, MacOS, or Linux, or try online!

This is a small bugfix release: fixes for UUID decoding, NULL handling in sqlpage.link, OIDC login loops, submenu clicks, and several SQL parser improvements.

Release Notes

🐛 Bug Fixes

  • Fixed decoding of UUID values.

  • Fixed handling of NULL values in sqlpage.link:

    • Previously encoded as 'null' (string).
    • Now omitted correctly from query parameters.
  • Fixed a bug in OIDC login flows:

    • When two tabs started login simultaneously, an infinite redirect loop could occur.
    • Most common when mobile browsers restored multiple inactive tabs.

🖱️ Submenu Handling in Shell

  • Submenus now auto-close on click.
  • This avoids a regression introduced in v0.36.0 where clicking anywhere after submenu navigation scrolled the page back to the top.
  • Temporary fix — a proper solution is planned for the next release.
  • See issue #1011 for details.

🎨 Better Visual Errors

  • Adopted the new styled error pages (introduced in v0.37.1) for:

    • 403 Forbidden
    • 429 Too Many Requests

📜 SQL Parser Improvements

  • Improved compatibility with advanced queries:

    • MERGE queries inside CTEs.
    • MERGE queries with RETURNING clauses.
  • Based on upstream changes in datafusion-sqlparser-rs 0.59.0.