SHA256
1
0
forked from pool/sqlite3
Commit Graph

76 Commits

Author SHA256 Message Date
Sascha Peilicke
516d56a9be Accepting request 225478 from home:AndreasStieger:branches:server:database
SQLite 3.8.4

OBS-URL: https://build.opensuse.org/request/show/225478
OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=93
2014-03-11 12:10:44 +00:00
Reinhard Max
eb5519679d Accepting request 221962 from home:AndreasStieger:branches:server:database
SQLite 3.8.3.1, add -doc

OBS-URL: https://build.opensuse.org/request/show/221962
OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=91
2014-02-13 10:47:47 +00:00
Reinhard Max
f1a83bcdea Fix source URL
OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=89
2014-02-04 15:16:17 +00:00
Reinhard Max
7890cc49c2 - New version: 3.8.3:
* Added support for common table expressions and the WITH
    clause.
  * Added the printf() SQL function.
  * Added SQLITE_DETERMINISTIC as an optional bit in the 4th
    argument to the sqlite3_create_function() and related
    interfaces, providing applications with the ability to create
    new functions that can be factored out of inner loops when
    they have constant arguments.
  * Add SQLITE_READONLY_DBMOVED error code, returned at the
    beginning of a transaction, to indicate that the underlying
    database file has been renamed or moved out from under SQLite.
  * Allow arbitrary expressions, including function calls and
    subqueries, in the filename argument to ATTACH.
  * Allow a VALUES clause to be used anywhere a SELECT statement
    is valid.
  * Reseed the PRNG used by sqlite3_randomness(N,P) when invoked
    with N==0. Automatically reseed after a fork() on unix.
  * Enhance the spellfix1 virtual table so that it can search
    efficiently by rowid.
  * Performance enhancements.
  * Improvements to the comments in the VDBE byte-code display
    when running EXPLAIN.
  * Add the "%token_class" directive to LEMON parser generator and
    use it to simplify the grammar.
  * Change the LEMON source code to avoid calling C-library
    functions that OpenBSD considers dangerous. (Ex: sprintf).
  * Bug fix: In the command-line shell CSV import feature, do not
    end a field when an escaped double-quote occurs at the end of
    a CRLN line.

OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=88
2014-02-04 15:09:58 +00:00
Reinhard Max
033189079a - Simplify building on RH for Application:Geo.
- See discussion in https://build.opensuse.org/request/show/212812

OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=85
2014-01-07 17:09:45 +00:00
Sascha Peilicke
afc4aaf9f8 Accepting request 210613 from home:AndreasStieger:branches:server:database
update to 3.8.2

OBS-URL: https://build.opensuse.org/request/show/210613
OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=83
2013-12-12 09:41:06 +00:00
Sascha Peilicke
872200894d Accepting request 203757 from home:kpetsch:branches:server:database
Update to Version 3.8.1

OBS-URL: https://build.opensuse.org/request/show/203757
OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=81
2013-10-21 13:01:22 +00:00
Reinhard Max
3e45c51507 Version 3.8.0.2
OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=79
2013-09-23 11:53:53 +00:00
Reinhard Max
57ce3693c9 Fix typo in .changes
OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=78
2013-08-30 19:16:53 +00:00
Reinhard Max
767d7215f2 - New version 3.7.18.
- Full list of changes: http://sqlite.org/releaselog/3_8_0.html
- Highlights:
  * Add support for partial indexes.
  * Cut-over to the next generation query planner for faster and
    better query plans.
  * Added the FTS4 notindexed option, allowing non-indexed columns
    in an FTS4 table.
  * Added the SQLITE_ALLOW_URI_AUTHORITY compile-time option.

OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=77
2013-08-26 22:29:58 +00:00
Reinhard Max
2b5e93f41a - New version 3.7.17.
- Full list of changes: http://sqlite.org/releaselog/3_7_17.html

OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=76
2013-08-26 10:43:29 +00:00
Reinhard Max
c77337250e - The Tcl bindings for SQLite are now part of the Tcl core, so the
sqlite3-tcl subpackage is no longer needed.

OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=74
2013-08-12 22:33:07 +00:00
Reinhard Max
a35e0c1d2a - New Version 3.7.16:
* Added the PRAGMA foreign_key_check command.
  * Added new extended error codes for all SQLITE_CONSTRAINT
    errors
  * Added the SQLITE_READONLY_ROLLBACK extended error code for
    when a database cannot be opened because it needs rollback
    recovery but is read-only.
  * Added SQL functions unicode(A) and char(X1,...,XN).
  * Performance improvements for PRAGMA incremental_vacuum,
    especially in cases where the number of free pages is greater
    than what will fit on a single trunk page of the freelist.
  * Improved optimization of queries containing aggregate min() or
    max().
  * Enhance virtual tables so that they can potentially use an
    index when the WHERE clause contains the IN operator.
  * Allow indices to be used for sorting even if prior terms of
    the index are constrained by IN operators in the WHERE clause.
  * Enhance the PRAGMA table_info command so that the "pk" column
    is an increasing integer to show the order of columns in the
    primary key.
  * Enhance the query optimizer to exploit transitive join
    constraints.
  * Performance improvements in the query optimizer.
  * Allow the error message from PRAGMA integrity_check to be
    longer than 20000 bytes.
  * Improved name resolution for deeply nested queries.
  * Added the test_regexp.c module as a demonstration of how to
    implement the REGEXP operator.
  * Improved error messages in the RTREE extension.
  * Enhance the command-line shell so that a non-zero argument to

OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=72
2013-03-20 12:21:34 +00:00
Reinhard Max
4f3b23547f Delete old tarball
OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=70
2013-01-25 00:36:44 +00:00
Reinhard Max
8f5b0c2cdf 3.7.15.2
OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=69
2013-01-24 14:29:14 +00:00
Reinhard Max
4e2ccf0831 - Bugfix release 3.7.14.1:
* Fix a bug that causes a segfault on a LEFT JOIN that includes
    an OR in the ON clause.

OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=67
2012-10-05 07:18:11 +00:00
Reinhard Max
56f98a2215 Remove sqlite-autoconf-3071300.tar.gz
OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=65
2012-09-04 16:22:20 +00:00
Reinhard Max
7120e1de44 Accepting request 132547 from home:m_meister:branches:server:database
- New version 3.7.14:
  * Ensure that floating point values are preserved exactly when 
    reconstructing a database from the output of the ".dump" 
    command of the command-line shell.
  * Added the sqlite3_close_v2() interface.
  * Updated the command-line shell so that it can be built using 
    SQLITE_OMIT_FLOATING_POINT and SQLITE_OMIT_AUTOINIT.
  * Enhancements to PRAGMA integrity_check and PRAGMA quick_check 
    so that they can optionally check just a single attached 
    database install of all attached databases.
  * Enhancements to WAL mode processing that ensure that at least 
    one valid read-mark is available at all times, so that 
    read-only processes can always read the database.
  * Performance enhancements in the sorter used by ORDER BY and CREATE INDEX.
  * Added the SQLITE_DISABLE_FTS4_DEFERRED compile-time option.
  * Better handling of aggregate queries where the aggregate 
    functions are contained within subqueries.
  * Enhance the query planner so that it will try to use a 
    covering index on queries that make use of or optimization.

OBS-URL: https://build.opensuse.org/request/show/132547
OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=64
2012-09-04 14:56:41 +00:00
Reinhard Max
4d29cc483e Version 3.7.13
OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=63
2012-09-04 14:33:10 +00:00
Reinhard Max
b1cc735444 Version 3.7.12.1
OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=61
2012-05-24 13:35:05 +00:00
Ismail Dönmez
0f94db24e1 - Add upstream commit 79a4a3a84f to fix subversion failures
OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=59
2012-05-14 10:08:43 +00:00
Reinhard Max
94d96ca784 - Spec file cleanup
- Drop support for the pre 11.0 packaging scheme.
- New version 3.7.11.

OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=57
2012-05-04 11:08:27 +00:00
Reinhard Max
fcca758804 Accepting request 115763 from home:behrisch
fixing tcl_archdir for non-SuSE

OBS-URL: https://build.opensuse.org/request/show/115763
OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=55
2012-04-27 11:21:10 +00:00
OBS User buildservice-autocommit
bebe2d1c02 Updating link to change in openSUSE:Factory/sqlite3 revision 40.0
OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=28cbef1c3e6b70ba5536ac91c76ee9ea
2011-12-06 18:05:34 +00:00
Reinhard Max
3ec867c4e4 hardcode %tarversion
OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=52
2011-10-27 14:16:23 +00:00
Stephan Kulow
b44b120b0a trigger service run
OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=51
2011-10-15 05:22:34 +00:00
Stephan Kulow
ca3d4348f3 Accepting request 78036 from home:namtrac:bugfix
- New Version: 3.7.7.1:
  * Fix a bug causing PRAGMA case_sensitive_like statements compiled
    using sqlite3_prepare() to fail with an SQLITE_SCHEMA error.

