Skip to content

Releases: rogerbinns/apsw

3.46.1.0

13 Aug 20:28
Compare
Choose a tag to compare

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

16 Jun 22:44
Compare
Choose a tag to compare

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

23 May 21:30
Compare
Choose a tag to compare

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

16 Apr 18:45
Compare
Choose a tag to compare

3.45.2.0

12 Mar 17:40
Compare
Choose a tag to compare

Minor doc and tests change due to changed behaviour of sqlite3_serialize on an empty database, used by Connection.serialize().

3.45.1.0

31 Jan 15:12
Compare
Choose a tag to compare

3.45.0.0

16 Jan 16:46
Compare
Choose a tag to compare

Correctly handle NULL/None VFS filenames (APSW issue 506)

3.44.2.0

29 Nov 19:25
Compare
Choose a tag to compare

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

06 Nov 18:36
Compare
Choose a tag to compare

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

24 Oct 20:19
Compare
Choose a tag to compare

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.