web.py v0.50 Release Notes

Release Date: 2020-03-21 // about 4 years ago
    • ๐Ÿ†• New session store MemoryStore, used to save a session in memory.
      Should be useful where there are limited fs writes to the disk, like
      flash memories. #174
    • ๐Ÿ›  Fixed: not support samesite=none. #592
    • ๐Ÿ›  Fixed Python-3 compatibility issues: #574, #576.
    • ๐Ÿ‘Œ Support tuple and set in sqlquote().
    • โฌ‡๏ธ Drop support for SQL driver pgdb. It was dead, you cannot even find its
      website or download link.
    • ๐Ÿš€ Drop support for SQL driver psycopg. The latest version was released in
      2006 (14 years ago), please use psycopg2 instead.
    • โœ‚ Removed function web.safemarkdown. if it's used in your application, you
      can install the Markdown module from pypi
      ๐ŸŒ (https://pypi.org/project/Markdown/), then replace web.safemarkdown() by
      markdown.markdown().