All Versions
6
Latest Version
Avg Release Cycle
-
Latest Release
-

Changelog History

  • v2.8.3 Changes

    ๐Ÿš€ (released on August 30th 2016)

    • ๐Ÿ›  Fixed bug where cursor.description was an emtpy tuple instead of None for non-SELECT statements
  • v2.8.2 Changes

    ๐Ÿš€ (released on March 26th 2016)

    • ๐Ÿ‘‰ Make sure pysqlite compiles with Visual Studio, which does not support C99
    • Switch to sqlite3_open_v2. The flags parameter is now exposed. You can use it to modify the behaviour of the opened database connection, for example opening a database file in read-only mode or enable URI mode.
  • v2.8.1 Changes

    ๐Ÿš€ (released on August 23rd 2015)

    ๐Ÿ› BUG FIXES

    • ๐Ÿ›  Fixed multiple refcount problems.

    ๐Ÿ‘Œ IMPROVEMENTS

    • โž• Added versionchanged about changed transaction behaviour wrt DDL statements to documentation.
    • I was informed by Roger Binns that FTS5 is not stable yet. The amalgamation is now built with FTS3 and FTS4 instead.
  • v2.8.0 Changes

    ๐Ÿš€ (released on August 19th 2015)

    ๐Ÿ†• NEW FEATURES

    • ๐Ÿ›  No new features, but tons of bugfixes. These mean that things now work that didn't before:
    • Transactional DDL now works
    • You can use SAVEPOINTs now

    ๐Ÿ— BUILD PROCESS

    • ๐Ÿ–จ Python 2.7.x is now required. If trying to use it with Python 3, print a useful error message. Integrated all fixes from the sqlite3 module in Python 2.7.10.

    MAJOR IMPROVEMENTS

    • ๐Ÿ“œ Completety got rid of statement parsing. We now use SQLite functions to determine if a statement modifies the database or not. If a statement modifies the database, then we implicitly start a transaction. For backwards compatibility reasons, we do NOT implicitly start a transaction if we encounter a DDL statement.

    You can, however, now have transactional DDL if you want to:

    cur = con.cursor()
    cur.execute("begin")
    cur.execute("create table foo(bar)")
    con.rollback()
    

    This also means that people can now finally use SAVEPOINTS.

    • Use sqlite3_get_autocommit() to determine if we are within a transaction instead of trying to be smart.

    • Switch to v2 statement API. This simplified the code and will increase stability.

    MINOR IMPROVEMENTS

    • You can use unicode strings as index for Row objects.

    ๐Ÿ›  BUGFIXES

    • ๐Ÿ›  Fixed a regression: statements should not be reset after a commit.

    ๐Ÿ—„ GENERAL CLEANUP AND DEPRECATIONS

    • Since december 2005, row_factory is a feature of the Connection class instead of the Cursor class. It was kept in the Cursor class for backwards compatibility. Now it was time to finally remove it from the Cursor class.
    • ๐Ÿ—„ DEPRECATE converters and adapters.
    • ๐Ÿ—„ DEPRECATE text_factory.
    • โœ‚ Remove compatibility workarounds for old Python versions.
    • โœ‚ Remove workarounds for old SQLite versions.
    • โœ‚ Remove apsw related code.
  • v2.7.0 Changes

    ๐Ÿš€ (released on August 12th 2015)

    ๐Ÿ†• NEW FEATURES

    • The limit functionality of SQLite is now wrapped.

    ๐Ÿ— BUILD PROCESS

    • ๐Ÿ— Instead of fts3, build fts5 extension when using amalgamation.
    • ๐Ÿ‘‰ use pkg-config for finding SQLite if available
    • โœ‚ Removed the download/unpacking of SQLite amalgamation files. If you now want to statically build against the SQLite amalgamation files, download them yourself and put them in the pysqlite root directory.

    ๐Ÿ‘Œ IMPROVEMENTS

    • ๐ŸŒ Use toc.db file from the SQLite web site and a custom script to make sure that we have all integer constants mapped to Python.
    • ๐Ÿ‘‰ Use Travis CI
    • โž• Added Trove classifier to make sure Python 3 users do not accidentally try to install it.

    ๐Ÿ›  BUGFIXES

    • ๐Ÿ›  Fix for parsing fractional second part of timestamps.
    • ๐Ÿ›  Fixed bug where when using converters, empty strings ended up as None on the Python side.
    • SQLite can cope with text with embedded NUL. We can now, too.
    • many others
  • v2.6.3 Changes

    ๐Ÿš€ (released on February 16th 2011)