mirror of
https://github.com/DBD-SQLite/DBD-SQLite
synced 2025-06-07 06:08:38 -04:00
releng 1.49_05
This commit is contained in:
parent
0d52eae83d
commit
c58791f768
5 changed files with 24 additions and 3 deletions
18
Changes
18
Changes
|
@ -1,5 +1,23 @@
|
|||
Changes for Perl extension DBD-SQLite
|
||||
|
||||
1.49_05 2016-01-11
|
||||
*** CHANGES THAT MAY POSSIBLY BREAK YOUR OLD APPLICATIONS ***
|
||||
- Updated to SQLite 3.10.0.
|
||||
Because of the addition of LIKE/GLOB/REGEXP support on
|
||||
virtual tables, previous ::PerlData virtual table got broken.
|
||||
This is hopefully fixed by adding strlike/strglob functions
|
||||
to DBD::SQLite but if you use this virtual table, please
|
||||
test it carefully.
|
||||
- Now you can make a database connection read-only if you
|
||||
turn on the ReadOnly attribute when you connect. (RT #110439)
|
||||
If you set it after you connect to a database, DBD::SQLite
|
||||
warns because the database doesn't actually become read-only.
|
||||
|
||||
- Improved ::Constants
|
||||
- to load DBD::SQLite by itself
|
||||
- to expose SQLITE_VERSION_NUMBER
|
||||
- introduced a few new (shorter) tags
|
||||
|
||||
1.49_04 2015-11-24
|
||||
- Updated ::Constants
|
||||
- Fixed a sqlite version number in a test (GH-14; NANIS++)
|
||||
|
|
3
MANIFEST
3
MANIFEST
|
@ -81,9 +81,12 @@ t/56_open_flags.t
|
|||
t/57_uri_filename.t
|
||||
t/58_see_if_its_a_number_and_explicit_binding.t
|
||||
t/59_extended_result_codes.t
|
||||
t/60_readonly.t
|
||||
t/61_strlike.t
|
||||
t/cookbook_variance.t
|
||||
t/lib/Test.pm
|
||||
t/rt_106151_outermost_savepoint.t
|
||||
t/rt_106950_extra_warnings_with_savepoints.t
|
||||
t/rt_15186_prepcached.t
|
||||
t/rt_21406_auto_finish.t
|
||||
t/rt_25371_asymmetric_unicode.t
|
||||
|
|
|
@ -5,7 +5,7 @@ use strict;
|
|||
use DBI 1.57 ();
|
||||
use DynaLoader ();
|
||||
|
||||
our $VERSION = '1.49_04';
|
||||
our $VERSION = '1.49_05';
|
||||
our @ISA = 'DynaLoader';
|
||||
|
||||
# sqlite_version cache (set in the XS bootstrap)
|
||||
|
|
|
@ -5,7 +5,7 @@ use strict;
|
|||
use warnings;
|
||||
use Scalar::Util qw/weaken/;
|
||||
|
||||
our $VERSION = '1.49_04';
|
||||
our $VERSION = '1.49_05';
|
||||
our @ISA;
|
||||
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ use Exporter ();
|
|||
use File::Spec ();
|
||||
use Test::More ();
|
||||
|
||||
our $VERSION = '1.49_04';
|
||||
our $VERSION = '1.49_05';
|
||||
our @ISA = 'Exporter';
|
||||
our @EXPORT = qw/connect_ok dies dbfile @CALL_FUNCS $sqlite_call has_sqlite requires_sqlite/;
|
||||
our @CALL_FUNCS;
|
||||
|
|
Loading…
Add table
Reference in a new issue