File: NEWS

package info (click to toggle)
libdbd-sqlite3-perl 1.44-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 6,756 kB
  • ctags: 10,154
  • sloc: ansic: 94,394; perl: 7,064; makefile: 6
file content (79 lines) | stat: -rw-r--r-- 3,174 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
libdbd-sqlite3-perl (1.44-1) unstable; urgency=medium

  From upstream changes:

    *** CHANGES THAT MAY POSSIBLY BREAK YOUR OLD APPLICATIONS ***
    - Resolved #96877: sql statements should be converted to utf8 (DAMI)
      If you set sqlite_unicode to true, SQL statements will be upgraded
      to avoid inconsistency between embedded params and bind params.

 -- gregor herrmann <gregoa@debian.org>  Wed, 22 Oct 2014 17:54:34 +0200

libdbd-sqlite3-perl (1.40-1) unstable; urgency=low

  From upstream changes:

    *** CHANGES THAT MAY POSSIBLY BREAK YOUR OLD APPLICATIONS ***
    - Resolved #56444: immediate transaction should be on by
      default, and the doc be updated.
      If you really need the deferred transaction (which had long
      been the default), set sqlite_use_immediate_transaction
      to false explicitly. (ISHIGAKI)

 -- Salvatore Bonaccorso <carnil@debian.org>  Sun, 11 Aug 2013 09:21:30 +0200

libdbd-sqlite3-perl (1.37-1) unstable; urgency=low

  From upstream changes:

    *** CHANGES THAT MAY POSSIBLY BREAK YOUR OLD APPLICATIONS ***
    - Updated to SQLite 3.7.10 (ISHIGAKI)
      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".

 -- Salvatore Bonaccorso <carnil@debian.org>  Sun, 10 Jun 2012 08:32:09 +0200

libdbd-sqlite3-perl (1.35-1) unstable; urgency=low

  From upstream changes:  

    *** CHANGES THAT MAY POSSIBLY BREAK YOUR OLD APPLICATIONS ***
    - Resolved #67581: bind_param SQL_INTEGER numifies value;
      Now DBD::SQLite croaks if you explicitly specify datatype
      (with bind_param) and datatype mismatch happens (ISHIGAKI)
    - 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. (Yuriy Kaminskiy)

 -- gregor herrmann <gregoa@debian.org>  Fri, 02 Dec 2011 17:18:12 +0100

libdbd-sqlite3-perl (1.31-1) unstable; urgency=low

  The following changes may break older applications:

  * Fix corruption of BLOB data stored in utf8 columns; this data
    is now stored as bytes even if the flag is set (RT#54721)

 -- Jonathan Yu <jawnsy@cpan.org>  Sun, 26 Dec 2010 17:20:38 -0500

libdbd-sqlite3-perl (1.27-1) unstable; urgency=low

  The following changes may break older applications:

  * Development releases (never uploaded to Debian) saw some changes
    with foreign key support. Foreign key support was enabled by
    default but broke a lot of things, so is now disabled once again.
    Please note that support may be enabled upstream in sqlite itself
    so things that break should be fixed.

    In the meantime, you can enable foreign keys with:
      PRAGMA foreign_keys = ON
  * Remove undocumented reset method (use $sth->finish instead)
  * Fix $dbh->column_info to work according to the DBI spec (RT#49716)
  * Fix $sth->primary_key_info to work according to DBI spec

 -- Jonathan Yu <jawnsy@cpan.org>  Tue, 24 Nov 2009 07:22:06 -0500