Next | Query returned 205 messages, browsing 121 to 130 | Previous

History of commit frequency

CVS Commit History:


   2015-11-03 02:56:36 by Alistair G. Crooks | Files touched by this commit (368)
Log message:
Add SHA512 digests for distfiles for databases category

Problems found with existing distfiles:
	distfiles/D6.data.ros.gz
	distfiles/cstore0.2.tar.gz
	distfiles/data4.tar.gz
	distfiles/sphinx-2.2.7-release.tar.gz
No changes made to the cstore or mariadb55-client distinfo files.

Otherwise, existing SHA1 digests verified and found to be the same on
the machine holding the existing distfiles (morden).  All existing
SHA1 digests retained for now as an audit trail.
   2015-10-17 09:36:50 by Adam Ciarcinski | Files touched by this commit (5)
Log message:
Changes 3.9.1:
Fix the json1 extension so that it does not recognize ASCII form-feed as a \ 
whitespace character, in order to comply with RFC-7159.
Add a few #ifdef and build script changes to address compilation issues that \ 
appeared after the 3.9.0 release.
   2015-10-15 19:31:32 by Adam Ciarcinski | Files touched by this commit (7) | Package updated
Log message:
Changes 3.9.0:
Policy Changes:
* The version numbering conventions for SQLite are revised to use the emerging \ 
standard of semantic versioning.

New Features And Enhancements:
* Added the json1 extension module in the source tree, and in the amalgamation. \ 
Enable support using the SQLITE_ENABLE_JSON1 compile-time option.
* Added Full Text Search version 5 (FTS5) to the amalgamation, enabled using \ 
SQLITE_ENABLE_FTS5. FTS5 will be considered "experimental" (subject to \ 
incompatible changes) for at least one more release cycle.
* The CREATE VIEW statement now accepts an optional list of column names \ 
following the view name.
* Added support for indexes on expressions.
* Added support for table-valued functions in the FROM clause of a SELECT statement.
* Added support for eponymous virtual tables.
* A VIEW may now reference undefined tables and functions when initially \ 
created. Missing tables and functions are reported when the VIEW is used in a \ 
query.
* Added the sqlite3_value_subtype() and sqlite3_result_subtype() interfaced \ 
(used by the json1 extension).
* The query planner is now able to use partial indexes that contain \ 
AND-connected terms in the WHERE clause.
* The sqlite3_analyzer.exe utility is updated to report the depth of each btree \ 
and to show the average fanout for indexes and WITHOUT ROWID tables.
* Enhanced the dbstat virtual table so that it can be used as a table-valued \ 
function where the argument is the schema to be analyzed.

Other changes:
* The sqlite3_memory_alarm() interface, which has been deprecated and \ 
undocumented for 8 years, is changed into a no-op.

Important fixes:
* Fixed a critical bug in the SQLite Encryption Extension that could cause the \ 
database to become unreadable and unrecoverable if a VACUUM command changed the \ 
size of the encryption nonce.
* Added a memory barrier in the implementation of sqlite3_initialize() to help \ 
ensure that it is thread-safe.
* Fix the OR optimization so that it always ignores subplans that do not use an \ 
index.
* Do not apply the WHERE-clause pushdown optimization on terms that originate in \ 
the ON or USING clause of a LEFT JOIN.
   2015-10-10 03:58:23 by Ryo ONODERA | Files touched by this commit (399)
Log message:
Recursive revbump from textproc/icu
   2015-07-30 14:37:04 by Adam Ciarcinski | Files touched by this commit (5)
Log message:
Changes 3.8.11.1:
Restore an undocumented side-effect of PRAGMA cache_size: force the database \ 
schema to be parsed if the database has not been previously accessed.
Fix a long-standing problem in sqlite3_changes() for WITHOUT ROWID tables that \ 
was reported a few hours after the 3.8.11 release.
   2015-07-28 09:18:23 by Adam Ciarcinski | Files touched by this commit (5)
Log message:
Changes 3.8.11:
Added the experimental RBU extension. Note that this extension is experimental \ 
and subject to change in incompatible ways.
Added the experimental FTS5 extension. Note that this extension is experimental \ 
and subject to change in incompatible ways.
Added the sqlite3_value_dup() and sqlite3_value_free() interfaces.
Enhance the spellfix1 extension to support ON CONFLICT clauses.
The IS operator is now able to drive indexes.
Enhance the query planner to permit automatic indexing on FROM-clause subqueries \ 
that are implemented by co-routine.
Disallow the use of "rowid" in common table expressions.
Added the PRAGMA cell_size_check command for better and earlier detection of \ 
database file corruption.
Added the matchinfo 'b' flag to the matchinfo() function in FTS3.
Improved fuzz-testing of database files, with fixes for problems found.
Add the fuzzcheck test program and automatically run this program using both SQL \ 
and database test cases on "make test".
Added the SQLITE_MUTEX_STATIC_VFS1 static mutex and use it in the Windows VFS.
The sqlite3_profile() callback is invoked (by sqlite3_reset() or \ 
sqlite3_finalize()) for statements that did not run to completion.
Enhance the page cache so that it can preallocate a block of memory to use for \ 
the initial set page cache lines. Set the default preallocation to 100 pages. \ 
Yields about a 5% performance increase on common workloads.
Miscellaneous micro-optimizations result in 22.3% more work for the same number \ 
of CPU cycles relative to the previous release. SQLite now runs twice as fast as \ 
version 3.8.0 and three times as fast as version 3.3.9. (Measured using \ 
cachegrind on the speedtest1.c workload on Ubuntu 14.04 x64 with gcc 4.8.2 and \ 
-Os. Your performance may vary.)
Added the sqlite3_result_zeroblob64() and sqlite3_bind_zeroblob64() interfaces.
   2015-05-21 12:38:53 by Adam Ciarcinski | Files touched by this commit (5)
Log message:
Changes 3.8.10.2:
Fix an index corruption issue introduced by version 3.8.7. An index with a TEXT \ 
key can be corrupted by an INSERT into the corresponding table if the table has \ 
two nested triggers that convert the key value to INTEGER and back to TEXT \ 
again.
   2015-05-18 14:11:10 by Adam Ciarcinski | Files touched by this commit (5)
Log message:
Changes 3.8.10.1:
Make sqlite3_compileoption_used() responsive to the SQLITE_ENABLE_DBSTAT_VTAB \ 
compile-time option.
Fix a harmless warning in the command-line shell on some versions of MSVC.
Fix minor issues with the dbstat virtual table.
   2015-05-09 11:32:56 by Adam Ciarcinski | Files touched by this commit (5)
Log message:
Changes 3.8.10:
Added the sqldiff.exe utility program for computing the differences between two \ 
SQLite database files.
Added the y format string to the matchinfo() function of FTS3.
Performance improvements for ORDER BY, VACUUM, CREATE INDEX, PRAGMA \ 
integrity_check, and PRAGMA quick_check.
Fix many obscure problems discovered while SQL fuzzing.
Identify all methods for important objects in the interface documentation. (example)
Made the American Fuzzy Lop fuzzer a standard part of SQLite's testing strategy.
Add the ".binary" and ".limits" commands to the command-line \ 
shell.
Make the "dbstat" virtual table part of standard builds when compiled \ 
with the SQLITE_ENABLE_DBSTAT_VTAB option.
   2015-04-22 01:26:42 by Pierre Pronchery | Files touched by this commit (4) | Package updated
Log message:
Simplify updates for databases/sqlite3{,-docs,-tcl}

This change adds a Makefile.version file, common to every package from
SQLite 3.

Next | Query returned 205 messages, browsing 121 to 130 | Previous