Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package perl-DBD-SQLite for openSUSE:Factory
checked in at 2022-11-25 13:11:16
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-DBD-SQLite (Old)
and /work/SRC/openSUSE:Factory/.perl-DBD-SQLite.new.1597 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "perl-DBD-SQLite"
Fri Nov 25 13:11:16 2022 rev:50 rq:1037845 version:1.72
Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-DBD-SQLite/perl-DBD-SQLite.changes
2022-03-16 21:30:23.099394479 +0100
+++
/work/SRC/openSUSE:Factory/.perl-DBD-SQLite.new.1597/perl-DBD-SQLite.changes
2022-11-25 13:11:22.767753663 +0100
@@ -1,0 +2,34 @@
+Wed Nov 23 17:38:35 UTC 2022 - Tina Müller <[email protected]>
+
+- Update perl-DBD-SQLite-use-external-sqlite3.patch (remove metadata
+ fix, not needed anymore)
+
+-------------------------------------------------------------------
+Fri Nov 4 03:07:04 UTC 2022 - Tina Müller <[email protected]>
+
+- updated to 1.72
+ see /usr/share/doc/packages/perl-DBD-SQLite/Changes
+
+ 1.72 2022-11-04
+ - Switched to a production version
+ 1.71_07 2022-10-26
+ - Upgraded SQLite to 3.39.4
+ 1.71_06 2022-03-12
+ - Set UTF8CACHE to avoid slowdown with -DDEBUGGING (andk, Leont, FGasper)
+ 1.71_05 2022-02-26
+ - Fix another test failure on perl built with -DDEBUGGING
+ - Lowercase datatype in table column metadata for backcompat
+ 1.71_04 2022-02-26
+ - Fix test failure on perl built with -DDEBUGGING (andk++)
+ 1.71_03 2022-02-23
+ - Upgraded SQLite to 3.38.0
+ - Expose sqlite_error_offset introduced in 3.38.0
+ 1.71_02 2022-01-07
+ - Upgraded SQLite to 3.37.2
+ - Improve sqlite_load_extension doc (GH#94, Derek Lamb++)
+ 1.71_01 2021-12-02
+ - Upgraded SQLite to 3.37.0
+ - Add a feature to unregister a created function
+ - Fix accented characters in POD (GH#90, HaraldJoerg++)
+
+-------------------------------------------------------------------
Old:
----
DBD-SQLite-1.70.tar.gz
New:
----
DBD-SQLite-1.72.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ perl-DBD-SQLite.spec ++++++
--- /var/tmp/diff_new_pack.6LgvYb/_old 2022-11-25 13:11:23.451757484 +0100
+++ /var/tmp/diff_new_pack.6LgvYb/_new 2022-11-25 13:11:23.455757506 +0100
@@ -18,7 +18,7 @@
%define cpan_name DBD-SQLite
Name: perl-DBD-SQLite
-Version: 1.70
+Version: 1.72
Release: 0
License: Artistic-1.0 OR GPL-1.0-or-later
Summary: Self Contained SQLite RDBMS in a DBI Driver
++++++ DBD-SQLite-1.70.tar.gz -> DBD-SQLite-1.72.tar.gz ++++++
++++ 44688 lines of diff (skipped)
++++++ perl-DBD-SQLite-use-external-sqlite3.patch ++++++
--- /var/tmp/diff_new_pack.6LgvYb/_old 2022-11-25 13:11:24.043760791 +0100
+++ /var/tmp/diff_new_pack.6LgvYb/_new 2022-11-25 13:11:24.047760813 +0100
@@ -11,17 +11,4 @@
require File::Spec;
if ( $sqlite_base = (grep(/SQLITE_LOCATION=.*/, @ARGV))[0] ) {
$sqlite_base =~ /=(.*)/;
-Index: DBD-SQLite-1.70/t/51_table_column_metadata.t
-===================================================================
---- DBD-SQLite-1.70.orig/t/51_table_column_metadata.t
-+++ DBD-SQLite-1.70/t/51_table_column_metadata.t
-@@ -19,7 +19,7 @@ for my $call_func (@CALL_FUNCS) {
- my $data = $dbh->$call_func(undef, 'foo', 'id',
'table_column_metadata');
- ok $data && ref $data eq ref {}, "got a metadata";
- ok $data->{auto_increment}, "id is auto incremental";
-- is $data->{data_type} => 'integer', "data type is correct";
-+ is $data->{data_type} => 'INTEGER', "data type is correct";
- ok $data->{primary}, "id is a primary key";
- ok !$data->{not_null}, "id is not null";
- }