./databases/sqlite3, SQL Database Engine in a C Library

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ] [ Add to tracker ]


Branch: pkgsrc-2022Q3, Version: 3.39.4, Package name: sqlite3-3.39.4, Maintainer: pkgsrc-users

SQLite is a C library that implements an SQL database engine. Programs
that link with the SQLite library can have SQL database access without
running a separate RDBMS process. The distribution comes with a standalone
command-line access program (sqlite) that can be used to administer an
SQLite database and which serves as an example of how to use the SQLite
library.

SQLite is not a client library used to connect to a big database server.
SQLite is the server. The SQLite library reads and writes directly to and
from the database files on disk.

This is sqlite3, the current stable version.



Package options: fts

Master sites:

Filesize: 2993.373 KB

Version history: (Expand)


CVS history: (Expand)


   2022-10-21 21:39:49 by Benny Siegert | Files touched by this commit (6) | Package updated
Log message:
Pullup ticket #6688 - requested by taca
databases/sqlite3: security fix (for ruby-sqlite3)

Revisions pulled up:
- databases/sqlite3-docs/PLIST                                  1.118
- databases/sqlite3-docs/distinfo                               1.121
- databases/sqlite3-tcl/distinfo                                1.133
- databases/sqlite3/Makefile.common                             1.95
- databases/sqlite3/distinfo                                    1.188
- devel/lemon/distinfo                                          1.62

---
   Module Name:	pkgsrc
   Committed By:	adam
   Date:		Mon Oct  3 12:27:52 UTC 2022

   Modified Files:
   	pkgsrc/databases/sqlite3: Makefile.common distinfo
   	pkgsrc/databases/sqlite3-docs: PLIST distinfo
   	pkgsrc/databases/sqlite3-tcl: distinfo
   	pkgsrc/devel/lemon: distinfo

   Log message:
   sqlite3: updated to 3.39.4

   Changes in version 3.39.4 (2022-09-29):

   Fix the build on Windows so that it works with -DSQLITE_OMIT_AUTOINIT
   Fix a long-standing problem in the btree balancer that might, in rare cases, \ 
cause database corruption if the application uses an application-defined page \ 
cache.
   Enhance SQLITE_DBCONFIG_DEFENSIVE so that it disallows CREATE TRIGGER \ 
statements if one or more of the statements in the body of the trigger write \ 
into shadow tables.
   Fix a possible integer overflow in the size computation for a memory \ 
allocation in FTS3.
   Fix a misuse of the sqlite3_set_auxdata() interface in the ICU Extension.