- Update to 3.41.2:

* Multiple fixes for reads past the end of memory buffers
  * Fix the sqlite3_error_offset() so that it does not return
    out-of-range values when reporting errors associated with
    generated columns.
  * Multiple fixes in the query query optimizer for problems that
    cause incorrect results for bizarre, fuzzer-generated queries.
  * Increase the size of the reference counter in the page cache
    object to 64 bits to ensure that the counter never overflows.
  * Fix a performance regression caused by a bug fix in patch
    release 3.41.1.
  * Fix a few incorrect assert() statements.

OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=311
This commit is contained in:
2023-03-22 15:25:48 +00:00
committed by Git OBS Bridge
parent 5b479316ed
commit e14d797334
6 changed files with 24 additions and 8 deletions

View File

@@ -1,3 +1,19 @@
-------------------------------------------------------------------
Wed Mar 22 15:02:05 UTC 2023 - Reinhard Max <max@suse.com>
- Update to 3.41.2:
* Multiple fixes for reads past the end of memory buffers
* Fix the sqlite3_error_offset() so that it does not return
out-of-range values when reporting errors associated with
generated columns.
* Multiple fixes in the query query optimizer for problems that
cause incorrect results for bizarre, fuzzer-generated queries.
* Increase the size of the reference counter in the page cache
object to 64 bits to ensure that the counter never overflows.
* Fix a performance regression caused by a bug fix in patch
release 3.41.1.
* Fix a few incorrect assert() statements.
-------------------------------------------------------------------
Fri Mar 17 15:44:46 UTC 2023 - Andreas Stieger <andreas.stieger@gmx.de>