Skip to content

v1.5.2

Latest

Choose a tag to compare

@github-actions github-actions released this 14 Jul 16:36
0c607c7

v1.5.2

Features

  • Added -v and --version CLI flags for quickly checking
    the installed sqlit version. #253

Bug fixes

  • PostgreSQL statement splitting now respects dollar-quoted
    blocks ($$...$$ and $tag$...$tag$), so function bodies
    containing semicolons no longer produce unterminated
    dollar-quote errors. Thanks @muradodjag. #248, #246

  • UPDATE and DELETE actions generated from result rows now
    include the required database and schema qualifiers, preventing
    mutations from targeting the wrong database or schema.
    Thanks @eibx. #250

  • PostgreSQL autocomplete now exposes tables from non-default
    schemas as schema.table and narrows schema. completion to
    tables within that schema. #252

  • PostgreSQL autocomplete now quotes mixed-case table and column
    identifiers where required, while leaving lowercase-safe names
    unchanged. Thanks @cseickel. #268, #262

  • A trailing line comment after a semicolon no longer causes the
    process worker to reject a single query as multi-statement.
    Genuine multi-statement queries remain blocked.
    Thanks @corn-pone-opinions. #269, #254