Skip to content

1.2.3

Compare
Choose a tag to compare
@sqla-tester sqla-tester released this 22 Sep 19:55
· 31 commits to main since this release

1.2.3

Released: Thu Sep 22 2022

bug

  • [bug] [lexer] Fixed issue in lexer in the same category as that of #366 where
    the regexp used to match an end tag didn't correctly organize for matching
    characters surrounded by whitespace, leading to high memory / interpreter
    hang if a closing tag incorrectly had a large amount of unterminated space
    in it. Credit to Sebastian Chnelik for locating the issue.

    As Mako templates inherently render and directly invoke arbitrary Python
    code from the template source, it is never appropriate to create
    templates that contain untrusted input.

    References: #367