Hello community,

here is the log from the commit of package perl-DBD-SQLite for openSUSE:Factory 
checked in at 2016-02-25 21:56:29
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-DBD-SQLite (Old)
 and      /work/SRC/openSUSE:Factory/.perl-DBD-SQLite.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "perl-DBD-SQLite"

Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-DBD-SQLite/perl-DBD-SQLite.changes  
2015-07-02 22:44:14.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.perl-DBD-SQLite.new/perl-DBD-SQLite.changes     
2016-02-25 22:03:32.000000000 +0100
@@ -1,0 +2,61 @@
+Sat Feb 13 09:50:32 UTC 2016 - co...@suse.com
+
+- updated to 1.50
+   see /usr/share/doc/packages/perl-DBD-SQLite/Changes
+
+  1.50 2016-02-11
+      - Switched to a production version.
+  
+  1.49_08 2016-01-30
+      - no significant code changes
+      - Resolved RT#111558: Virtual table tests depend on enhanced
+        query syntax availability (vlmarek++)
+      - Ingore FTS tests if FTS is not available
+  
+  1.49_07 2016-01-21
+      - Updated to SQLite 3.10.2, which fixed a case-folding bug
+        in the LIKE operator introduced in SQLite 3.10.0.
+  
+  1.49_06 2016-01-15
+      - Updated to SQLite 3.10.1, which fixed an old bug that could
+        generate incorrect results when a scalar subquery attempts
+        to use the block sorting optimization.
+  
+  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++)
+  
+  1.49_03 2015-11-05
+      - Updated to SQLite 3.9.2, with JSON support
+  
+  1.49_02 2015-10-10
+      - Added a workaround to resolve #106950 Extra warnings
+        with savepoints (hopefully)
+      - Not to run tests for table_column_metadata unless
+        ENABLE_COLUMN_METADATA is set
+  
+  1.49_01 2015-08-04
+      - Updated to SQLite 3.8.11.1
+      - Resolved #106151 SAVEPOINT bug
+      - Made sure to keep what's left in unprepared_statements when
+        allow_multiple_statements is set. (GH #11)
+
+-------------------------------------------------------------------

Old:
----
  DBD-SQLite-1.48.tar.gz

New:
----
  DBD-SQLite-1.50.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ perl-DBD-SQLite.spec ++++++
--- /var/tmp/diff_new_pack.JspyBt/_old  2016-02-25 22:03:34.000000000 +0100
+++ /var/tmp/diff_new_pack.JspyBt/_new  2016-02-25 22:03:34.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-DBD-SQLite
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:           perl-DBD-SQLite
-Version:        1.48
+Version:        1.50
 Release:        0
 %define cpan_name DBD-SQLite
 Summary:        Self-contained RDBMS in a DBI Driver
@@ -37,7 +37,7 @@
 
 %description
 SQLite is a public domain file-based relational database engine that you
-can find at the http://www.sqlite.org/ manpage.
+can find at http://www.sqlite.org/.
 
 *DBD::SQLite* is a Perl DBI driver for SQLite, that includes the entire
 thing in the distribution. So in order to get a fast transaction capable
@@ -48,31 +48,31 @@
 
 * Implements a large subset of SQL92
 
-  See the http://www.sqlite.org/lang.html manpage for details.
+See http://www.sqlite.org/lang.html for details.
 
 * A complete DB in a single disk file
 
-  Everything for your database is stored in a single disk file, making it
-  easier to move things around than with the DBD::CSV manpage.
+Everything for your database is stored in a single disk file, making it
+easier to move things around than with DBD::CSV.
 
 * Atomic commit and rollback
 
-  Yes, *DBD::SQLite* is small and light, but it supports full transactions!
+Yes, *DBD::SQLite* is small and light, but it supports full transactions!
 
 * Extensible
 
-  User-defined aggregate or regular functions can be registered with the
-  SQL parser.
+User-defined aggregate or regular functions can be registered with the SQL
+parser.
 
 There's lots more to it, so please refer to the docs on the SQLite web
-page, listed above, for SQL details. Also refer to the DBI manpage for
-details on how to use DBI itself. The API works like every DBI module does.
-However, currently many statement attributes are not implemented or are
-limited by the typeless nature of the SQLite database.
+page, listed above, for SQL details. Also refer to DBI for details on how
+to use DBI itself. The API works like every DBI module does. However,
+currently many statement attributes are not implemented or are limited by
+the typeless nature of the SQLite database.
 
 %prep
 %setup -q -n %{cpan_name}-%{version}
-find . -type f -print0 | xargs -0 chmod 644
+find . -type f ! -name \*.pl -print0 | xargs -0 chmod 644
 
 %build
 %{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"

++++++ DBD-SQLite-1.48.tar.gz -> DBD-SQLite-1.50.tar.gz ++++++
++++ 119707 lines of diff (skipped)


Reply via email to