v0.7.0
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;