Skip to content

v0.7.0

Compare
Choose a tag to compare
@github-actions github-actions released this 21 Jun 00:51
· 1794 commits to main since this release
f8b13dd

This version adds support for cookies. You can read user cookies using the new sqlpage.cookie function. For instance:

SELECT 'text' as component, 'You are ' || sqlpage.cookie('username') as contents;

And you can store a new cookie on the user's device with

SELECT 'cookie' as component, 'username' as name, 'John Doe' as value;