OBS-URL: https://build.opensuse.org/request/show/78036
OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=46
2011-09-09 15:06:03 +00:00
Reinhard Max
6a29760cd3 Enable URI file names
OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=44
2011-06-24 12:46:09 +00:00
Reinhard Max
1415cbdfd9 Version 3.7.7
OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=43
2011-06-24 12:40:13 +00:00
Reinhard Max
eeeff5c9e1 Version 3.6.7.3 and fix for bnc#383370
OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=41
2011-05-20 08:41:07 +00:00
Reinhard Max
7f6b83f2c3 Version 3.7.6.1
OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=39
2011-04-13 16:11:00 +00:00
Reinhard Max
a6e2b1cae7 Version 3.7.5; Split off the Tcl bindings
OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=37
2011-02-03 14:57:53 +00:00
OBS User buildservice-autocommit
920ea3af16 Updating link to change in openSUSE:Factory/sqlite3 revision 31.0
OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=f8353caa4525cce832df71aeadd5c0dc
2011-01-24 15:01:30 +00:00
Reinhard Max
bdb8e41a5e Version 3.7.4
OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=35
2011-01-17 08:09:26 +00:00
Reinhard Max
6ad6b199b7 Version 3.7.3
OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=34
2010-11-17 17:10:04 +00:00
OBS User buildservice-autocommit
4287b6b06b Updating link to change in openSUSE:Factory/sqlite3 revision 29.0
OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=9a4873991658544a5f47a2daa72f9b9d
2010-08-27 14:48:42 +00:00
OBS User autobuild
3838b7dc56 Accepting request 46404 from server:database
checked in (request 46404)

OBS-URL: https://build.opensuse.org/request/show/46404
OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=33
2010-08-27 14:48:41 +00:00
Reinhard Max
96cd04c971 Version 3.7.2
OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=32
2010-08-27 11:02:22 +00:00
Reinhard Max
39c59ba488 Version 3.7.0.1
OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=31
2010-08-05 10:36:49 +00:00
OBS User buildservice-autocommit
5936007c97 Updating link to change in openSUSE:Factory/sqlite3 revision 28.0
OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=2029b0ecaecdc5c00f7512c3d27e8112
2010-08-03 13:20:36 +00:00
OBS User autobuild
d8f8d9a4ee Accepting request 44298 from server:database
checked in (request 44298)

OBS-URL: https://build.opensuse.org/request/show/44298
OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=30
2010-08-03 13:20:33 +00:00
Reinhard Max
9041109bb8 Version 3.7.0
OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=29
2010-07-30 16:20:54 +00:00
Reinhard Max
d8f87a9c66 Update sqlite-tcl as well
OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=28
2010-07-05 14:19:53 +00:00
Reinhard Max
af481b1bfc Version 3.6.23.1
OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=27
2010-07-05 07:35:00 +00:00
Reinhard Max
522c3708b8 revert last change
OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=26
2010-07-02 15:45:23 +00:00
Reinhard Max
ccf53355b6 Accepting request 42389 from home:jengelh:smp
Copy from home:jengelh:smp/sqlite3 via accept of submit request 42389 revision 2.
Request was accepted with message:
reviewed ok.

OBS-URL: https://build.opensuse.org/request/show/42389
OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=25
2010-07-02 07:33:25 +00:00
OBS User buildservice-autocommit
8202d1975e Updating link to change in openSUSE:Factory/sqlite3 revision 25.0
OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=09c2779e984ee46192720cdcd4a462f5
2010-05-03 19:09:06 +00:00
OBS User autobuild
4f0d386041 Accepting request 39213 from server:database
checked in (request 39213)

OBS-URL: https://build.opensuse.org/request/show/39213
OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=24
2010-05-03 19:09:04 +00:00
Stephan Kulow
bb6b961014 Accepting request 38721 from home:coolo:branches:openSUSE:Factory
Copy from home:coolo:branches:openSUSE:Factory/sqlite3 via accept of submit request 38721 revision 2.
Request was accepted with message:
Reviewed ok

OBS-URL: https://build.opensuse.org/request/show/38721
OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=23
2010-04-24 12:06:48 +00:00
OBS User autobuild
f28520e909 Accepting request 34533 from server:database
checked in (request 34533)

OBS-URL: https://build.opensuse.org/request/show/34533
OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=22
2010-03-12 16:37:05 +00:00