From 2b5e93f41a06e11f47d909050408200147cef99d362498b0c86328fd803dd63e Mon Sep 17 00:00:00 2001 From: Reinhard Max Date: Mon, 26 Aug 2013 10:43:29 +0000 Subject: [PATCH 1/4] - 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 --- sqlite3.changes | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/sqlite3.changes b/sqlite3.changes index 1746437..52468be 100644 --- a/sqlite3.changes +++ b/sqlite3.changes @@ -1,3 +1,34 @@ +------------------------------------------------------------------- +Mon Aug 26 10:33:58 UTC 2013 - max@suse.com + +- New version 3.7.17. +- Full list of changes: http://sqlite.org/releaselog/3_7_17.html +- Highlights: + * Add support for memory-mapped I/O. + * Assigned the integer at offset 68 in the database header as + the Application ID for when SQLite is used as an application + file-format. Added the PRAGMA application_id command to query + and set the Application ID. + * Enhance the extension loading mechanism to be more flexible + (while still maintaining backwards compatibility) in two ways: + 1. If the default entry point "sqlite3_extension_init" is not + present in the loadable extension, also try an entry point + "sqlite3_X_init" where "X" is based on the shared library + filename. This allows every extension to have a different + entry point, which allows them to be statically linked with + no code changes. + 2. The shared library filename passed to + sqlite3_load_extension() may omit the filename suffix, and + an appropriate architecture-dependent suffix (".so", + ".dylib", or ".dll") will be added automatically. + * Added many new loadable extensions to the source tree, + including amatch, closure, fuzzer, ieee754, nextchar, regexp, + spellfix, and wholenumber. + * Bug fix: Fix a potential database corruption bug in shared + cache mode when one database connection is closed while + another is in the middle of a write transaction. Ticket + e636a050b7 + ------------------------------------------------------------------- Mon Aug 12 22:31:19 UTC 2013 - max@suse.com From 767d7215f27ba42c3c62474e3221cdbca0419d144517af260402660206ed131e Mon Sep 17 00:00:00 2001 From: Reinhard Max Date: Mon, 26 Aug 2013 22:29:58 +0000 Subject: [PATCH 2/4] - 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 --- sqlite-autoconf-3071700.tar.gz | 3 --- sqlite-autoconf-3080000.tar.gz | 3 +++ sqlite3.changes | 13 +++++++++++++ sqlite3.spec | 4 ++-- 4 files changed, 18 insertions(+), 5 deletions(-) delete mode 100644 sqlite-autoconf-3071700.tar.gz create mode 100644 sqlite-autoconf-3080000.tar.gz diff --git a/sqlite-autoconf-3071700.tar.gz b/sqlite-autoconf-3071700.tar.gz deleted file mode 100644 index 00470ff..0000000 --- a/sqlite-autoconf-3071700.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8ff46d0baa9e64c0815544e829e985f1161c096aa6344c8f430791dbeadc2baf -size 1876108 diff --git a/sqlite-autoconf-3080000.tar.gz b/sqlite-autoconf-3080000.tar.gz new file mode 100644 index 0000000..4bb3dd1 --- /dev/null +++ b/sqlite-autoconf-3080000.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1db30fd2b71719b9463f48a779fac12adbfc5a78d0ae55bd5c9d2f7d3ecec46d +size 1878640 diff --git a/sqlite3.changes b/sqlite3.changes index 52468be..f3855a7 100644 --- a/sqlite3.changes +++ b/sqlite3.changes @@ -1,3 +1,16 @@ +------------------------------------------------------------------- +Mon Aug 26 22:20:29 UTC 2013 - max@suse.com + +- 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. + ------------------------------------------------------------------- Mon Aug 26 10:33:58 UTC 2013 - max@suse.com diff --git a/sqlite3.spec b/sqlite3.spec index 71998cd..597c1a3 100644 --- a/sqlite3.spec +++ b/sqlite3.spec @@ -17,9 +17,9 @@ Name: sqlite3 -Version: 3.7.17 +Version: 3.8.0 Release: 0 -%define tarversion 3071700 +%define tarversion 3080000 Summary: Embeddable SQL Database Engine License: SUSE-Public-Domain Group: Productivity/Databases/Servers From 57ce3693c974e891899a4d272d9fc14a0353bb6f0abfe5e08da2905c64d287fd Mon Sep 17 00:00:00 2001 From: Reinhard Max Date: Fri, 30 Aug 2013 19:16:53 +0000 Subject: [PATCH 3/4] Fix typo in .changes OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=78 --- sqlite3.changes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqlite3.changes b/sqlite3.changes index f3855a7..1c00039 100644 --- a/sqlite3.changes +++ b/sqlite3.changes @@ -1,7 +1,7 @@ ------------------------------------------------------------------- Mon Aug 26 22:20:29 UTC 2013 - max@suse.com -- New version 3.7.18. +- New version 3.8.0. - Full list of changes: http://sqlite.org/releaselog/3_8_0.html - Highlights: * Add support for partial indexes. From 3e45c51507c93c53d85fd1e10a8f9d6cf240057657fd12df4d15194f024fd34e Mon Sep 17 00:00:00 2001 From: Reinhard Max Date: Mon, 23 Sep 2013 11:53:53 +0000 Subject: [PATCH 4/4] Version 3.8.0.2 OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=79 --- sqlite-autoconf-3080000.tar.gz | 3 --- sqlite-autoconf-3080002.tar.gz | 3 +++ sqlite3.changes | 6 +++--- sqlite3.spec | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) delete mode 100644 sqlite-autoconf-3080000.tar.gz create mode 100644 sqlite-autoconf-3080002.tar.gz diff --git a/sqlite-autoconf-3080000.tar.gz b/sqlite-autoconf-3080000.tar.gz deleted file mode 100644 index 4bb3dd1..0000000 --- a/sqlite-autoconf-3080000.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1db30fd2b71719b9463f48a779fac12adbfc5a78d0ae55bd5c9d2f7d3ecec46d -size 1878640 diff --git a/sqlite-autoconf-3080002.tar.gz b/sqlite-autoconf-3080002.tar.gz new file mode 100644 index 0000000..cf8af56 --- /dev/null +++ b/sqlite-autoconf-3080002.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fca3a0a12f94dc92a6d9e700c3f6cab6cd4e79214bd7b6f13717a10f4bcfddb2 +size 1878765 diff --git a/sqlite3.changes b/sqlite3.changes index 1c00039..f5085aa 100644 --- a/sqlite3.changes +++ b/sqlite3.changes @@ -1,8 +1,8 @@ ------------------------------------------------------------------- -Mon Aug 26 22:20:29 UTC 2013 - max@suse.com +Mon Sep 23 11:49:21 UTC 2013 - max@suse.com -- New version 3.8.0. -- Full list of changes: http://sqlite.org/releaselog/3_8_0.html +- New version 3.8.0.2: +- Full list of changes: http://sqlite.org/releaselog/3_8_0_2.html - Highlights: * Add support for partial indexes. * Cut-over to the next generation query planner for faster and diff --git a/sqlite3.spec b/sqlite3.spec index 597c1a3..a008c45 100644 --- a/sqlite3.spec +++ b/sqlite3.spec @@ -17,9 +17,9 @@ Name: sqlite3 -Version: 3.8.0 +Version: 3.8.0.2 Release: 0 -%define tarversion 3080000 +%define tarversion 3080002 Summary: Embeddable SQL Database Engine License: SUSE-Public-Domain Group: Productivity/Databases/Servers