diff options
| author | Pavel Volkov <pavelivolkov@gmail.com> | 2022-11-28 07:45:01 +0100 |
|---|---|---|
| committer | Fernando ApesteguĂa <fernape@FreeBSD.org> | 2022-11-28 17:54:42 +0100 |
| commit | 5e8b3d783d2cce36c7e4f38aad7b34b4ee3d9c68 (patch) | |
| tree | cda160b7c02ed8e6307f4c8a0df580ce9794c463 /databases/sqlite3/Makefile | |
| parent | dns/knot3: Update to 3.2.3 (diff) | |
databases/sqlite3: Update to 3.40.0
ChangeLog: https://www.sqlite.org/releaselog/3_40_0.html
* Add support for compiling SQLite to WASM and running it in web browsers.
* Add the recovery extension that might be able to recover some content from a
corrupt database file.
* Query planner enhancements:
* A new typedef named sqlite3_filename is added and used to represent the name
of a database file.
* Add the sqlite3_value_encoding() interface.
* Security enhancement: SQLITE_DBCONFIG_DEFENSIVE is augmented to prohibit
changing the schema_version.
* Enhancements to the PRAGMA integrity_check statement:
* Enhance the VACUUM INTO statement so that it honors the PRAGMA synchronous
setting.
* Enhance the sqlite3_strglob() and sqlite3_strlike() APIs
* Provide the new SQLITE_MAX_ALLOCATION_SIZE compile-time option for limiting
the size of memory allocations.
* Change the algorithm used by SQLite's built-in pseudo-random number
generator (PRNG) from RC4 to Chacha20.
* Allow two or more indexes to have the same name as long as they are all in
separate schemas.
* Miscellaneous performance optimizations result in about 1% fewer CPU cycles
used on typical workloads.
PR: 268012
Reported by: pavelivolkov@gmail.com (maintainer)
Diffstat (limited to 'databases/sqlite3/Makefile')
| -rw-r--r-- | databases/sqlite3/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/databases/sqlite3/Makefile b/databases/sqlite3/Makefile index efa293154039..62275743c0ed 100644 --- a/databases/sqlite3/Makefile +++ b/databases/sqlite3/Makefile @@ -1,6 +1,5 @@ PORTNAME= sqlite3 -DISTVERSION= 3.39.3 -PORTREVISION= 1 +DISTVERSION= 3.40.0 PORTEPOCH= 1 CATEGORIES= databases MASTER_SITES= https://www.sqlite.org/${_YEAR}/ https://www2.sqlite.org/${_YEAR}/ https://www3.sqlite.org/${_YEAR}/ |
