Releases: rogerbinns/apsw
3.46.1.0
The shell dump command outputs the application_id in addition to the user_version.
PyPI binary builds for Python 3.13 now available, as well as older Python ARM64 are available.
3.46.0.1
apsw.ext.query_info() provides the count and names of bindings parameters. (APSW issue 528)
Address how errors are handled in VFS xRandomness routine, that is only called once by SQLite to seed its random number generator. (APSW issue 526)
Added Connection.vfsname() and updated corresponding shell command to get the diagnostic names of the vfs stack for the connection. (APSW issue 525)
Do not cache Connection.pragma() statements to avoid encryption keys, or pragmas that run during prepare from being retained. (APSW issue 522)
Connection.pragma() adds keyword schema argument to run pragma against attached databases. (APSW issue 524)
3.46.0.0
Adjusted levels in apsw.ext.log_sqlite() to be lower for some SQLite messages like SQLITE_SCHEMA and SQLITE_NOTICE_RECOVER_WAL (APSW issue 518)
Previous source releases were signed with PGP. Starting with this release Sigstore’s cosign tool is used (instructions). (APSW issue 512)
3.45.3.0
No APSW changes.
3.45.2.0
Minor doc and tests change due to changed behaviour of sqlite3_serialize on an empty database, used by Connection.serialize().
3.45.1.0
No APSW changes
3.45.0.0
Correctly handle NULL/None VFS filenames (APSW issue 506)
3.44.2.0
Added logger parameter to apsw.ext.log_sqlite() to use a specific logging.Logger (APSW issue 493)
Added apsw.ext.result_string() to turn an result code into a string, taking into account if it is extended or not.
Provide detail when C implemented objects are printed. For example connections include the filename. (APSW issue 494)
Added URIFilename.parameters() (APSW issue 496)
URIFilename are only valid for the duration of the VFS.xOpen() call. If you save and use the object later you will get an exception. (APSW issue 501)
3.44.0.0
Added virtual table VTTable.Integrity() support.
On 64 bit platforms with the amalgamation, SQLITE_MAX_MMAP_SIZE is set to 256 terabytes. SQLite’s default limit is 2GB. (APSW issue 491)
3.43.2.0
Connection.create_aggregate_function() can take a class with step and final methods. (APSW issue 421)
Corrected non PEP 8 compliant names. The old names remain as aliases to the new ones, and your code will not break.