forked from pool/perl-DBD-SQLite
- update to 1.37
- Updated to SQLite 3.7.12.1 (ISHIGAKI)
- Tweaked Makefile.PL to behave better during the Bsymbolic
check (HMBRAND)
- Added SQLITE_WITHOUT_ZONEMALLOC for older MacOS X (ISHIGAKI)
- Fix >32bit integer truncation and other sqlite_set_result
condition issue (Yuriy Kaminskiy)
- Fix integer overflow in passing argument to perl function
- Convert unsigned -> int64 when possible (Yuriy Kaminskiy)
- Turned datatype mismatch error (introduced in 1.34_02) into
a warning (you can disable this warning by setting PrintWarn
attribute to false). (ISHIGAKI)
- Refactored sqlite_is_number to fix various corner cases
- Downgraded SQLite to 3.7.9, as 3.7.10 turned out to be
broken on the latest MacOS X (due to a missing symbol),
and broke other modules that typically use temporary tables
under a few environments too. As of this writing, would-be
3.7.11 seems fine, but it would take another month to be
released. (ISHIGAKI)
*** CHANGES THAT MAY POSSIBLY BREAK YOUR OLD APPLICATIONS ***
Note that this release changed the default schema format
number, that means newly created database files will be
unreadable by SQLite version prior to 3.3.0 (2006-01-10)
(or DBD::SQLite prior to 1.12) unless you explicitly issue
"PRAGMA legacy_file_format=ON".
- Enabled SQLITE_ENABLE_FTS4
- Enabled SQLITE_ENABLE_STAT3
- Resolved #73159: FTS tokenizer segfault (ISHIGAKI)
- Resolved #73787: sqlite_see_if_its_a_number causes a buffer
overflow (ISHIGAKI)
OBS-URL: https://build.opensuse.org/request/show/141389
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-DBD-SQLite?expand=0&rev=34
325 lines
12 KiB
Plaintext
325 lines
12 KiB
Plaintext
-------------------------------------------------------------------
|
|
Thu Nov 15 09:59:00 UTC 2012 - vcizek@suse.com
|
|
|
|
- update to 1.37
|
|
- Updated to SQLite 3.7.12.1 (ISHIGAKI)
|
|
- Tweaked Makefile.PL to behave better during the Bsymbolic
|
|
check (HMBRAND)
|
|
- Added SQLITE_WITHOUT_ZONEMALLOC for older MacOS X (ISHIGAKI)
|
|
- Fix >32bit integer truncation and other sqlite_set_result
|
|
condition issue (Yuriy Kaminskiy)
|
|
- Fix integer overflow in passing argument to perl function
|
|
- Convert unsigned -> int64 when possible (Yuriy Kaminskiy)
|
|
- Turned datatype mismatch error (introduced in 1.34_02) into
|
|
a warning (you can disable this warning by setting PrintWarn
|
|
attribute to false). (ISHIGAKI)
|
|
- Refactored sqlite_is_number to fix various corner cases
|
|
- Downgraded SQLite to 3.7.9, as 3.7.10 turned out to be
|
|
broken on the latest MacOS X (due to a missing symbol),
|
|
and broke other modules that typically use temporary tables
|
|
under a few environments too. As of this writing, would-be
|
|
3.7.11 seems fine, but it would take another month to be
|
|
released. (ISHIGAKI)
|
|
*** CHANGES THAT MAY POSSIBLY BREAK YOUR OLD APPLICATIONS ***
|
|
Note that this release changed the default schema format
|
|
number, that means newly created database files will be
|
|
unreadable by SQLite version prior to 3.3.0 (2006-01-10)
|
|
(or DBD::SQLite prior to 1.12) unless you explicitly issue
|
|
"PRAGMA legacy_file_format=ON".
|
|
- Enabled SQLITE_ENABLE_FTS4
|
|
- Enabled SQLITE_ENABLE_STAT3
|
|
- Resolved #73159: FTS tokenizer segfault (ISHIGAKI)
|
|
- Resolved #73787: sqlite_see_if_its_a_number causes a buffer
|
|
overflow (ISHIGAKI)
|
|
- Resolved #73314 for DBD-SQLite: binding of 64bit integers fail
|
|
on 1.34_02 (ISHIGAKI)
|
|
- Implemented sqlite_trace and sqlite_profile methods for simpler
|
|
tracing/profiling; use DBI_TRACE/DBI_PROFILE for more
|
|
complicated cases (ISHIGAKI)
|
|
|
|
-------------------------------------------------------------------
|
|
Tue Feb 14 01:29:30 UTC 2012 - jengelh@medozas.de
|
|
|
|
- Add Group: field to subpackages to allow them to build on
|
|
distributions with older rpm
|
|
|
|
-------------------------------------------------------------------
|
|
Wed Dec 14 11:09:02 UTC 2011 - coolo@suse.com
|
|
|
|
- fix license to be in spdx.org format
|
|
|
|
-------------------------------------------------------------------
|
|
Tue Nov 29 05:43:35 UTC 2011 - pascal.bleser@opensuse.org
|
|
|
|
- update to 1.35:
|
|
* updated to SQLite 3.7.9
|
|
* one small potential break case if you are using FTS4 and ^
|
|
|
|
- cumulated changes from 1.34*:
|
|
* adding an explicit dynamic_config => 1
|
|
* bind_param SQL_INTEGER error now actually dies with RaiseError
|
|
* CHANGES THAT MAY POSSIBLY BREAK YOUR OLD APPLICATIONS:
|
|
- resolved RT#67581: bind_param SQL_INTEGER numifies value;
|
|
now DBD::SQLite croaks if you explicitly specify datatype
|
|
(with bind_param) and datatype mismatch happens
|
|
- datatype set in the bind_param(_array) becomes sticky now
|
|
(as per DBI spec); this potentially affects code depending on
|
|
current undocumented and broken behavior
|
|
* resolved RT#71311: binding output columns as SQL_BLOB returns nothing
|
|
* fixed binding named parameters
|
|
* moved check for bind_ph/is_inout so it always error-out
|
|
* don't set imp_sth->stmt to NULL on error path
|
|
* explained an issue of rollback with unfinished statements
|
|
* made util/getsqlite.pl work properly for SQLite 3.7.5+
|
|
* Cookbook: don't use globals
|
|
* resolved RT#70135 and hopefully other mod_perl/CentOS issues like RT#63873
|
|
and RT#47983
|
|
|
|
-------------------------------------------------------------------
|
|
Wed Aug 10 22:09:58 UTC 2011 - Greg.Freemyer@gmail.com
|
|
|
|
- Update to 1.33
|
|
- Updated to SQLite 3.7.6.3 (ISHIGAKI)
|
|
- Made util/getsqlite.pl state that it needs fixing to work for
|
|
SQLite 3.7.5+ when it dies at the last step, and outline what the
|
|
user needs to do manually instead, until getsqlite is fixed (DUNCAND)
|
|
- Resolved #67843 for DBD-SQLite: savepoint rollback alters AC
|
|
state (ISHIGAKI)
|
|
- Resolved #65267 for DBD-SQLite: Add RTree support option;
|
|
skip fts3/metadata tests if those features are disabled
|
|
(ISHIGAKI)
|
|
- Resolved #65267: Add RTree support option (CJFIELDS)
|
|
- Added sqlite_see_if_its_a_number database handle attribute
|
|
to deal with issues caused by (quoted) bind values against
|
|
numbers such as return values from a function etc. (ISHIGAKI)
|
|
- Made util/getsqlite.pl work with the amalg distro filename changes
|
|
introd by SQLite 3.7.4, and still with older ones also (DUNCAND)
|
|
- Updated to SQLite 3.7.4 (DUNCAND)
|
|
- Resolved #61355: Fails testing in parallel (ISHIGAKI)
|
|
- Resolved #61361: Problems building 1.31 with system SQLite (ISHIGAKI)
|
|
- Resolved #61117: Supporting database as an alias for dbname in
|
|
DSN (ISHIGAKI)
|
|
- Resolved #62370: Segfaults during operations on disconnected
|
|
handles (ISHIGAKI)
|
|
- Resolved #61958: REGEXP should return NULL when one of its
|
|
arguments is NULL (ISHIGAKI)
|
|
- Removed PrintWarn tweak introduced in 1.19_09 (Tim Bunce's
|
|
advice) (ISHIGAKI)
|
|
|
|
-------------------------------------------------------------------
|
|
Wed Dec 1 13:31:53 UTC 2010 - coolo@novell.com
|
|
|
|
- switch to perl_requires macro
|
|
|
|
-------------------------------------------------------------------
|
|
Wed Sep 15 15:24:49 UTC 2010 - chris@computersalat.de
|
|
|
|
- fix FIXME: need a way of adding our RPM_OPT_FLAGS to CFLAGS without
|
|
overwriting its existing contents:
|
|
o perl Makefile.PL CCFLAGS="$RPM_OPT_FLAGS"
|
|
=>
|
|
{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="$RPM_OPT_FLAGS"
|
|
- fix devel deps
|
|
o Req: perl = {perl_version}
|
|
|
|
-------------------------------------------------------------------
|
|
Wed Sep 15 11:08:43 UTC 2010 - jw@novell.com
|
|
|
|
- Update to 1.31
|
|
- Updated to SQLite 3.7.2 (DUNCAND)
|
|
- Resolved # 60860: Slow but steady memory leak on
|
|
last_insert_id calls (ISHIGAKI)
|
|
- Upgraded ppport.h to the latest version (ADAMK)
|
|
- Resolved #60698: "Test failures with SQLite 3.7", using included
|
|
patch by Niko Tyni (ntyni@debian.org) of t/lib/Test.pm (DUNCAND)
|
|
- Added support for FTS3 tokenizers written in Perl. Added tests
|
|
...
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
Tue Mar 30 19:25:42 UTC 2010 - jw@novell.com
|
|
|
|
- Update to 1.30_02
|
|
+ Updated to SQLite 3.6.23
|
|
+ Added preamble to copy sqlite3.[hc] files into a share
|
|
directory (where you can access via File::ShareDir) to allow
|
|
extension authors to use the same C source/header as they
|
|
used to build DBD::SQLite itself. (ISHIGAKI)
|
|
+ numerous bugfixes and enhancements.
|
|
May break old applications.
|
|
- added -devel package to contain the added sqlite3.[hc]
|
|
|
|
-------------------------------------------------------------------
|
|
Sun Jan 10 15:43:32 CET 2010 - jengelh@medozas.de
|
|
|
|
- enable parallel build
|
|
|
|
-------------------------------------------------------------------
|
|
Fri Jan 8 17:08:14 UTC 2010 - jw@novell.com
|
|
|
|
- Update to 1.29:
|
|
+ Updated to SQLite 3.6.22
|
|
+ Removed the SQLITE_CORE and SQLITE_PRT_SZ flags
|
|
+ several bugfixes
|
|
|
|
-------------------------------------------------------------------
|
|
Tue Nov 24 10:05:42 UTC 2009 - jw@novell.com
|
|
|
|
- 1.26_07 was released as 1.27
|
|
No changes.
|
|
|
|
-------------------------------------------------------------------
|
|
Mon Nov 16 15:09:07 UTC 2009 - jw@novell.com
|
|
|
|
- update to latest devel version 1.26_07
|
|
+ Updated to SQLite 3.6.20
|
|
+ Foreign keys support is once again disabled by default.
|
|
use "PRAGMA foreign_keys = ON".
|
|
|
|
-------------------------------------------------------------------
|
|
Thu Oct 29 18:47:24 CET 2009 - jw@suse.de
|
|
|
|
- update to latest devel version 1.26_06
|
|
+ Major code refactoring.
|
|
+ Now DBD::SQLite supports foreign key constraints.
|
|
|
|
-------------------------------------------------------------------
|
|
Sun Oct 18 22:25:05 CEST 2009 - jw@novell.com
|
|
|
|
- update to latest devel version 1.26_05
|
|
- SQLite 3.6.19 (ISHIGAKI)
|
|
- using a simpler cpan_name macro to avoid parse warnings during build.
|
|
|
|
-------------------------------------------------------------------
|
|
Tue Oct 13 14:42:58 UTC 2009 - chris@computersalat.de
|
|
|
|
- update to latest devel version 1.26_04
|
|
- move changes from spec to .changes file
|
|
|
|
-------------------------------------------------------------------
|
|
Wed Aug 19 20:45:36 CEST 2009 - jw@suse.de
|
|
|
|
- update to latest devel version 1.26_03
|
|
|
|
-------------------------------------------------------------------
|
|
Sat Jul 25 19:36:58 CEST 2009 - chris@computersalat.de
|
|
|
|
- spec mods
|
|
* removed ^----------
|
|
* removed ^#---------
|
|
|
|
-------------------------------------------------------------------
|
|
Fri Jul 24 14:02:37 CEST 2009 - coolo@novell.com
|
|
|
|
- merge factory changes in
|
|
|
|
-------------------------------------------------------------------
|
|
Fri Jun 19 01:09:45 CEST 2009 - chris@computersalat.de
|
|
|
|
- spec fix for perl-macros
|
|
|
|
-------------------------------------------------------------------
|
|
Thu Jun 18 15:43:02 CEST 2009 - chris@computersalat.de
|
|
|
|
- added perl-macros
|
|
o autogen filelist with perl_gen_filelist
|
|
|
|
-------------------------------------------------------------------
|
|
Sun Jun 14 20:02:14 CEST 2009 - chris@computersalat.de
|
|
|
|
- update to 1.25
|
|
- 1.25
|
|
o Amalgamation conversion turned out to be quicker than expected.
|
|
o Changing to a production release. (ADAMK)
|
|
|
|
- 1.24_02
|
|
o Merging various externally-contributed annotations from
|
|
annocpan.org (ADAMK)
|
|
o Created the beginnings of a DBD::SQLite::Cookbook (ADAMK)
|
|
|
|
- 1.24_01
|
|
o Moved getsqlite.pl into util (ADAMK)
|
|
o Switching to the RT queue instead of the RT report page that
|
|
does nothing and just refers you to email (ADAMK)
|
|
o Now DBD::SQLite also uses amalgamated source recommended at sqlite.org (ISHIGAKI)
|
|
o Resolved #45166: better unicode path handling under cygwin (ISHIGAKI)
|
|
o Resolved #45171: test failure on CentOS 4.6 (ISHIGAKI)
|
|
|
|
-------------------------------------------------------------------
|
|
Mon Apr 20 01:03:05 CEST 2009 - jw@suse.de
|
|
|
|
- updated to stable release 1.23
|
|
|
|
-------------------------------------------------------------------
|
|
Wed Apr 15 18:22:54 CEST 2009 - jw@suse.de
|
|
|
|
- updated to pristine 1.22_06
|
|
*All* patches are upstreamed now. Yeah!
|
|
Using SQLite 3.6.13 now.
|
|
|
|
-------------------------------------------------------------------
|
|
Wed Jan 14 23:00:41 CET 2009 - jw@suse.de
|
|
|
|
- bnc#466021 fixed.
|
|
|
|
-------------------------------------------------------------------
|
|
Thu Feb 7 13:35:24 CET 2008 - schwab@suse.de
|
|
|
|
- Don't call sqlite3_finalize twice.
|
|
|
|
-------------------------------------------------------------------
|
|
Sun Jan 13 21:09:52 CET 2008 - coolo@suse.de
|
|
|
|
- update to 1.14
|
|
- disable test suite for now
|
|
|
|
-------------------------------------------------------------------
|
|
Fri Sep 8 17:43:00 CEST 2006 - jw@suse.de
|
|
|
|
- painless update to 1.13
|
|
|
|
-------------------------------------------------------------------
|
|
Mon May 29 20:42:34 CEST 2006 - jw@suse.de
|
|
|
|
- update to 1.12, to make it compile again.
|
|
Using SQLite 3.3.5 and Perl 5.8.8
|
|
|
|
-------------------------------------------------------------------
|
|
Mon Mar 13 22:30:36 CET 2006 - jw@suse.de
|
|
|
|
- fixed bugzilla#156965, unintialized variable.
|
|
|
|
-------------------------------------------------------------------
|
|
Wed Jan 25 21:39:36 CET 2006 - mls@suse.de
|
|
|
|
- converted neededforbuild to BuildRequires
|
|
|
|
-------------------------------------------------------------------
|
|
Sun Dec 4 15:24:01 CET 2005 - jw@suse.de
|
|
|
|
- update to 1.11, feature++
|
|
|
|
-------------------------------------------------------------------
|
|
Fri Dec 2 11:22:55 CET 2005 - jw@suse.de
|
|
|
|
- update to 1.10
|
|
be more forgiving to sqlite3.h, it is buggy again.
|
|
|
|
-------------------------------------------------------------------
|
|
Tue Oct 4 15:46:38 CEST 2005 - dmueller@suse.de
|
|
|
|
- add norootforbuild
|
|
|
|
-------------------------------------------------------------------
|
|
Thu Jun 30 11:33:55 CEST 2005 - schwab@suse.de
|
|
|
|
- Fix neededforbuild.
|
|
|
|
-------------------------------------------------------------------
|
|
Wed Jun 29 18:17:27 CEST 2005 - jw@suse.de
|
|
|
|
- initial version 1.09
|
|
Since 1.09 it can link against a system provided sqlite library,
|
|
but uses its own copy due to a buggy sqlite3.h
|
|
|