This is an automated email from the git hooks/post-receive script.

carnil pushed a change to branch master
in repository libdbd-sqlite3-perl.

      from  02a9c89   Prepare changelog for release
      adds  491d5e6   skip virtual_table tests if $FindBin::Bin points to a 
nonexistent path for some reason
      adds  af1fed5   trim CRLF more eagerly (esp. for Cygwin)
      adds  cbfb5a6   updated getsqlite.pl to support 3.8.8
      adds  b1ad477   updated SQLite to 3.8.8
      adds  a3d4b3a   updated Changes
      adds  2e31061   updated SQLite to 3.8.8.1
      adds  76d1702   updated Changes
      adds  f537ab8   updated SQLite to 3.8.8.2
      adds  8e0af25   updated Changes
      adds  6ebf627   improved .gitignore to ignore downloaded SQLite tarballs 
and their extracted directories
      adds  eb10c7c   tweaked code and tests for older SQLite libraries (re: RT 
101573)
      adds  69d9a31   not to store imp_dbh globally, which should fix RT-86006 
under Win32 (ie. ithreads-enabled environments)
      adds  6e96dd1   added -DSQLITE_ENABLE_API_ARMOR for developers
      adds  fa41610   ignore .old files
      adds  5ddbdd1   replaced LWP::Simple with HTTP::Tiny
      adds  7a234eb   implemented a "do" shortcut for a special case (no attr, 
no bind params) (RT-35449)
      adds  75c4611   (tentatively) set THREADSAFE=0 under Cygwin (#7)
      adds  15778b9   commented OPTIMIZE out of WriteMakefile (RT-94207; 
experimental)
      adds  168096d   releng 1.47_01
      adds  78f6548   added repository/ML info to SUPPORT section
      adds  cdad8c0   sqlite -> SQLite
      adds  092d92d   updated SQLite to 3.8.8.3
      adds  e1fe852   updated Changes
      adds  54eb2bc   added a script to extract SQLite constants from sqlite3.h 
and generate necessary XSUBs
      adds  ea3e25e   added a generated constants.inc and ::Constants
      adds  305d556   refactored getsqlite.pl to use a utility module
      adds  c3571f0   added a script to see which API was introduced when
      adds  eeeecf1   not to ship maintenance utilities
      adds  87371fb   tweaked a filecontent test to reflect the 
addition/removal of files
      adds  fcf0a54   hid internal packages from PAUSE
      adds  b1975f1   supported extended result codes
      adds  68d2877   CANTOPEN_ISDIR is only valid on Win32
      adds  d43b278   fixed test plan for older DBI (SREZIC++)
      adds  cc34b2b   updated .travis.yml to test against both the latest and 
the minimum required vrsions of DBI
      adds  82e4128   sqlite_ function should be tested using @CALL_FUNCS
      adds  1633c09   DBI@1.57 (actually DBI < 1.614) doesn't install Perl 5.14 
and above
      adds  50eaffa   reflected the change in sort order of constants
      adds  18fe076   note when a constant tag is ignored
      adds  4c4f4b0   bumped up SQLite to 3.8.9
      adds  f85a740   moved a naive cpp comment test (which users don't have to 
test by themselves) to xt
      adds  4dc70a9   ignore /// in a quote
      adds  5a52a78   tweaked constant order for better diff
      adds  558e422   SQLite 3.6.16.1 doesn't extract into a directory
      adds  f1b3d38   updated MANIFEST
      adds  663e6e1   Cygwin threadex symbol issue with SQLite 3.8.[78] was 
fixed with SQLite 3.8.9
      adds  eaf3dc3   fixed versions detection from sqlite website
      adds  a23de06   fix GH #8
      adds  2200a59   "IS NULL" was first supported at SQLite 3.6.19, not 3.6.10
      adds  ae1eeda   ...and this specific test requires SQLite 3.7.12 and above
      adds  2718861   documented optional flags for create_function/aggregate
      adds  628393d   releng 1.47_02
      adds  25cf95e   added 'all' to EXPORT_TAGS
      adds  1034fed   releng 1.47_03
      adds  ba815ce   improved description on immediate transaction (#9)
      adds  4b92383   might be better to use the same word class to avoid 
confusion
      adds  74e19c5   use MY_CXT instead of a static global variable
      adds  93bd77e   releng 1.47_04
      adds  57d584b   updated SQLite to 3.8.10
      adds  20fdc73   releng 1.47_05
      adds  348ca9a   releng 1.48
      adds  12f619f   Imported Upstream version 1.48
       new  60752a4   Merge tag 'upstream/1.48'
       new  a309dcf   Update debian/changelog
       new  eaf0313   Refresh use_system_sqlite (offset)
       new  ae7c2f0   Drop fix-test-sort.patch patch
       new  b54e1d7   Update debian/changelog file

The 5 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .travis.yml                                        |     8 +-
 Changes                                            |    32 +
 MANIFEST                                           |     6 +-
 MANIFEST.SKIP                                      |     1 +
 META.json                                          |     4 +-
 META.yml                                           |     4 +-
 Makefile.PL                                        |    13 +-
 SQLite.xs                                          |   339 +-
 constants.inc                                      |   941 ++
 dbdimp.c                                           |   353 +-
 dbdimp.h                                           |    11 +-
 debian/changelog                                   |    10 +
 debian/patches/fix-test-sort.patch                 |    20 -
 debian/patches/series                              |     1 -
 debian/patches/use_system_sqlite                   |     6 +-
 lib/DBD/SQLite.pm                                  |    70 +-
 lib/DBD/SQLite/Constants.pm                        |   488 +
 lib/DBD/SQLite/VirtualTable.pm                     |     2 +-
 sqlite3.c                                          | 10983 +++++++++++++------
 sqlite3.h                                          |  1502 ++-
 t/09_create_function.t                             |    31 +-
 t/10_create_aggregate.t                            |    21 +-
 t/34_online_backup.t                               |    10 +-
 t/39_foreign_keys.t                                |     8 +-
 t/43_fts3.t                                        |     7 +-
 t/45_savepoints.t                                  |     6 +-
 t/49_trace_and_profile.t                           |     5 +-
 t/52_db_filename.t                                 |     5 +-
 t/53_status.t                                      |    24 +-
 t/56_open_flags.t                                  |     9 +-
 t/57_uri_filename.t                                |     6 +-
 t/59_extended_result_codes.t                       |    57 +
 t/lib/Test.pm                                      |    36 +-
 t/rt_26775_distinct.t                              |     7 +-
 t/rt_78833_utf8_flag_for_column_names.t            |     9 +-
 t/rt_96050_db_filename_for_a_closed_database.t     |    13 +-
 t/rt_96878_fts_contentless_table.t                 |     9 +-
 ...97598_crash_on_disconnect_with_virtual_tables.t |     6 +-
 t/virtual_table/10_filecontent.t                   |     2 +
 t/virtual_table/11_filecontent_fulltext.t          |    14 +-
 t/virtual_table/20_perldata.t                      |    27 +-
 t/virtual_table/rt_99748.t                         |    14 +-
 util/getsqlite.pl                                  |    85 -
 t/29_cppcomments.t => xt/cpp_comments.t            |     4 +-
 44 files changed, 10531 insertions(+), 4678 deletions(-)
 create mode 100644 constants.inc
 delete mode 100644 debian/patches/fix-test-sort.patch
 create mode 100644 lib/DBD/SQLite/Constants.pm
 create mode 100644 t/59_extended_result_codes.t
 delete mode 100644 util/getsqlite.pl
 rename t/29_cppcomments.t => xt/cpp_comments.t (81%)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libdbd-sqlite3-perl.git

_______________________________________________
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits

Reply via email to