commit perl-Mojo-Pg for openSUSE:Factory

2020-11-09 Thread root
Hello community,

here is the log from the commit of package perl-Mojo-Pg for openSUSE:Factory 
checked in at 2020-11-09 13:58:40

Comparing /work/SRC/openSUSE:Factory/perl-Mojo-Pg (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Mojo-Pg.new.11331 (New)


Package is "perl-Mojo-Pg"

Mon Nov  9 13:58:40 2020 rev:25 rq:847120 version:4.22

Changes:

--- /work/SRC/openSUSE:Factory/perl-Mojo-Pg/perl-Mojo-Pg.changes
2020-10-27 19:01:52.710871305 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Mojo-Pg.new.11331/perl-Mojo-Pg.changes 
2020-11-09 13:59:20.847710760 +0100
@@ -1,0 +2,10 @@
+Sat Nov  7 03:17:51 UTC 2020 - Tina Müller 
+
+- updated to 4.22
+   see /usr/share/doc/packages/perl-Mojo-Pg/Changes
+
+  4.22  2020-11-06
+- Added from_dir method to Mojo::Pg::Migrations. (kiwiroy)
+- Improved Mojo::Pg::Database to handle connection errors more gracefully.
+
+---

Old:

  Mojo-Pg-4.21.tar.gz

New:

  Mojo-Pg-4.22.tar.gz



Other differences:
--
++ perl-Mojo-Pg.spec ++
--- /var/tmp/diff_new_pack.X5iwai/_old  2020-11-09 13:59:21.631709051 +0100
+++ /var/tmp/diff_new_pack.X5iwai/_new  2020-11-09 13:59:21.635709042 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Mojo-Pg
-Version:4.21
+Version:4.22
 Release:0
 %define cpan_name Mojo-Pg
 Summary:Wrapper around DBD::Pg for using PostgreSql with Mojolicious

++ Mojo-Pg-4.21.tar.gz -> Mojo-Pg-4.22.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.21/Changes new/Mojo-Pg-4.22/Changes
--- old/Mojo-Pg-4.21/Changes2020-10-25 18:08:42.0 +0100
+++ new/Mojo-Pg-4.22/Changes2020-11-06 20:44:58.0 +0100
@@ -1,4 +1,8 @@
 
+4.22  2020-11-06
+  - Added from_dir method to Mojo::Pg::Migrations. (kiwiroy)
+  - Improved Mojo::Pg::Database to handle connection errors more gracefully.
+
 4.21  2020-10-25
   - Added reset method to Mojo::Pg.
   - Changed SQL style to use uppercase keywords.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.21/MANIFEST new/Mojo-Pg-4.22/MANIFEST
--- old/Mojo-Pg-4.21/MANIFEST   2020-10-26 00:09:25.0 +0100
+++ new/Mojo-Pg-4.22/MANIFEST   2020-11-06 20:46:42.0 +0100
@@ -31,6 +31,15 @@
 t/database.t
 t/migrations.t
 t/migrations/test.sql
+t/migrations/tree/1/down.sql
+t/migrations/tree/1/up.sql
+t/migrations/tree/2/down.sql
+t/migrations/tree/2/up.sql
+t/migrations/tree/36/up.sql
+t/migrations/tree/55/upgrade.sql
+t/migrations/tree/99/up.sql
+t/migrations/tree2/8/up.sql
+t/migrations/tree2/subtree/9/up.sql
 t/pg_lite_app.t
 t/pod.t
 t/pod_coverage.t
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.21/META.json new/Mojo-Pg-4.22/META.json
--- old/Mojo-Pg-4.21/META.json  2020-10-26 00:09:25.0 +0100
+++ new/Mojo-Pg-4.22/META.json  2020-11-06 20:46:42.0 +0100
@@ -60,6 +60,6 @@
  "web" : "https://webchat.freenode.net/#mojo";
   }
},
-   "version" : "4.21",
+   "version" : "4.22",
"x_serialization_backend" : "JSON::PP version 4.05"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.21/META.yml new/Mojo-Pg-4.22/META.yml
--- old/Mojo-Pg-4.21/META.yml   2020-10-26 00:09:25.0 +0100
+++ new/Mojo-Pg-4.22/META.yml   2020-11-06 20:46:42.0 +0100
@@ -32,5 +32,5 @@
   homepage: https://mojolicious.org
   license: http://www.opensource.org/licenses/artistic-license-2.0
   repository: https://github.com/mojolicious/mojo-pg.git
-version: '4.21'
+version: '4.22'
 x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.21/lib/Mojo/Pg/Database.pm 
new/Mojo-Pg-4.22/lib/Mojo/Pg/Database.pm
--- old/Mojo-Pg-4.21/lib/Mojo/Pg/Database.pm2020-10-24 23:47:39.0 
+0200
+++ new/Mojo-Pg-4.22/lib/Mojo/Pg/Database.pm2020-11-06 20:43:14.0 
+0100
@@ -137,10 +137,10 @@
 
   my $dbh = $self->dbh;
   my $n;
-  return undef unless $n = $dbh->pg_notifies;
+  return undef unless $n = eval { $dbh->pg_notifies };
   while ($n) {
 $self->emit(notification => @$n);
-$n = $dbh->pg_notifies;
+$n = eval { $dbh->pg_notifies };
   }
 
   return 1;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.21/lib/Mojo/Pg/Migrations.pm 
new/Mojo-Pg-4.22/lib/Mojo/Pg/Migrations.pm
--- old/Mojo-Pg-4.21/lib/Mojo/Pg/Migrations.pm  2020-10-24 23:31:09.0 
+0200
+++ new/Mojo-Pg-4.22/lib/Mojo/Pg/Migrations.pm  2020-11-06 20:09:42.0 
+0100
@@ -18,6

commit perl-Mojo-Pg for openSUSE:Factory

2020-10-27 Thread root
Hello community,

here is the log from the commit of package perl-Mojo-Pg for openSUSE:Factory 
checked in at 2020-10-27 19:01:38

Comparing /work/SRC/openSUSE:Factory/perl-Mojo-Pg (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Mojo-Pg.new.3463 (New)


Package is "perl-Mojo-Pg"

Tue Oct 27 19:01:38 2020 rev:24 rq:844259 version:4.21

Changes:

--- /work/SRC/openSUSE:Factory/perl-Mojo-Pg/perl-Mojo-Pg.changes
2020-10-05 19:43:11.905790652 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Mojo-Pg.new.3463/perl-Mojo-Pg.changes  
2020-10-27 19:01:52.710871305 +0100
@@ -1,0 +2,10 @@
+Mon Oct 26 03:08:41 UTC 2020 - Tina Müller 
+
+- updated to 4.21
+   see /usr/share/doc/packages/perl-Mojo-Pg/Changes
+
+  4.21  2020-10-25
+- Added reset method to Mojo::Pg.
+- Changed SQL style to use uppercase keywords.
+
+---

Old:

  Mojo-Pg-4.20.tar.gz

New:

  Mojo-Pg-4.21.tar.gz



Other differences:
--
++ perl-Mojo-Pg.spec ++
--- /var/tmp/diff_new_pack.vxbhR6/_old  2020-10-27 19:01:53.250871698 +0100
+++ /var/tmp/diff_new_pack.vxbhR6/_new  2020-10-27 19:01:53.254871701 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Mojo-Pg
-Version:4.20
+Version:4.21
 Release:0
 %define cpan_name Mojo-Pg
 Summary:Wrapper around DBD::Pg for using PostgreSql with Mojolicious

++ Mojo-Pg-4.20.tar.gz -> Mojo-Pg-4.21.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.20/Changes new/Mojo-Pg-4.21/Changes
--- old/Mojo-Pg-4.20/Changes2020-10-01 15:43:29.0 +0200
+++ new/Mojo-Pg-4.21/Changes2020-10-25 18:08:42.0 +0100
@@ -1,4 +1,8 @@
 
+4.21  2020-10-25
+  - Added reset method to Mojo::Pg.
+  - Changed SQL style to use uppercase keywords.
+
 4.20  2020-10-01
   - Fixed fork-safety feature to work with more than one fork.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.20/META.json new/Mojo-Pg-4.21/META.json
--- old/Mojo-Pg-4.20/META.json  2020-10-02 13:02:59.0 +0200
+++ new/Mojo-Pg-4.21/META.json  2020-10-26 00:09:25.0 +0100
@@ -4,7 +4,7 @@
   "Sebastian Riedel "
],
"dynamic_config" : 0,
-   "generated_by" : "ExtUtils::MakeMaker version 7.46, CPAN::Meta::Converter 
version 2.150010",
+   "generated_by" : "ExtUtils::MakeMaker version 7.50, CPAN::Meta::Converter 
version 2.150010",
"license" : [
   "artistic_2"
],
@@ -60,6 +60,6 @@
  "web" : "https://webchat.freenode.net/#mojo";
   }
},
-   "version" : "4.20",
+   "version" : "4.21",
"x_serialization_backend" : "JSON::PP version 4.05"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.20/META.yml new/Mojo-Pg-4.21/META.yml
--- old/Mojo-Pg-4.20/META.yml   2020-10-02 13:02:59.0 +0200
+++ new/Mojo-Pg-4.21/META.yml   2020-10-26 00:09:25.0 +0100
@@ -7,7 +7,7 @@
 configure_requires:
   ExtUtils::MakeMaker: '0'
 dynamic_config: 0
-generated_by: 'ExtUtils::MakeMaker version 7.46, CPAN::Meta::Converter version 
2.150010'
+generated_by: 'ExtUtils::MakeMaker version 7.50, CPAN::Meta::Converter version 
2.150010'
 license: artistic_2
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -32,5 +32,5 @@
   homepage: https://mojolicious.org
   license: http://www.opensource.org/licenses/artistic-license-2.0
   repository: https://github.com/mojolicious/mojo-pg.git
-version: '4.20'
+version: '4.21'
 x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.20/README.md new/Mojo-Pg-4.21/README.md
--- old/Mojo-Pg-4.20/README.md  2020-05-30 23:50:14.0 +0200
+++ new/Mojo-Pg-4.21/README.md  2020-10-24 19:46:08.0 +0200
@@ -19,10 +19,10 @@
   my $ip = $c->tx->remote_address;
 
   # Store information about current visitor blocking
-  $db->query('insert into visitors values (now(), ?)', $ip);
+  $db->query('INSERT INTO visitors VALUES (NOW(), ?)', $ip);
 
   # Retrieve information about previous visitors non-blocking
-  $db->query('select * from visitors limit 50' => sub ($db, $err, $results) {
+  $db->query('SELECT * FROM visitors LIMIT 50' => sub ($db, $err, $results) {
 
 return $c->reply->exception($err) if $err;
 
@@ -35,9 +35,9 @@
 
 @@ migrations
 -- 1 up
-create table visitors (at timestamp with time zone, ip text);
+CREATE TABLE visitors (at TIMESTAMP WITH TIME ZONE, ip TEXT);
 -- 1 down
-drop table visitors;
+DROP TABLE visitors;
 ```
 
 ## Installation
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=

commit perl-Mojo-Pg for openSUSE:Factory

2020-10-05 Thread root
Hello community,

here is the log from the commit of package perl-Mojo-Pg for openSUSE:Factory 
checked in at 2020-10-05 19:41:59

Comparing /work/SRC/openSUSE:Factory/perl-Mojo-Pg (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Mojo-Pg.new.4249 (New)


Package is "perl-Mojo-Pg"

Mon Oct  5 19:41:59 2020 rev:23 rq:839518 version:4.20

Changes:

--- /work/SRC/openSUSE:Factory/perl-Mojo-Pg/perl-Mojo-Pg.changes
2020-06-04 17:56:51.933082369 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Mojo-Pg.new.4249/perl-Mojo-Pg.changes  
2020-10-05 19:43:11.905790652 +0200
@@ -1,0 +2,9 @@
+Sun Oct  4 03:17:59 UTC 2020 - Tina Müller 
+
+- updated to 4.20
+   see /usr/share/doc/packages/perl-Mojo-Pg/Changes
+
+  4.20  2020-10-01
+- Fixed fork-safety feature to work with more than one fork.
+
+---

Old:

  Mojo-Pg-4.19.tar.gz

New:

  Mojo-Pg-4.20.tar.gz



Other differences:
--
++ perl-Mojo-Pg.spec ++
--- /var/tmp/diff_new_pack.UqIte6/_old  2020-10-05 19:43:12.545791278 +0200
+++ /var/tmp/diff_new_pack.UqIte6/_new  2020-10-05 19:43:12.549791282 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Mojo-Pg
-Version:4.19
+Version:4.20
 Release:0
 %define cpan_name Mojo-Pg
 Summary:Wrapper around DBD::Pg for using PostgreSql with Mojolicious

++ Mojo-Pg-4.19.tar.gz -> Mojo-Pg-4.20.tar.gz ++
 2363 lines of diff (skipped)




commit perl-Mojo-Pg for openSUSE:Factory

2020-06-04 Thread root
Hello community,

here is the log from the commit of package perl-Mojo-Pg for openSUSE:Factory 
checked in at 2020-06-04 17:56:47

Comparing /work/SRC/openSUSE:Factory/perl-Mojo-Pg (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Mojo-Pg.new.3606 (New)


Package is "perl-Mojo-Pg"

Thu Jun  4 17:56:47 2020 rev:22 rq:811443 version:4.19

Changes:

--- /work/SRC/openSUSE:Factory/perl-Mojo-Pg/perl-Mojo-Pg.changes
2019-10-08 19:59:34.747901217 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Mojo-Pg.new.3606/perl-Mojo-Pg.changes  
2020-06-04 17:56:51.933082369 +0200
@@ -1,0 +2,14 @@
+Mon Jun  1 03:13:19 UTC 2020 - Tina Müller 
+
+updated to 4.19
+   see /usr/share/doc/packages/perl-Mojo-Pg/Changes
+
+  4.19  2020-05-30
+- Improved .perltidyrc with more modern settings.
+- Fixed validation problem in blog example.
+  
+  4.18  2020-01-30
+- Improved support for -json values to be a little more consistent.
+  
+
+---

Old:

  Mojo-Pg-4.17.tar.gz

New:

  Mojo-Pg-4.19.tar.gz



Other differences:
--
++ perl-Mojo-Pg.spec ++
--- /var/tmp/diff_new_pack.x1Uov5/_old  2020-06-04 17:56:52.493084123 +0200
+++ /var/tmp/diff_new_pack.x1Uov5/_new  2020-06-04 17:56:52.497084135 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Mojo-Pg
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,13 +17,13 @@
 
 
 Name:   perl-Mojo-Pg
-Version:4.17
+Version:4.19
 Release:0
 %define cpan_name Mojo-Pg
 Summary:Wrapper around DBD::Pg for using PostgreSql with Mojolicious
 License:Artistic-2.0
 Group:  Development/Libraries/Perl
-Url:https://metacpan.org/release/%{cpan_name}
+URL:https://metacpan.org/release/%{cpan_name}
 Source0:
https://cpan.metacpan.org/authors/id/S/SR/SRI/%{cpan_name}-%{version}.tar.gz
 Source1:cpanspec.yml
 BuildArch:  noarch
@@ -31,10 +31,10 @@
 BuildRequires:  perl
 BuildRequires:  perl-macros
 BuildRequires:  perl(DBD::Pg) >= 3.007004
-BuildRequires:  perl(Mojolicious) >= 8.03
+BuildRequires:  perl(Mojolicious) >= 8.50
 BuildRequires:  perl(SQL::Abstract) >= 1.86
 Requires:   perl(DBD::Pg) >= 3.007004
-Requires:   perl(Mojolicious) >= 8.03
+Requires:   perl(Mojolicious) >= 8.50
 Requires:   perl(SQL::Abstract) >= 1.86
 %{perl_requires}
 
@@ -50,7 +50,7 @@
 
 %prep
 %setup -q -n %{cpan_name}-%{version}
-find . -type f ! -name \*.pl -print0 | xargs -0 chmod 644
+find . -type f ! -path "*/t/*" ! -name "*.pl" ! -path "*/bin/*" ! -path 
"*/script/*" ! -name "configure" -print0 | xargs -0 chmod 644
 
 %build
 perl Makefile.PL INSTALLDIRS=vendor

++ Mojo-Pg-4.17.tar.gz -> Mojo-Pg-4.19.tar.gz ++
 2946 lines of diff (skipped)




commit perl-Mojo-Pg for openSUSE:Factory

2019-10-08 Thread root
Hello community,

here is the log from the commit of package perl-Mojo-Pg for openSUSE:Factory 
checked in at 2019-10-08 19:59:33

Comparing /work/SRC/openSUSE:Factory/perl-Mojo-Pg (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Mojo-Pg.new.2352 (New)


Package is "perl-Mojo-Pg"

Tue Oct  8 19:59:33 2019 rev:21 rq:736048 version:4.17

Changes:

--- /work/SRC/openSUSE:Factory/perl-Mojo-Pg/perl-Mojo-Pg.changes
2019-09-07 11:52:57.706278114 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Mojo-Pg.new.2352/perl-Mojo-Pg.changes  
2019-10-08 19:59:34.747901217 +0200
@@ -1,0 +2,12 @@
+Tue Oct  8 08:02:30 UTC 2019 -  
+
+- updated to 4.17
+   see /usr/share/doc/packages/perl-Mojo-Pg/Changes
+
+  4.17  2019-10-07
+- Reverted connection cache optimization from 4.14, because it caused 
problems
+  with some connections closed by the PostgreSQL server.
+- Updated mojo_migrations table created by Mojo::Pg::Migrations to use a
+  primary key.
+
+---

Old:

  Mojo-Pg-4.16.tar.gz

New:

  Mojo-Pg-4.17.tar.gz



Other differences:
--
++ perl-Mojo-Pg.spec ++
--- /var/tmp/diff_new_pack.kdRIVT/_old  2019-10-08 19:59:35.271899648 +0200
+++ /var/tmp/diff_new_pack.kdRIVT/_new  2019-10-08 19:59:35.271899648 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Mojo-Pg
-Version:4.16
+Version:4.17
 Release:0
 %define cpan_name Mojo-Pg
 Summary:Wrapper around DBD::Pg for using PostgreSql with Mojolicious

++ Mojo-Pg-4.16.tar.gz -> Mojo-Pg-4.17.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.16/Changes new/Mojo-Pg-4.17/Changes
--- old/Mojo-Pg-4.16/Changes2019-09-04 11:12:37.0 +0200
+++ new/Mojo-Pg-4.17/Changes2019-10-07 17:39:32.0 +0200
@@ -1,4 +1,10 @@
 
+4.17  2019-10-07
+  - Reverted connection cache optimization from 4.14, because it caused 
problems
+with some connections closed by the PostgreSQL server.
+  - Updated mojo_migrations table created by Mojo::Pg::Migrations to use a
+primary key.
+
 4.16  2019-09-04
   - Updated DBD::Pg requirement to 3.7.4 due to certain JSON features not
 working with older versions.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.16/META.json new/Mojo-Pg-4.17/META.json
--- old/Mojo-Pg-4.16/META.json  2019-09-04 11:16:12.0 +0200
+++ new/Mojo-Pg-4.17/META.json  2019-10-07 17:42:07.0 +0200
@@ -4,7 +4,7 @@
   "Sebastian Riedel "
],
"dynamic_config" : 0,
-   "generated_by" : "ExtUtils::MakeMaker version 7.36, CPAN::Meta::Converter 
version 2.150010",
+   "generated_by" : "ExtUtils::MakeMaker version 7.38, CPAN::Meta::Converter 
version 2.150010",
"license" : [
   "artistic_2"
],
@@ -57,6 +57,6 @@
   },
   "x_IRC" : "irc://irc.freenode.net/#mojo"
},
-   "version" : "4.16",
+   "version" : "4.17",
"x_serialization_backend" : "JSON::PP version 4.04"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.16/META.yml new/Mojo-Pg-4.17/META.yml
--- old/Mojo-Pg-4.16/META.yml   2019-09-04 11:16:12.0 +0200
+++ new/Mojo-Pg-4.17/META.yml   2019-10-07 17:42:07.0 +0200
@@ -7,7 +7,7 @@
 configure_requires:
   ExtUtils::MakeMaker: '0'
 dynamic_config: 0
-generated_by: 'ExtUtils::MakeMaker version 7.36, CPAN::Meta::Converter version 
2.150010'
+generated_by: 'ExtUtils::MakeMaker version 7.38, CPAN::Meta::Converter version 
2.150010'
 license: artistic_2
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -30,5 +30,5 @@
   homepage: https://mojolicious.org
   license: http://www.opensource.org/licenses/artistic-license-2.0
   repository: https://github.com/mojolicious/mojo-pg.git
-version: '4.16'
+version: '4.17'
 x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.16/lib/Mojo/Pg/Database.pm 
new/Mojo-Pg-4.17/lib/Mojo/Pg/Database.pm
--- old/Mojo-Pg-4.16/lib/Mojo/Pg/Database.pm2019-07-22 18:41:26.0 
+0200
+++ new/Mojo-Pg-4.17/lib/Mojo/Pg/Database.pm2019-10-07 17:36:33.0 
+0200
@@ -160,7 +160,6 @@
   return if $self->{watching} || $self->{watching}++;
 
   my $dbh = $self->dbh;
-  $dbh->{private_mojo_async} = 1;
   unless ($self->{handle}) {
 open $self->{handle}, '<&', $dbh->{pg_socket} or die "Can't dup: $!";
   }
@@ -175,7 +174,7 @@
 
   # Do not raise exceptions inside the event loop
   my $result = do { local $dbh->{RaiseError} = 0; $dbh->pg_result };
-  my $err= defined $result ? undef : $

commit perl-Mojo-Pg for openSUSE:Factory

2019-09-07 Thread root
Hello community,

here is the log from the commit of package perl-Mojo-Pg for openSUSE:Factory 
checked in at 2019-09-07 11:52:56

Comparing /work/SRC/openSUSE:Factory/perl-Mojo-Pg (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Mojo-Pg.new.7948 (New)


Package is "perl-Mojo-Pg"

Sat Sep  7 11:52:56 2019 rev:20 rq:728585 version:4.16

Changes:

--- /work/SRC/openSUSE:Factory/perl-Mojo-Pg/perl-Mojo-Pg.changes
2019-07-26 12:41:06.993887529 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Mojo-Pg.new.7948/perl-Mojo-Pg.changes  
2019-09-07 11:52:57.706278114 +0200
@@ -1,0 +2,10 @@
+Thu Sep  5 08:39:35 UTC 2019 -  
+
+- updated to 4.16
+   see /usr/share/doc/packages/perl-Mojo-Pg/Changes
+
+  4.16  2019-09-04
+- Updated DBD::Pg requirement to 3.7.4 due to certain JSON features not
+  working with older versions.
+
+---

Old:

  Mojo-Pg-4.15.tar.gz

New:

  Mojo-Pg-4.16.tar.gz



Other differences:
--
++ perl-Mojo-Pg.spec ++
--- /var/tmp/diff_new_pack.AMcgE5/_old  2019-09-07 11:52:58.102278058 +0200
+++ /var/tmp/diff_new_pack.AMcgE5/_new  2019-09-07 11:52:58.102278058 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Mojo-Pg
-Version:4.15
+Version:4.16
 Release:0
 %define cpan_name Mojo-Pg
 Summary:Wrapper around DBD::Pg for using PostgreSql with Mojolicious
@@ -30,10 +30,10 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
-BuildRequires:  perl(DBD::Pg) >= 3.005001
+BuildRequires:  perl(DBD::Pg) >= 3.007004
 BuildRequires:  perl(Mojolicious) >= 8.03
 BuildRequires:  perl(SQL::Abstract) >= 1.86
-Requires:   perl(DBD::Pg) >= 3.005001
+Requires:   perl(DBD::Pg) >= 3.007004
 Requires:   perl(Mojolicious) >= 8.03
 Requires:   perl(SQL::Abstract) >= 1.86
 %{perl_requires}

++ Mojo-Pg-4.15.tar.gz -> Mojo-Pg-4.16.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.15/Changes new/Mojo-Pg-4.16/Changes
--- old/Mojo-Pg-4.15/Changes2019-07-24 12:09:01.0 +0200
+++ new/Mojo-Pg-4.16/Changes2019-09-04 11:12:37.0 +0200
@@ -1,4 +1,8 @@
 
+4.16  2019-09-04
+  - Updated DBD::Pg requirement to 3.7.4 due to certain JSON features not
+working with older versions.
+
 4.15  2019-07-24
   - Improved compatibility with older versions of DBI.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.15/META.json new/Mojo-Pg-4.16/META.json
--- old/Mojo-Pg-4.15/META.json  2019-07-24 12:09:52.0 +0200
+++ new/Mojo-Pg-4.16/META.json  2019-09-04 11:16:12.0 +0200
@@ -34,7 +34,7 @@
   },
   "runtime" : {
  "requires" : {
-"DBD::Pg" : "3.005001",
+"DBD::Pg" : "3.007004",
 "Mojolicious" : "8.03",
 "SQL::Abstract" : "1.86",
 "perl" : "5.010001"
@@ -57,6 +57,6 @@
   },
   "x_IRC" : "irc://irc.freenode.net/#mojo"
},
-   "version" : "4.15",
+   "version" : "4.16",
"x_serialization_backend" : "JSON::PP version 4.04"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.15/META.yml new/Mojo-Pg-4.16/META.yml
--- old/Mojo-Pg-4.15/META.yml   2019-07-24 12:09:52.0 +0200
+++ new/Mojo-Pg-4.16/META.yml   2019-09-04 11:16:12.0 +0200
@@ -20,7 +20,7 @@
 - examples
 - t
 requires:
-  DBD::Pg: '3.005001'
+  DBD::Pg: '3.007004'
   Mojolicious: '8.03'
   SQL::Abstract: '1.86'
   perl: '5.010001'
@@ -30,5 +30,5 @@
   homepage: https://mojolicious.org
   license: http://www.opensource.org/licenses/artistic-license-2.0
   repository: https://github.com/mojolicious/mojo-pg.git
-version: '4.15'
+version: '4.16'
 x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.15/Makefile.PL new/Mojo-Pg-4.16/Makefile.PL
--- old/Mojo-Pg-4.15/Makefile.PL2018-10-18 01:10:16.0 +0200
+++ new/Mojo-Pg-4.16/Makefile.PL2019-09-04 11:14:27.0 +0200
@@ -30,6 +30,6 @@
 },
   },
   PREREQ_PM =>
-{'DBD::Pg' => 3.005001, Mojolicious => '8.03', 'SQL::Abstract' => '1.86'},
+{'DBD::Pg' => 3.007004, Mojolicious => '8.03', 'SQL::Abstract' => '1.86'},
   test => {TESTS => 't/*.t t/*/*.t'}
 );
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.15/lib/Mojo/Pg.pm 
new/Mojo-Pg-4.16/lib/Mojo/Pg.pm
--- old/Mojo-Pg-4.15/lib/Mojo/Pg.pm 2019-07-24 12:00:40.0 +0200
+++ new/Mojo-Pg-4.16/lib/Mojo/Pg.pm 2019-07-24 12:10:36.0 +0200
@@ -34,

commit perl-Mojo-Pg for openSUSE:Factory

2019-07-26 Thread root
Hello community,

here is the log from the commit of package perl-Mojo-Pg for openSUSE:Factory 
checked in at 2019-07-26 12:41:03

Comparing /work/SRC/openSUSE:Factory/perl-Mojo-Pg (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Mojo-Pg.new.4126 (New)


Package is "perl-Mojo-Pg"

Fri Jul 26 12:41:03 2019 rev:19 rq:718496 version:4.15

Changes:

--- /work/SRC/openSUSE:Factory/perl-Mojo-Pg/perl-Mojo-Pg.changes
2019-07-23 22:38:38.426955742 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Mojo-Pg.new.4126/perl-Mojo-Pg.changes  
2019-07-26 12:41:06.993887529 +0200
@@ -1,0 +2,9 @@
+Thu Jul 25 05:15:39 UTC 2019 - Stephan Kulow 
+
+- updated to 4.15
+   see /usr/share/doc/packages/perl-Mojo-Pg/Changes
+
+  4.15  2019-07-24
+- Improved compatibility with older versions of DBI.
+
+---

Old:

  Mojo-Pg-4.14.tar.gz

New:

  Mojo-Pg-4.15.tar.gz



Other differences:
--
++ perl-Mojo-Pg.spec ++
--- /var/tmp/diff_new_pack.GFJvdu/_old  2019-07-26 12:41:08.393886919 +0200
+++ /var/tmp/diff_new_pack.GFJvdu/_new  2019-07-26 12:41:08.397886918 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Mojo-Pg
-Version:4.14
+Version:4.15
 Release:0
 %define cpan_name Mojo-Pg
 Summary:Wrapper around DBD::Pg for using PostgreSql with Mojolicious

++ Mojo-Pg-4.14.tar.gz -> Mojo-Pg-4.15.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.14/Changes new/Mojo-Pg-4.15/Changes
--- old/Mojo-Pg-4.14/Changes2019-07-22 18:50:36.0 +0200
+++ new/Mojo-Pg-4.15/Changes2019-07-24 12:09:01.0 +0200
@@ -1,4 +1,7 @@
 
+4.15  2019-07-24
+  - Improved compatibility with older versions of DBI.
+
 4.14  2019-07-22
   - Improved connection cache to be more than an order of magnitude faster for
 blocking queries.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.14/META.json new/Mojo-Pg-4.15/META.json
--- old/Mojo-Pg-4.14/META.json  2019-07-22 20:16:50.0 +0200
+++ new/Mojo-Pg-4.15/META.json  2019-07-24 12:09:52.0 +0200
@@ -57,6 +57,6 @@
   },
   "x_IRC" : "irc://irc.freenode.net/#mojo"
},
-   "version" : "4.14",
+   "version" : "4.15",
"x_serialization_backend" : "JSON::PP version 4.04"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.14/META.yml new/Mojo-Pg-4.15/META.yml
--- old/Mojo-Pg-4.14/META.yml   2019-07-22 20:16:50.0 +0200
+++ new/Mojo-Pg-4.15/META.yml   2019-07-24 12:09:52.0 +0200
@@ -30,5 +30,5 @@
   homepage: https://mojolicious.org
   license: http://www.opensource.org/licenses/artistic-license-2.0
   repository: https://github.com/mojolicious/mojo-pg.git
-version: '4.14'
+version: '4.15'
 x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.14/lib/Mojo/Pg.pm 
new/Mojo-Pg-4.15/lib/Mojo/Pg.pm
--- old/Mojo-Pg-4.14/lib/Mojo/Pg.pm 2019-07-22 18:53:09.0 +0200
+++ new/Mojo-Pg-4.15/lib/Mojo/Pg.pm 2019-07-24 12:00:40.0 +0200
@@ -34,7 +34,7 @@
 has [qw(password username)] => '';
 has pubsub  => sub { Mojo::Pg::PubSub->new(pg => shift) };
 
-our $VERSION = '4.14';
+our $VERSION = '4.15';
 
 sub db { $_[0]->database_class->new(dbh => $_[0]->_prepare, pg => $_[0]) }
 
@@ -102,8 +102,8 @@
 
   # Async connections need to be checked more carefully
   my $queue = $self->{queue} ||= [];
-  push @$queue, $dbh
-if $dbh->{Active} && (delete $dbh->{private_mojo_async} ? $dbh->ping : 1);
+  $dbh->{private_mojo_async} = undef if my $async = $dbh->{private_mojo_async};
+  push @$queue, $dbh if $dbh->{Active} && ($async ? $dbh->ping : 1);
   shift @$queue while @$queue > $self->max_connections;
 }
 




commit perl-Mojo-Pg for openSUSE:Factory

2019-07-23 Thread root
Hello community,

here is the log from the commit of package perl-Mojo-Pg for openSUSE:Factory 
checked in at 2019-07-23 22:38:37

Comparing /work/SRC/openSUSE:Factory/perl-Mojo-Pg (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Mojo-Pg.new.4126 (New)


Package is "perl-Mojo-Pg"

Tue Jul 23 22:38:37 2019 rev:18 rq:717836 version:4.14

Changes:

--- /work/SRC/openSUSE:Factory/perl-Mojo-Pg/perl-Mojo-Pg.changes
2019-01-28 20:49:50.921816349 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Mojo-Pg.new.4126/perl-Mojo-Pg.changes  
2019-07-23 22:38:38.426955742 +0200
@@ -1,0 +2,12 @@
+Tue Jul 23 05:19:15 UTC 2019 - Stephan Kulow 
+
+- updated to 4.14
+   see /usr/share/doc/packages/perl-Mojo-Pg/Changes
+
+  4.14  2019-07-22
+- Improved connection cache to be more than an order of magnitude faster 
for
+  blocking queries.
+- Fixed a bug in Mojo::Pg::PubSub where listen/unlisten did not work while
+  reconnecting.
+
+---

Old:

  Mojo-Pg-4.13.tar.gz

New:

  Mojo-Pg-4.14.tar.gz



Other differences:
--
++ perl-Mojo-Pg.spec ++
--- /var/tmp/diff_new_pack.CzAH1x/_old  2019-07-23 22:38:38.986955626 +0200
+++ /var/tmp/diff_new_pack.CzAH1x/_new  2019-07-23 22:38:38.986955626 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Mojo-Pg
-Version:4.13
+Version:4.14
 Release:0
 %define cpan_name Mojo-Pg
 Summary:Wrapper around DBD::Pg for using PostgreSql with Mojolicious

++ Mojo-Pg-4.13.tar.gz -> Mojo-Pg-4.14.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.13/Changes new/Mojo-Pg-4.14/Changes
--- old/Mojo-Pg-4.13/Changes2019-01-20 23:32:08.0 +0100
+++ new/Mojo-Pg-4.14/Changes2019-07-22 18:50:36.0 +0200
@@ -1,4 +1,10 @@
 
+4.14  2019-07-22
+  - Improved connection cache to be more than an order of magnitude faster for
+blocking queries.
+  - Fixed a bug in Mojo::Pg::PubSub where listen/unlisten did not work while
+reconnecting.
+
 4.13  2019-01-20
   - Added support for multi-column joins to SQL::Abstract::Pg. (rsindlin)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.13/META.json new/Mojo-Pg-4.14/META.json
--- old/Mojo-Pg-4.13/META.json  2019-01-20 23:33:32.0 +0100
+++ new/Mojo-Pg-4.14/META.json  2019-07-22 20:16:50.0 +0200
@@ -4,7 +4,7 @@
   "Sebastian Riedel "
],
"dynamic_config" : 0,
-   "generated_by" : "ExtUtils::MakeMaker version 7.34, CPAN::Meta::Converter 
version 2.150010",
+   "generated_by" : "ExtUtils::MakeMaker version 7.36, CPAN::Meta::Converter 
version 2.150010",
"license" : [
   "artistic_2"
],
@@ -57,6 +57,6 @@
   },
   "x_IRC" : "irc://irc.freenode.net/#mojo"
},
-   "version" : "4.13",
-   "x_serialization_backend" : "JSON::PP version 4.00"
+   "version" : "4.14",
+   "x_serialization_backend" : "JSON::PP version 4.04"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.13/META.yml new/Mojo-Pg-4.14/META.yml
--- old/Mojo-Pg-4.13/META.yml   2019-01-20 23:33:32.0 +0100
+++ new/Mojo-Pg-4.14/META.yml   2019-07-22 20:16:50.0 +0200
@@ -7,7 +7,7 @@
 configure_requires:
   ExtUtils::MakeMaker: '0'
 dynamic_config: 0
-generated_by: 'ExtUtils::MakeMaker version 7.34, CPAN::Meta::Converter version 
2.150010'
+generated_by: 'ExtUtils::MakeMaker version 7.36, CPAN::Meta::Converter version 
2.150010'
 license: artistic_2
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -30,5 +30,5 @@
   homepage: https://mojolicious.org
   license: http://www.opensource.org/licenses/artistic-license-2.0
   repository: https://github.com/mojolicious/mojo-pg.git
-version: '4.13'
+version: '4.14'
 x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.13/lib/Mojo/Pg/Database.pm 
new/Mojo-Pg-4.14/lib/Mojo/Pg/Database.pm
--- old/Mojo-Pg-4.13/lib/Mojo/Pg/Database.pm2018-11-22 21:26:38.0 
+0100
+++ new/Mojo-Pg-4.14/lib/Mojo/Pg/Database.pm2019-07-22 18:41:26.0 
+0200
@@ -135,8 +135,16 @@
 
 sub _notifications {
   my $self = shift;
-  my $dbh  = $self->dbh;
-  while (my $n = $dbh->pg_notifies) { $self->emit(notification => @$n) }
+
+  my $dbh = $self->dbh;
+  my $n;
+  return undef unless $n = $dbh->pg_notifies;
+  while ($n) {
+$self->emit(notification => @$n);
+$n = $dbh->pg_notifies;
+  }
+
+  return 1;
 }
 
 sub _unwatch {
@@ -152,6 +160,7 @@
   return if $self->{watching} || $self->{watching}++;
 
   my $dbh = $self->dbh;
+  $

commit perl-Mojo-Pg for openSUSE:Factory

2019-01-28 Thread root
Hello community,

here is the log from the commit of package perl-Mojo-Pg for openSUSE:Factory 
checked in at 2019-01-28 20:48:55

Comparing /work/SRC/openSUSE:Factory/perl-Mojo-Pg (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Mojo-Pg.new.28833 (New)


Package is "perl-Mojo-Pg"

Mon Jan 28 20:48:55 2019 rev:17 rq:668909 version:4.13

Changes:

--- /work/SRC/openSUSE:Factory/perl-Mojo-Pg/perl-Mojo-Pg.changes
2018-12-12 17:27:09.582977735 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Mojo-Pg.new.28833/perl-Mojo-Pg.changes 
2019-01-28 20:49:50.921816349 +0100
@@ -1,0 +2,9 @@
+Mon Jan 21 06:22:06 UTC 2019 - Stephan Kulow 
+
+- updated to 4.13
+   see /usr/share/doc/packages/perl-Mojo-Pg/Changes
+
+  4.13  2019-01-20
+- Added support for multi-column joins to SQL::Abstract::Pg. (rsindlin)
+
+---

Old:

  Mojo-Pg-4.12.tar.gz

New:

  Mojo-Pg-4.13.tar.gz



Other differences:
--
++ perl-Mojo-Pg.spec ++
--- /var/tmp/diff_new_pack.I4AZyk/_old  2019-01-28 20:49:51.493815747 +0100
+++ /var/tmp/diff_new_pack.I4AZyk/_new  2019-01-28 20:49:51.497815742 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Mojo-Pg
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 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-Mojo-Pg
-Version:4.12
+Version:4.13
 Release:0
 %define cpan_name Mojo-Pg
 Summary:Wrapper around DBD::Pg for using PostgreSql with Mojolicious

++ Mojo-Pg-4.12.tar.gz -> Mojo-Pg-4.13.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.12/Changes new/Mojo-Pg-4.13/Changes
--- old/Mojo-Pg-4.12/Changes2018-11-24 12:41:14.0 +0100
+++ new/Mojo-Pg-4.13/Changes2019-01-20 23:32:08.0 +0100
@@ -1,4 +1,7 @@
 
+4.13  2019-01-20
+  - Added support for multi-column joins to SQL::Abstract::Pg. (rsindlin)
+
 4.12  2018-11-24
   - Added reconnect_interval attribute to Mojo::Pg::PubSub. (jberger)
   - Added db method to Mojo::Pg::PubSub. (jberger)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.12/META.json new/Mojo-Pg-4.13/META.json
--- old/Mojo-Pg-4.12/META.json  2018-11-24 18:05:16.0 +0100
+++ new/Mojo-Pg-4.13/META.json  2019-01-20 23:33:32.0 +0100
@@ -57,6 +57,6 @@
   },
   "x_IRC" : "irc://irc.freenode.net/#mojo"
},
-   "version" : "4.12",
-   "x_serialization_backend" : "JSON::PP version 2.97001"
+   "version" : "4.13",
+   "x_serialization_backend" : "JSON::PP version 4.00"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.12/META.yml new/Mojo-Pg-4.13/META.yml
--- old/Mojo-Pg-4.12/META.yml   2018-11-24 18:05:16.0 +0100
+++ new/Mojo-Pg-4.13/META.yml   2019-01-20 23:33:32.0 +0100
@@ -30,5 +30,5 @@
   homepage: https://mojolicious.org
   license: http://www.opensource.org/licenses/artistic-license-2.0
   repository: https://github.com/mojolicious/mojo-pg.git
-version: '4.12'
+version: '4.13'
 x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.12/lib/Mojo/Pg.pm 
new/Mojo-Pg-4.13/lib/Mojo/Pg.pm
--- old/Mojo-Pg-4.12/lib/Mojo/Pg.pm 2018-11-24 18:03:33.0 +0100
+++ new/Mojo-Pg-4.13/lib/Mojo/Pg.pm 2019-01-20 23:32:16.0 +0100
@@ -34,7 +34,7 @@
 has [qw(password username)] => '';
 has pubsub => sub { Mojo::Pg::PubSub->new(pg => shift) };
 
-our $VERSION = '4.12';
+our $VERSION = '4.13';
 
 sub db { $_[0]->database_class->new(dbh => $_[0]->_prepare, pg => $_[0]) }
 
@@ -552,6 +552,8 @@
 
 Hernan Lopes
 
+Joel Berger
+
 Matt S Trout
 
 Peter Rabbitson
@@ -562,7 +564,7 @@
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (C) 2014-2018, Sebastian Riedel and others.
+Copyright (C) 2014-2019, Sebastian Riedel and others.
 
 This program is free software, you can redistribute it and/or modify it under
 the terms of the Artistic License version 2.0.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.12/lib/SQL/Abstract/Pg.pm 
new/Mojo-Pg-4.13/lib/SQL/Abstract/Pg.pm
--- old/Mojo-Pg-4.12/lib/SQL/Abstract/Pg.pm 2018-11-22 21:26:39.0 
+0100
+++ new/Mojo-Pg-4.13/lib/SQL/Abstract/Pg.pm 2019-01-20 23:27:46.0 
+0100
@@ -172,14 +172,18 @@
   my $sep = $self->{name_sep} // '';
   for my $join (@join) {
 puke 'join must be in

commit perl-Mojo-Pg for openSUSE:Factory

2018-12-12 Thread root
Hello community,

here is the log from the commit of package perl-Mojo-Pg for openSUSE:Factory 
checked in at 2018-12-12 17:27:07

Comparing /work/SRC/openSUSE:Factory/perl-Mojo-Pg (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Mojo-Pg.new.28833 (New)


Package is "perl-Mojo-Pg"

Wed Dec 12 17:27:07 2018 rev:16 rq:655784 version:4.12

Changes:

--- /work/SRC/openSUSE:Factory/perl-Mojo-Pg/perl-Mojo-Pg.changes
2018-11-15 12:40:43.874230828 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Mojo-Pg.new.28833/perl-Mojo-Pg.changes 
2018-12-12 17:27:09.582977735 +0100
@@ -1,0 +2,11 @@
+Thu Dec  6 15:54:58 UTC 2018 - Stephan Kulow 
+
+- updated to 4.12
+   see /usr/share/doc/packages/perl-Mojo-Pg/Changes
+
+  4.12  2018-11-24
+- Added reconnect_interval attribute to Mojo::Pg::PubSub. (jberger)
+- Added db method to Mojo::Pg::PubSub. (jberger)
+- Fixed reconnect logic in Mojo::Pg::PubSub. (jberger)
+
+---

Old:

  Mojo-Pg-4.11.tar.gz

New:

  Mojo-Pg-4.12.tar.gz



Other differences:
--
++ perl-Mojo-Pg.spec ++
--- /var/tmp/diff_new_pack.6OLbGt/_old  2018-12-12 17:27:10.270976862 +0100
+++ /var/tmp/diff_new_pack.6OLbGt/_new  2018-12-12 17:27:10.270976862 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Mojo-Pg
-Version:4.11
+Version:4.12
 Release:0
 %define cpan_name Mojo-Pg
 Summary:Wrapper around DBD::Pg for using PostgreSql with Mojolicious
@@ -54,10 +54,10 @@
 
 %build
 perl Makefile.PL INSTALLDIRS=vendor
-%{__make} %{?_smp_mflags}
+make %{?_smp_mflags}
 
 %check
-%{__make} test
+make test
 
 %install
 %perl_make_install

++ Mojo-Pg-4.11.tar.gz -> Mojo-Pg-4.12.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.11/Changes new/Mojo-Pg-4.12/Changes
--- old/Mojo-Pg-4.11/Changes2018-10-18 01:16:48.0 +0200
+++ new/Mojo-Pg-4.12/Changes2018-11-24 12:41:14.0 +0100
@@ -1,4 +1,9 @@
 
+4.12  2018-11-24
+  - Added reconnect_interval attribute to Mojo::Pg::PubSub. (jberger)
+  - Added db method to Mojo::Pg::PubSub. (jberger)
+  - Fixed reconnect logic in Mojo::Pg::PubSub. (jberger)
+
 4.11  2018-10-18
   - Improved various attributes to use new Mojolicious 8.03 features to avoid
 memory leaks.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.11/META.json new/Mojo-Pg-4.12/META.json
--- old/Mojo-Pg-4.11/META.json  2018-10-18 01:17:38.0 +0200
+++ new/Mojo-Pg-4.12/META.json  2018-11-24 18:05:16.0 +0100
@@ -57,6 +57,6 @@
   },
   "x_IRC" : "irc://irc.freenode.net/#mojo"
},
-   "version" : "4.11",
+   "version" : "4.12",
"x_serialization_backend" : "JSON::PP version 2.97001"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.11/META.yml new/Mojo-Pg-4.12/META.yml
--- old/Mojo-Pg-4.11/META.yml   2018-10-18 01:17:38.0 +0200
+++ new/Mojo-Pg-4.12/META.yml   2018-11-24 18:05:16.0 +0100
@@ -30,5 +30,5 @@
   homepage: https://mojolicious.org
   license: http://www.opensource.org/licenses/artistic-license-2.0
   repository: https://github.com/mojolicious/mojo-pg.git
-version: '4.11'
+version: '4.12'
 x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.11/lib/Mojo/Pg/Database.pm 
new/Mojo-Pg-4.12/lib/Mojo/Pg/Database.pm
--- old/Mojo-Pg-4.11/lib/Mojo/Pg/Database.pm2018-10-18 01:15:05.0 
+0200
+++ new/Mojo-Pg-4.12/lib/Mojo/Pg/Database.pm2018-11-22 21:26:38.0 
+0100
@@ -11,7 +11,7 @@
 use Mojo::Util 'monkey_patch';
 
 has 'dbh';
-has pg => undef, weak => 1;
+has pg=> undef, weak => 1;
 has results_class => 'Mojo::Pg::Results';
 
 for my $name (qw(delete insert select update)) {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.11/lib/Mojo/Pg/Migrations.pm 
new/Mojo-Pg-4.12/lib/Mojo/Pg/Migrations.pm
--- old/Mojo-Pg-4.11/lib/Mojo/Pg/Migrations.pm  2018-10-18 01:11:43.0 
+0200
+++ new/Mojo-Pg-4.12/lib/Mojo/Pg/Migrations.pm  2018-11-22 21:26:39.0 
+0100
@@ -9,7 +9,7 @@
 use constant DEBUG => $ENV{MOJO_MIGRATIONS_DEBUG} || 0;
 
 has name => 'migrations';
-has pg => undef, weak => 1;
+has pg   => undef, weak => 1;
 
 sub active { $_[0]->_active($_[0]->pg->db) }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.11/lib/Mojo/Pg/PubSub.pm 
new/Mojo-Pg-4.12/lib/Mojo/Pg/PubSub.pm
--- old/Mojo-Pg-4.11/lib/Mojo/Pg/PubSub.pm  2018-10-18 01:14:49.0 
+0200
+++ new/

commit perl-Mojo-Pg for openSUSE:Factory

2018-11-15 Thread root
Hello community,

here is the log from the commit of package perl-Mojo-Pg for openSUSE:Factory 
checked in at 2018-11-15 12:40:42

Comparing /work/SRC/openSUSE:Factory/perl-Mojo-Pg (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Mojo-Pg.new (New)


Package is "perl-Mojo-Pg"

Thu Nov 15 12:40:42 2018 rev:15 rq:648967 version:4.11

Changes:

--- /work/SRC/openSUSE:Factory/perl-Mojo-Pg/perl-Mojo-Pg.changes
2018-11-12 09:41:06.597216061 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Mojo-Pg.new/perl-Mojo-Pg.changes   
2018-11-15 12:40:43.874230828 +0100
@@ -1,0 +2,5 @@
+Fri Nov  9 09:39:26 UTC 2018 - Jan Engelhardt 
+
+- Replace useless summary.
+
+---



Other differences:
--
++ perl-Mojo-Pg.spec ++
--- /var/tmp/diff_new_pack.ark2ER/_old  2018-11-15 12:40:45.050229487 +0100
+++ /var/tmp/diff_new_pack.ark2ER/_new  2018-11-15 12:40:45.054229483 +0100
@@ -20,7 +20,7 @@
 Version:4.11
 Release:0
 %define cpan_name Mojo-Pg
-Summary:Mojolicious ♥ PostgreSQL
+Summary:Wrapper around DBD::Pg for using PostgreSql with Mojolicious
 License:Artistic-2.0
 Group:  Development/Libraries/Perl
 Url:https://metacpan.org/release/%{cpan_name}

++ cpanspec.yml ++
--- /var/tmp/diff_new_pack.ark2ER/_old  2018-11-15 12:40:45.074229460 +0100
+++ /var/tmp/diff_new_pack.ark2ER/_new  2018-11-15 12:40:45.078229455 +0100
@@ -1,8 +1,8 @@
 ---
+summary: Wrapper around DBD::Pg for using PostgreSql with Mojolicious
 #description_paragraphs: 3
 #description: |-
 #  override description from CPAN
-#summary: override summary from CPAN
 #no_testing: broken upstream
 #sources:
 #  - source1




commit perl-Mojo-Pg for openSUSE:Factory

2018-11-12 Thread root
Hello community,

here is the log from the commit of package perl-Mojo-Pg for openSUSE:Factory 
checked in at 2018-11-12 09:41:03

Comparing /work/SRC/openSUSE:Factory/perl-Mojo-Pg (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Mojo-Pg.new (New)


Package is "perl-Mojo-Pg"

Mon Nov 12 09:41:03 2018 rev:14 rq:647369 version:4.11

Changes:

--- /work/SRC/openSUSE:Factory/perl-Mojo-Pg/perl-Mojo-Pg.changes
2018-09-24 13:12:09.241823405 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Mojo-Pg.new/perl-Mojo-Pg.changes   
2018-11-12 09:41:06.597216061 +0100
@@ -1,0 +2,10 @@
+Thu Nov  8 06:37:23 UTC 2018 - Stephan Kulow 
+
+- updated to 4.11
+   see /usr/share/doc/packages/perl-Mojo-Pg/Changes
+
+  4.11  2018-10-18
+- Improved various attributes to use new Mojolicious 8.03 features to avoid
+  memory leaks.
+
+---

Old:

  Mojo-Pg-4.10.tar.gz

New:

  Mojo-Pg-4.11.tar.gz



Other differences:
--
++ perl-Mojo-Pg.spec ++
--- /var/tmp/diff_new_pack.WEzY1V/_old  2018-11-12 09:41:07.181215226 +0100
+++ /var/tmp/diff_new_pack.WEzY1V/_new  2018-11-12 09:41:07.185215220 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Mojo-Pg
-Version:4.10
+Version:4.11
 Release:0
 %define cpan_name Mojo-Pg
 Summary:Mojolicious ♥ PostgreSQL
@@ -31,10 +31,10 @@
 BuildRequires:  perl
 BuildRequires:  perl-macros
 BuildRequires:  perl(DBD::Pg) >= 3.005001
-BuildRequires:  perl(Mojolicious) >= 7.53
+BuildRequires:  perl(Mojolicious) >= 8.03
 BuildRequires:  perl(SQL::Abstract) >= 1.86
 Requires:   perl(DBD::Pg) >= 3.005001
-Requires:   perl(Mojolicious) >= 7.53
+Requires:   perl(Mojolicious) >= 8.03
 Requires:   perl(SQL::Abstract) >= 1.86
 %{perl_requires}
 
@@ -53,7 +53,7 @@
 find . -type f ! -name \*.pl -print0 | xargs -0 chmod 644
 
 %build
-%{__perl} Makefile.PL INSTALLDIRS=vendor
+perl Makefile.PL INSTALLDIRS=vendor
 %{__make} %{?_smp_mflags}
 
 %check

++ Mojo-Pg-4.10.tar.gz -> Mojo-Pg-4.11.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.10/Changes new/Mojo-Pg-4.11/Changes
--- old/Mojo-Pg-4.10/Changes2018-09-15 00:20:14.0 +0200
+++ new/Mojo-Pg-4.11/Changes2018-10-18 01:16:48.0 +0200
@@ -1,4 +1,8 @@
 
+4.11  2018-10-18
+  - Improved various attributes to use new Mojolicious 8.03 features to avoid
+memory leaks.
+
 4.10  2018-09-15
   - Updated project metadata.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.10/META.json new/Mojo-Pg-4.11/META.json
--- old/Mojo-Pg-4.10/META.json  2018-09-15 00:21:06.0 +0200
+++ new/Mojo-Pg-4.11/META.json  2018-10-18 01:17:38.0 +0200
@@ -35,7 +35,7 @@
   "runtime" : {
  "requires" : {
 "DBD::Pg" : "3.005001",
-"Mojolicious" : "7.53",
+"Mojolicious" : "8.03",
 "SQL::Abstract" : "1.86",
 "perl" : "5.010001"
  }
@@ -57,6 +57,6 @@
   },
   "x_IRC" : "irc://irc.freenode.net/#mojo"
},
-   "version" : "4.10",
+   "version" : "4.11",
"x_serialization_backend" : "JSON::PP version 2.97001"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.10/META.yml new/Mojo-Pg-4.11/META.yml
--- old/Mojo-Pg-4.10/META.yml   2018-09-15 00:21:06.0 +0200
+++ new/Mojo-Pg-4.11/META.yml   2018-10-18 01:17:38.0 +0200
@@ -21,7 +21,7 @@
 - t
 requires:
   DBD::Pg: '3.005001'
-  Mojolicious: '7.53'
+  Mojolicious: '8.03'
   SQL::Abstract: '1.86'
   perl: '5.010001'
 resources:
@@ -30,5 +30,5 @@
   homepage: https://mojolicious.org
   license: http://www.opensource.org/licenses/artistic-license-2.0
   repository: https://github.com/mojolicious/mojo-pg.git
-version: '4.10'
+version: '4.11'
 x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.10/Makefile.PL new/Mojo-Pg-4.11/Makefile.PL
--- old/Mojo-Pg-4.10/Makefile.PL2018-09-12 21:22:09.0 +0200
+++ new/Mojo-Pg-4.11/Makefile.PL2018-10-18 01:10:16.0 +0200
@@ -30,6 +30,6 @@
 },
   },
   PREREQ_PM =>
-{'DBD::Pg' => 3.005001, Mojolicious => '7.53', 'SQL::Abstract' => '1.86'},
+{'DBD::Pg' => 3.005001, Mojolicious => '8.03', 'SQL::Abstract' => '1.86'},
   test => {TESTS => 't/*.t t/*/*.t'}
 );
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.10/lib/Mojo/Pg/Database.pm 
new/Mojo-Pg-4.11/lib/Mojo/Pg/Database.pm
--- old/Mojo-Pg-4.10/lib/Mojo/Pg/Database.pm2018-08-02 01:00:59.

commit perl-Mojo-Pg for openSUSE:Factory

2018-09-24 Thread root
Hello community,

here is the log from the commit of package perl-Mojo-Pg for openSUSE:Factory 
checked in at 2018-09-24 13:12:00

Comparing /work/SRC/openSUSE:Factory/perl-Mojo-Pg (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Mojo-Pg.new (New)


Package is "perl-Mojo-Pg"

Mon Sep 24 13:12:00 2018 rev:13 rq:636834 version:4.10

Changes:

--- /work/SRC/openSUSE:Factory/perl-Mojo-Pg/perl-Mojo-Pg.changes
2018-08-31 10:43:43.859151476 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Mojo-Pg.new/perl-Mojo-Pg.changes   
2018-09-24 13:12:09.241823405 +0200
@@ -1,0 +2,6 @@
+Wed Sep 19 05:37:41 UTC 2018 - Stephan Kulow 
+
+- updated to 4.10
+   see /usr/share/doc/packages/perl-Mojo-Pg/Changes
+
+---

Old:

  Mojo-Pg-4.09.tar.gz

New:

  Mojo-Pg-4.10.tar.gz



Other differences:
--
++ perl-Mojo-Pg.spec ++
--- /var/tmp/diff_new_pack.rG6adT/_old  2018-09-24 13:12:09.641822700 +0200
+++ /var/tmp/diff_new_pack.rG6adT/_new  2018-09-24 13:12:09.645822693 +0200
@@ -12,18 +12,18 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 Name:   perl-Mojo-Pg
-Version:4.09
+Version:4.10
 Release:0
 %define cpan_name Mojo-Pg
 Summary:Mojolicious ♥ PostgreSQL
 License:Artistic-2.0
 Group:  Development/Libraries/Perl
-Url:http://search.cpan.org/dist/Mojo-Pg/
+Url:https://metacpan.org/release/%{cpan_name}
 Source0:
https://cpan.metacpan.org/authors/id/S/SR/SRI/%{cpan_name}-%{version}.tar.gz
 Source1:cpanspec.yml
 BuildArch:  noarch

++ Mojo-Pg-4.09.tar.gz -> Mojo-Pg-4.10.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.09/Changes new/Mojo-Pg-4.10/Changes
--- old/Mojo-Pg-4.09/Changes2018-08-02 01:02:41.0 +0200
+++ new/Mojo-Pg-4.10/Changes2018-09-15 00:20:14.0 +0200
@@ -1,4 +1,7 @@
 
+4.10  2018-09-15
+  - Updated project metadata.
+
 4.09  2018-08-02
   - Added support for -json unary op to SQL::Abstract::Pg.
   - Added support for multi-column unique constraints in upserts to
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.09/META.json new/Mojo-Pg-4.10/META.json
--- old/Mojo-Pg-4.09/META.json  2018-08-02 01:03:45.0 +0200
+++ new/Mojo-Pg-4.10/META.json  2018-09-15 00:21:06.0 +0200
@@ -44,7 +44,7 @@
"release_status" : "stable",
"resources" : {
   "bugtracker" : {
- "web" : "https://github.com/kraih/mojo-pg/issues";
+ "web" : "https://github.com/mojolicious/mojo-pg/issues";
   },
   "homepage" : "https://mojolicious.org";,
   "license" : [
@@ -52,11 +52,11 @@
   ],
   "repository" : {
  "type" : "git",
- "url" : "https://github.com/kraih/mojo-pg.git";,
- "web" : "https://github.com/kraih/mojo-pg";
+ "url" : "https://github.com/mojolicious/mojo-pg.git";,
+ "web" : "https://github.com/mojolicious/mojo-pg";
   },
-  "x_IRC" : "irc://irc.perl.org/#mojo"
+  "x_IRC" : "irc://irc.freenode.net/#mojo"
},
-   "version" : "4.09",
+   "version" : "4.10",
"x_serialization_backend" : "JSON::PP version 2.97001"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.09/META.yml new/Mojo-Pg-4.10/META.yml
--- old/Mojo-Pg-4.09/META.yml   2018-08-02 01:03:45.0 +0200
+++ new/Mojo-Pg-4.10/META.yml   2018-09-15 00:21:06.0 +0200
@@ -25,10 +25,10 @@
   SQL::Abstract: '1.86'
   perl: '5.010001'
 resources:
-  IRC: irc://irc.perl.org/#mojo
-  bugtracker: https://github.com/kraih/mojo-pg/issues
+  IRC: irc://irc.freenode.net/#mojo
+  bugtracker: https://github.com/mojolicious/mojo-pg/issues
   homepage: https://mojolicious.org
   license: http://www.opensource.org/licenses/artistic-license-2.0
-  repository: https://github.com/kraih/mojo-pg.git
-version: '4.09'
+  repository: https://github.com/mojolicious/mojo-pg.git
+version: '4.10'
 x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.09/Makefile.PL new/Mojo-Pg-4.10/Makefile.PL
--- old/Mojo-Pg-4.09/Makefile.PL2018-08-02 00:32:41.0 +0200
+++ new/Mojo-Pg-4.10/Makefile.PL2018-09-12 21:22:09.0 +0200
@@ -18,15 +18,15 @@
 no_index   => {directory => ['examples', 't']},
 prereqs=> {runtime => {require

commit perl-Mojo-Pg for openSUSE:Factory

2018-08-31 Thread root
Hello community,

here is the log from the commit of package perl-Mojo-Pg for openSUSE:Factory 
checked in at 2018-08-31 10:42:33

Comparing /work/SRC/openSUSE:Factory/perl-Mojo-Pg (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Mojo-Pg.new (New)


Package is "perl-Mojo-Pg"

Fri Aug 31 10:42:33 2018 rev:12 rq:631274 version:4.09

Changes:

--- /work/SRC/openSUSE:Factory/perl-Mojo-Pg/perl-Mojo-Pg.changes
2018-02-03 15:42:25.601583722 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Mojo-Pg.new/perl-Mojo-Pg.changes   
2018-08-31 10:43:43.859151476 +0200
@@ -1,0 +2,6 @@
+Fri Aug  3 05:37:58 UTC 2018 - co...@suse.com
+
+- updated to 4.09
+   see /usr/share/doc/packages/perl-Mojo-Pg/Changes
+
+---

Old:

  Mojo-Pg-4.08.tar.gz

New:

  Mojo-Pg-4.09.tar.gz



Other differences:
--
++ perl-Mojo-Pg.spec ++
--- /var/tmp/diff_new_pack.iud2tz/_old  2018-08-31 10:43:44.271151965 +0200
+++ /var/tmp/diff_new_pack.iud2tz/_new  2018-08-31 10:43:44.271151965 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Mojo-Pg
-Version:4.08
+Version:4.09
 Release:0
 %define cpan_name Mojo-Pg
 Summary:Mojolicious ♥ PostgreSQL
@@ -32,16 +32,16 @@
 BuildRequires:  perl-macros
 BuildRequires:  perl(DBD::Pg) >= 3.005001
 BuildRequires:  perl(Mojolicious) >= 7.53
-BuildRequires:  perl(SQL::Abstract) >= 1.85
+BuildRequires:  perl(SQL::Abstract) >= 1.86
 Requires:   perl(DBD::Pg) >= 3.005001
 Requires:   perl(Mojolicious) >= 7.53
-Requires:   perl(SQL::Abstract) >= 1.85
+Requires:   perl(SQL::Abstract) >= 1.86
 %{perl_requires}
 
 %description
 Mojo::Pg is a tiny wrapper around DBD::Pg that makes at
 http://www.postgresql.org a lot of fun to use with the at
-http://mojolicious.org real-time web framework. Perform queries blocking
+https://mojolicious.org real-time web framework. Perform queries blocking
 and non-blocking, use all at
 https://www.postgresql.org/docs/current/static/sql.html PostgreSQL has to
 offer, generate CRUD queries from data structures, manage your database

++ Mojo-Pg-4.08.tar.gz -> Mojo-Pg-4.09.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.08/Changes new/Mojo-Pg-4.09/Changes
--- old/Mojo-Pg-4.08/Changes2018-01-29 18:59:30.0 +0100
+++ new/Mojo-Pg-4.09/Changes2018-08-02 01:02:41.0 +0200
@@ -1,4 +1,11 @@
 
+4.09  2018-08-02
+  - Added support for -json unary op to SQL::Abstract::Pg.
+  - Added support for multi-column unique constraints in upserts to
+SQL::Abstract::Pg.
+  - Added support for literal SQL with bind values in select fields to
+SQL::Abstract::Pg.
+
 4.08  2018-01-29
   - Improved on_conflict option of insert and insert_p methods in
 Mojo::Pg::Database with a shortcut for simple conflict targets.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.08/META.json new/Mojo-Pg-4.09/META.json
--- old/Mojo-Pg-4.08/META.json  2018-01-29 19:29:36.0 +0100
+++ new/Mojo-Pg-4.09/META.json  2018-08-02 01:03:45.0 +0200
@@ -4,7 +4,7 @@
   "Sebastian Riedel "
],
"dynamic_config" : 0,
-   "generated_by" : "ExtUtils::MakeMaker version 7.3, CPAN::Meta::Converter 
version 2.150010",
+   "generated_by" : "ExtUtils::MakeMaker version 7.34, CPAN::Meta::Converter 
version 2.150010",
"license" : [
   "artistic_2"
],
@@ -36,7 +36,7 @@
  "requires" : {
 "DBD::Pg" : "3.005001",
 "Mojolicious" : "7.53",
-"SQL::Abstract" : "1.85",
+"SQL::Abstract" : "1.86",
 "perl" : "5.010001"
  }
   }
@@ -46,7 +46,7 @@
   "bugtracker" : {
  "web" : "https://github.com/kraih/mojo-pg/issues";
   },
-  "homepage" : "http://mojolicious.org";,
+  "homepage" : "https://mojolicious.org";,
   "license" : [
  "http://www.opensource.org/licenses/artistic-license-2.0";
   ],
@@ -57,6 +57,6 @@
   },
   "x_IRC" : "irc://irc.perl.org/#mojo"
},
-   "version" : "4.08",
+   "version" : "4.09",
"x_serialization_backend" : "JSON::PP version 2.97001"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.08/META.yml new/Mojo-Pg-4.09/META.yml
--- old/Mojo-Pg-4.08/META.yml   2018-01-29 19:29:36.0 +0100
+++ new/Mojo-Pg-4.09/META.yml   2018-08-02 01:03:45.0 +0200
@@ -7,7 +7,7 @@
 configure_requires:
   ExtUtils::MakeMaker: '0'
 dynamic_config: 0
-generated_by: 'ExtUtils::MakeMaker version 7.3, CPAN::Meta::Converter version 
2.150010'
+generated_by: 'ExtUtils::MakeMaker version 7.34, CPAN::Meta::Converter version 
2.

commit perl-Mojo-Pg for openSUSE:Factory

2018-02-03 Thread root
Hello community,

here is the log from the commit of package perl-Mojo-Pg for openSUSE:Factory 
checked in at 2018-02-03 15:42:23

Comparing /work/SRC/openSUSE:Factory/perl-Mojo-Pg (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Mojo-Pg.new (New)


Package is "perl-Mojo-Pg"

Sat Feb  3 15:42:23 2018 rev:11 rq:571366 version:4.08

Changes:

--- /work/SRC/openSUSE:Factory/perl-Mojo-Pg/perl-Mojo-Pg.changes
2018-01-26 13:39:08.326305707 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Mojo-Pg.new/perl-Mojo-Pg.changes   
2018-02-03 15:42:25.601583722 +0100
@@ -1,0 +2,35 @@
+Wed Jan 31 12:44:52 UTC 2018 - co...@suse.com
+
+- updated to 4.08
+   see /usr/share/doc/packages/perl-Mojo-Pg/Changes
+
+  4.08  2018-01-29
+- Improved on_conflict option of insert and insert_p methods in
+  Mojo::Pg::Database with a shortcut for simple conflict targets.
+  
+  4.07  2018-01-28
+- Added support for "JOIN" to select and select_p methods in
+  Mojo::Pg::Database.
+- Added support for field aliases to select and select_p methods in
+  Mojo::Pg::Database.
+- Added support for having option to select and select_p methods in
+  Mojo::Pg::Database.
+- Improved on_conflict option of insert and insert_p methods in
+  Mojo::Pg::Database with shortcuts for "ON CONFLICT DO UPDATE SET" and
+  "ON CONFLICT DO NOTHING".
+- Improved for option of select and select_p methods in Mojo::Pg::Database
+  with a shortcut for "FOR UPDATE".
+  
+  4.06  2018-01-27
+- Added support for on_conflict option to insert and insert_p methods in
+  Mojo::Pg::Database.
+- Updated SQL::Abstract requirement to 1.84.
+- Improved error messages generated by SQL::Abstract::Pg to be compatible 
with
+  SQL::Abstract.
+  
+  4.05  2018-01-26
+- Added support for for, group_by, limit, offset and order_by options to
+  select and select_p methods in Mojo::Pg::Database.
+- Added module SQL::Abstract::Pg.
+
+---

Old:

  Mojo-Pg-4.04.tar.gz

New:

  Mojo-Pg-4.08.tar.gz



Other differences:
--
++ perl-Mojo-Pg.spec ++
--- /var/tmp/diff_new_pack.Moz5JA/_old  2018-02-03 15:42:26.129559063 +0100
+++ /var/tmp/diff_new_pack.Moz5JA/_new  2018-02-03 15:42:26.133558876 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Mojo-Pg
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 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-Mojo-Pg
-Version:4.04
+Version:4.08
 Release:0
 %define cpan_name Mojo-Pg
 Summary:Mojolicious ♥ PostgreSQL
@@ -32,10 +32,10 @@
 BuildRequires:  perl-macros
 BuildRequires:  perl(DBD::Pg) >= 3.005001
 BuildRequires:  perl(Mojolicious) >= 7.53
-BuildRequires:  perl(SQL::Abstract) >= 1.81
+BuildRequires:  perl(SQL::Abstract) >= 1.85
 Requires:   perl(DBD::Pg) >= 3.005001
 Requires:   perl(Mojolicious) >= 7.53
-Requires:   perl(SQL::Abstract) >= 1.81
+Requires:   perl(SQL::Abstract) >= 1.85
 %{perl_requires}
 
 %description

++ Mojo-Pg-4.04.tar.gz -> Mojo-Pg-4.08.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.04/Changes new/Mojo-Pg-4.08/Changes
--- old/Mojo-Pg-4.04/Changes2017-12-16 16:24:58.0 +0100
+++ new/Mojo-Pg-4.08/Changes2018-01-29 18:59:30.0 +0100
@@ -1,4 +1,33 @@
 
+4.08  2018-01-29
+  - Improved on_conflict option of insert and insert_p methods in
+Mojo::Pg::Database with a shortcut for simple conflict targets.
+
+4.07  2018-01-28
+  - Added support for "JOIN" to select and select_p methods in
+Mojo::Pg::Database.
+  - Added support for field aliases to select and select_p methods in
+Mojo::Pg::Database.
+  - Added support for having option to select and select_p methods in
+Mojo::Pg::Database.
+  - Improved on_conflict option of insert and insert_p methods in
+Mojo::Pg::Database with shortcuts for "ON CONFLICT DO UPDATE SET" and
+"ON CONFLICT DO NOTHING".
+  - Improved for option of select and select_p methods in Mojo::Pg::Database
+with a shortcut for "FOR UPDATE".
+
+4.06  2018-01-27
+  - Added support for on_conflict option to insert and insert_p methods in
+Mojo::Pg::Database.
+  - Updated SQL::Abstract requirement to 1.84.
+  - Improved error messages generated by SQL::Abstract::Pg to be compatible 
with
+SQL::Abstract.
+
+4.05  2018-01-26
+  - Added support for for, group_by, limit, offset and order_by options to
+select and select_p methods i

commit perl-Mojo-Pg for openSUSE:Factory

2018-01-26 Thread root
Hello community,

here is the log from the commit of package perl-Mojo-Pg for openSUSE:Factory 
checked in at 2018-01-26 13:39:07

Comparing /work/SRC/openSUSE:Factory/perl-Mojo-Pg (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Mojo-Pg.new (New)


Package is "perl-Mojo-Pg"

Fri Jan 26 13:39:07 2018 rev:10 rq:569389 version:4.04

Changes:

--- /work/SRC/openSUSE:Factory/perl-Mojo-Pg/perl-Mojo-Pg.changes
2017-12-20 10:40:31.836092811 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Mojo-Pg.new/perl-Mojo-Pg.changes   
2018-01-26 13:39:08.326305707 +0100
@@ -13,12 +12,0 @@
-Tue Nov  7 06:40:47 UTC 2017 - co...@suse.com
-
-- updated to 4.03
-   see /usr/share/doc/packages/perl-Mojo-Pg/Changes
-

-Mon Nov  6 06:56:30 UTC 2017 - co...@suse.com
-
-- updated to 4.03
-   see /usr/share/doc/packages/perl-Mojo-Pg/Changes
-




Other differences:
--



commit perl-Mojo-Pg for openSUSE:Factory

2017-12-20 Thread root
Hello community,

here is the log from the commit of package perl-Mojo-Pg for openSUSE:Factory 
checked in at 2017-12-20 10:40:27

Comparing /work/SRC/openSUSE:Factory/perl-Mojo-Pg (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Mojo-Pg.new (New)


Package is "perl-Mojo-Pg"

Wed Dec 20 10:40:27 2017 rev:9 rq:558583 version:4.04

Changes:

--- /work/SRC/openSUSE:Factory/perl-Mojo-Pg/perl-Mojo-Pg.changes
2017-11-11 14:19:40.523047597 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Mojo-Pg.new/perl-Mojo-Pg.changes   
2017-12-20 10:40:31.836092811 +0100
@@ -1,0 +2,11 @@
+Mon Dec 18 06:36:50 UTC 2017 - co...@suse.com
+
+- updated to 4.04
+   see /usr/share/doc/packages/perl-Mojo-Pg/Changes
+
+  4.04  2017-12-16
+- Added db attribute to Mojo::Pg::Results.
+- Added sql_for method to Mojo::Pg::Migrations.
+- Fixed a bug that could cause connections to be cached for reuse too 
early.
+
+---

Old:

  Mojo-Pg-4.03.tar.gz

New:

  Mojo-Pg-4.04.tar.gz



Other differences:
--
++ perl-Mojo-Pg.spec ++
--- /var/tmp/diff_new_pack.kIxgj7/_old  2017-12-20 10:40:32.556040684 +0100
+++ /var/tmp/diff_new_pack.kIxgj7/_new  2017-12-20 10:40:32.560040394 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Mojo-Pg
-Version:4.03
+Version:4.04
 Release:0
 %define cpan_name Mojo-Pg
 Summary:Mojolicious ♥ PostgreSQL
@@ -48,48 +48,6 @@
 schema with migrations and build scalable real-time web applications with
 the publish/subscribe pattern.
 
-Database and statement handles are cached automatically, and will be reused
-transparently to increase performance. You can handle connection timeouts
-gracefully by holding on to them only for short amounts of time.
-
-  use Mojolicious::Lite;
-  use Mojo::Pg;
-
-  helper pg => sub { state $pg = Mojo::Pg->new('postgresql://postgres@/test') 
};
-
-  get '/' => sub {
-my $c  = shift;
-my $db = $c->pg->db;
-$c->render(json => $db->query('select now() as now')->hash);
-  };
-
-  app->start;
-
-In this example application, we create a 'pg' helper to store a Mojo::Pg
-object. Our action calls that helper and uses the method Mojo::Pg/"db" to
-dequeue a Mojo::Pg::Database object from the connection pool. Then we use
-the method Mojo::Pg::Database/"query" to execute an at
-http://www.postgresql.org/docs/current/static/sql.html statement, which
-returns a Mojo::Pg::Results object. And finally we call the method
-Mojo::Pg::Results/"hash" to retrieve the first row as a hash reference.
-
-While all I/O operations are performed blocking, you can wait for long
-running queries asynchronously, allowing the Mojo::IOLoop event loop to
-perform other tasks in the meantime. Since database connections usually
-have a very low latency, this often results in very good performance.
-
-Every database connection can only handle one active query at a time, this
-includes asynchronous ones. To perform multiple queries concurrently, you
-have to use multiple connections.
-
-  # Performed concurrently (5 seconds)
-  $pg->db->query('select pg_sleep(5)' => sub {...});
-  $pg->db->query('select pg_sleep(5)' => sub {...});
-
-All cached database handles will be reset automatically if a new process
-has been forked, this allows multiple processes to share the same Mojo::Pg
-object safely.
-
 %prep
 %setup -q -n %{cpan_name}-%{version}
 find . -type f ! -name \*.pl -print0 | xargs -0 chmod 644

++ Mojo-Pg-4.03.tar.gz -> Mojo-Pg-4.04.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.03/Changes new/Mojo-Pg-4.04/Changes
--- old/Mojo-Pg-4.03/Changes2017-11-04 18:01:39.0 +0100
+++ new/Mojo-Pg-4.04/Changes2017-12-16 16:24:58.0 +0100
@@ -1,4 +1,9 @@
 
+4.04  2017-12-16
+  - Added db attribute to Mojo::Pg::Results.
+  - Added sql_for method to Mojo::Pg::Migrations.
+  - Fixed a bug that could cause connections to be cached for reuse too early.
+
 4.03  2017-11-04
   - Improved Mojo::Pg::Database to use Mojo::Promise.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.03/META.json new/Mojo-Pg-4.04/META.json
--- old/Mojo-Pg-4.03/META.json  2017-11-04 18:04:41.0 +0100
+++ new/Mojo-Pg-4.04/META.json  2017-12-17 19:00:55.0 +0100
@@ -57,6 +57,6 @@
   },
   "x_IRC" : "irc://irc.perl.org/#mojo"
},
-   "version" : "4.03",
-   "x_serialization_backend" : "JSON::PP version 2.94"
+   "version" : "4.04",
+   "x_serialization_backend" : "JSON::PP version 2.97000"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.03/META.yml new/Mojo-Pg-4.04/META.yml
-

commit perl-Mojo-Pg for openSUSE:Factory

2017-11-11 Thread root
Hello community,

here is the log from the commit of package perl-Mojo-Pg for openSUSE:Factory 
checked in at 2017-11-11 14:19:36

Comparing /work/SRC/openSUSE:Factory/perl-Mojo-Pg (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Mojo-Pg.new (New)


Package is "perl-Mojo-Pg"

Sat Nov 11 14:19:36 2017 rev:8 rq:539483 version:4.03

Changes:

--- /work/SRC/openSUSE:Factory/perl-Mojo-Pg/perl-Mojo-Pg.changes
2017-11-07 09:58:00.138293341 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Mojo-Pg.new/perl-Mojo-Pg.changes   
2017-11-11 14:19:40.523047597 +0100
@@ -1,0 +2,21 @@
+Tue Nov  7 06:40:47 UTC 2017 - co...@suse.com
+
+- updated to 4.03
+   see /usr/share/doc/packages/perl-Mojo-Pg/Changes
+
+---
+Mon Nov  6 06:56:30 UTC 2017 - co...@suse.com
+
+- updated to 4.03
+   see /usr/share/doc/packages/perl-Mojo-Pg/Changes
+
+---
+Sun Nov  5 06:40:53 UTC 2017 - co...@suse.com
+
+- updated to 4.03
+   see /usr/share/doc/packages/perl-Mojo-Pg/Changes
+
+  4.03  2017-11-04
+- Improved Mojo::Pg::Database to use Mojo::Promise.
+
+---

Old:

  Mojo-Pg-4.02.tar.gz

New:

  Mojo-Pg-4.03.tar.gz



Other differences:
--
++ perl-Mojo-Pg.spec ++
--- /var/tmp/diff_new_pack.djJGXh/_old  2017-11-11 14:19:41.167023995 +0100
+++ /var/tmp/diff_new_pack.djJGXh/_new  2017-11-11 14:19:41.171023848 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Mojo-Pg
-Version:4.02
+Version:4.03
 Release:0
 %define cpan_name Mojo-Pg
 Summary:Mojolicious ♥ PostgreSQL
@@ -31,10 +31,10 @@
 BuildRequires:  perl
 BuildRequires:  perl-macros
 BuildRequires:  perl(DBD::Pg) >= 3.005001
-BuildRequires:  perl(Mojolicious) >= 7.51
+BuildRequires:  perl(Mojolicious) >= 7.53
 BuildRequires:  perl(SQL::Abstract) >= 1.81
 Requires:   perl(DBD::Pg) >= 3.005001
-Requires:   perl(Mojolicious) >= 7.51
+Requires:   perl(Mojolicious) >= 7.53
 Requires:   perl(SQL::Abstract) >= 1.81
 %{perl_requires}
 

++ Mojo-Pg-4.02.tar.gz -> Mojo-Pg-4.03.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.02/Changes new/Mojo-Pg-4.03/Changes
--- old/Mojo-Pg-4.02/Changes2017-11-02 19:41:32.0 +0100
+++ new/Mojo-Pg-4.03/Changes2017-11-04 18:01:39.0 +0100
@@ -1,4 +1,7 @@
 
+4.03  2017-11-04
+  - Improved Mojo::Pg::Database to use Mojo::Promise.
+
 4.02  2017-11-02
   - Added delete_p, insert_p, query_p, select_p and update_p methods to
 Mojo::Pg::Database.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.02/META.json new/Mojo-Pg-4.03/META.json
--- old/Mojo-Pg-4.02/META.json  2017-11-02 23:25:21.0 +0100
+++ new/Mojo-Pg-4.03/META.json  2017-11-04 18:04:41.0 +0100
@@ -35,7 +35,7 @@
   "runtime" : {
  "requires" : {
 "DBD::Pg" : "3.005001",
-"Mojolicious" : "7.51",
+"Mojolicious" : "7.53",
 "SQL::Abstract" : "1.81",
 "perl" : "5.010001"
  }
@@ -57,6 +57,6 @@
   },
   "x_IRC" : "irc://irc.perl.org/#mojo"
},
-   "version" : "4.02",
+   "version" : "4.03",
"x_serialization_backend" : "JSON::PP version 2.94"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.02/META.yml new/Mojo-Pg-4.03/META.yml
--- old/Mojo-Pg-4.02/META.yml   2017-11-02 23:25:21.0 +0100
+++ new/Mojo-Pg-4.03/META.yml   2017-11-04 18:04:41.0 +0100
@@ -21,7 +21,7 @@
 - t
 requires:
   DBD::Pg: '3.005001'
-  Mojolicious: '7.51'
+  Mojolicious: '7.53'
   SQL::Abstract: '1.81'
   perl: '5.010001'
 resources:
@@ -30,5 +30,5 @@
   homepage: http://mojolicious.org
   license: http://www.opensource.org/licenses/artistic-license-2.0
   repository: https://github.com/kraih/mojo-pg.git
-version: '4.02'
+version: '4.03'
 x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.02/Makefile.PL new/Mojo-Pg-4.03/Makefile.PL
--- old/Mojo-Pg-4.02/Makefile.PL2017-11-02 19:10:49.0 +0100
+++ new/Mojo-Pg-4.03/Makefile.PL2017-11-04 16:20:03.0 +0100
@@ -30,6 +30,6 @@
 },
   },
   PREREQ_PM =>
-{'DBD::Pg' => 3.005001, Mojolicious => '7.51', 'SQL::Abstract' => '1.81'},
+{'DBD::Pg' => 3.005001, Mojolicious => '7.53', 'SQL::Abstract' => '1.81'},
   test => {TESTS => 't/*.t t/*/*.t'}
 );
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-

commit perl-Mojo-Pg for openSUSE:Factory

2017-11-07 Thread root
Hello community,

here is the log from the commit of package perl-Mojo-Pg for openSUSE:Factory 
checked in at 2017-11-07 09:57:48

Comparing /work/SRC/openSUSE:Factory/perl-Mojo-Pg (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Mojo-Pg.new (New)


Package is "perl-Mojo-Pg"

Tue Nov  7 09:57:48 2017 rev:7 rq:538635 version:4.02

Changes:

--- /work/SRC/openSUSE:Factory/perl-Mojo-Pg/perl-Mojo-Pg.changes
2017-07-21 22:50:38.266245790 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Mojo-Pg.new/perl-Mojo-Pg.changes   
2017-11-07 09:58:00.138293341 +0100
@@ -1,0 +2,10 @@
+Fri Nov  3 06:37:44 UTC 2017 - co...@suse.com
+
+- updated to 4.02
+   see /usr/share/doc/packages/perl-Mojo-Pg/Changes
+
+  4.02  2017-11-02
+- Added delete_p, insert_p, query_p, select_p and update_p methods to
+  Mojo::Pg::Database.
+
+---

Old:

  Mojo-Pg-4.01.tar.gz

New:

  Mojo-Pg-4.02.tar.gz



Other differences:
--
++ perl-Mojo-Pg.spec ++
--- /var/tmp/diff_new_pack.w09xQO/_old  2017-11-07 09:58:01.522243133 +0100
+++ /var/tmp/diff_new_pack.w09xQO/_new  2017-11-07 09:58:01.526242988 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Mojo-Pg
-Version:4.01
+Version:4.02
 Release:0
 %define cpan_name Mojo-Pg
 Summary:Mojolicious ♥ PostgreSQL
@@ -31,10 +31,10 @@
 BuildRequires:  perl
 BuildRequires:  perl-macros
 BuildRequires:  perl(DBD::Pg) >= 3.005001
-BuildRequires:  perl(Mojolicious) >= 7.32
+BuildRequires:  perl(Mojolicious) >= 7.51
 BuildRequires:  perl(SQL::Abstract) >= 1.81
 Requires:   perl(DBD::Pg) >= 3.005001
-Requires:   perl(Mojolicious) >= 7.32
+Requires:   perl(Mojolicious) >= 7.51
 Requires:   perl(SQL::Abstract) >= 1.81
 %{perl_requires}
 

++ Mojo-Pg-4.01.tar.gz -> Mojo-Pg-4.02.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.01/Changes new/Mojo-Pg-4.02/Changes
--- old/Mojo-Pg-4.01/Changes2017-07-20 18:00:20.0 +0200
+++ new/Mojo-Pg-4.02/Changes2017-11-02 19:41:32.0 +0100
@@ -1,4 +1,8 @@
 
+4.02  2017-11-02
+  - Added delete_p, insert_p, query_p, select_p and update_p methods to
+Mojo::Pg::Database.
+
 4.01  2017-07-20
   - Decreased default max_connections from 5 to 1 in Mojo::Pg.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.01/MANIFEST.SKIP 
new/Mojo-Pg-4.02/MANIFEST.SKIP
--- old/Mojo-Pg-4.01/MANIFEST.SKIP  2017-06-24 15:01:30.0 +0200
+++ new/Mojo-Pg-4.02/MANIFEST.SKIP  2017-07-28 12:05:39.0 +0200
@@ -5,3 +5,4 @@
 ^MYMETA\.
 ^blib
 ^pm_to_blib
+\B\.DS_Store
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.01/META.json new/Mojo-Pg-4.02/META.json
--- old/Mojo-Pg-4.01/META.json  2017-07-20 18:01:43.0 +0200
+++ new/Mojo-Pg-4.02/META.json  2017-11-02 23:25:21.0 +0100
@@ -35,7 +35,7 @@
   "runtime" : {
  "requires" : {
 "DBD::Pg" : "3.005001",
-"Mojolicious" : "7.32",
+"Mojolicious" : "7.51",
 "SQL::Abstract" : "1.81",
 "perl" : "5.010001"
  }
@@ -57,6 +57,6 @@
   },
   "x_IRC" : "irc://irc.perl.org/#mojo"
},
-   "version" : "4.01",
+   "version" : "4.02",
"x_serialization_backend" : "JSON::PP version 2.94"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.01/META.yml new/Mojo-Pg-4.02/META.yml
--- old/Mojo-Pg-4.01/META.yml   2017-07-20 18:01:42.0 +0200
+++ new/Mojo-Pg-4.02/META.yml   2017-11-02 23:25:21.0 +0100
@@ -21,7 +21,7 @@
 - t
 requires:
   DBD::Pg: '3.005001'
-  Mojolicious: '7.32'
+  Mojolicious: '7.51'
   SQL::Abstract: '1.81'
   perl: '5.010001'
 resources:
@@ -30,5 +30,5 @@
   homepage: http://mojolicious.org
   license: http://www.opensource.org/licenses/artistic-license-2.0
   repository: https://github.com/kraih/mojo-pg.git
-version: '4.01'
+version: '4.02'
 x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.01/Makefile.PL new/Mojo-Pg-4.02/Makefile.PL
--- old/Mojo-Pg-4.01/Makefile.PL2017-06-24 15:01:30.0 +0200
+++ new/Mojo-Pg-4.02/Makefile.PL2017-11-02 19:10:49.0 +0100
@@ -30,6 +30,6 @@
 },
   },
   PREREQ_PM =>
-{'DBD::Pg' => 3.005001, Mojolicious => '7.32', 'SQL::Abstract' => '1.81'},
+{'DBD::Pg' => 3.005001, Mojolicious => '7.51', 'SQL::Abstract' => '1.81'},
   test => {TESTS => 't/*.t t/*/*.t'}
 );
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn

commit perl-Mojo-Pg for openSUSE:Factory

2017-07-21 Thread root
Hello community,

here is the log from the commit of package perl-Mojo-Pg for openSUSE:Factory 
checked in at 2017-07-21 22:50:34

Comparing /work/SRC/openSUSE:Factory/perl-Mojo-Pg (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Mojo-Pg.new (New)


Package is "perl-Mojo-Pg"

Fri Jul 21 22:50:34 2017 rev:6 rq:511754 version:4.01

Changes:

--- /work/SRC/openSUSE:Factory/perl-Mojo-Pg/perl-Mojo-Pg.changes
2017-07-08 12:35:50.462253730 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Mojo-Pg.new/perl-Mojo-Pg.changes   
2017-07-21 22:50:38.266245790 +0200
@@ -1,0 +2,9 @@
+Fri Jul 21 05:49:57 UTC 2017 - co...@suse.com
+
+- updated to 4.01
+   see /usr/share/doc/packages/perl-Mojo-Pg/Changes
+
+  4.01  2017-07-20
+- Decreased default max_connections from 5 to 1 in Mojo::Pg.
+
+---

Old:

  Mojo-Pg-4.0.tar.gz

New:

  Mojo-Pg-4.01.tar.gz



Other differences:
--
++ perl-Mojo-Pg.spec ++
--- /var/tmp/diff_new_pack.mW9yI6/_old  2017-07-21 22:50:38.782173013 +0200
+++ /var/tmp/diff_new_pack.mW9yI6/_new  2017-07-21 22:50:38.786172449 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Mojo-Pg
-Version:4.0
+Version:4.01
 Release:0
 %define cpan_name Mojo-Pg
 Summary:Mojolicious ♥ PostgreSQL

++ Mojo-Pg-4.0.tar.gz -> Mojo-Pg-4.01.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.0/Changes new/Mojo-Pg-4.01/Changes
--- old/Mojo-Pg-4.0/Changes 2017-07-06 23:41:13.0 +0200
+++ new/Mojo-Pg-4.01/Changes2017-07-20 18:00:20.0 +0200
@@ -1,4 +1,7 @@
 
+4.01  2017-07-20
+  - Decreased default max_connections from 5 to 1 in Mojo::Pg.
+
 4.0  2017-07-06
   - Added support for sharing the database connection cache between multiple
 Mojo::Pg objects.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.0/META.json new/Mojo-Pg-4.01/META.json
--- old/Mojo-Pg-4.0/META.json   2017-07-06 23:45:43.0 +0200
+++ new/Mojo-Pg-4.01/META.json  2017-07-20 18:01:43.0 +0200
@@ -57,6 +57,6 @@
   },
   "x_IRC" : "irc://irc.perl.org/#mojo"
},
-   "version" : "4.0",
+   "version" : "4.01",
"x_serialization_backend" : "JSON::PP version 2.94"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.0/META.yml new/Mojo-Pg-4.01/META.yml
--- old/Mojo-Pg-4.0/META.yml2017-07-06 23:45:42.0 +0200
+++ new/Mojo-Pg-4.01/META.yml   2017-07-20 18:01:42.0 +0200
@@ -30,5 +30,5 @@
   homepage: http://mojolicious.org
   license: http://www.opensource.org/licenses/artistic-license-2.0
   repository: https://github.com/kraih/mojo-pg.git
-version: '4.0'
+version: '4.01'
 x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.0/lib/Mojo/Pg.pm 
new/Mojo-Pg-4.01/lib/Mojo/Pg.pm
--- old/Mojo-Pg-4.0/lib/Mojo/Pg.pm  2017-07-06 23:36:51.0 +0200
+++ new/Mojo-Pg-4.01/lib/Mojo/Pg.pm 2017-07-20 17:52:53.0 +0200
@@ -16,7 +16,7 @@
 has [qw(auto_migrate parent search_path)];
 has database_class  => 'Mojo::Pg::Database';
 has dsn => 'dbi:Pg:';
-has max_connections => 5;
+has max_connections => 1;
 has migrations  => sub {
   my $migrations = Mojo::Pg::Migrations->new(pg => shift);
   weaken $migrations->{pg};
@@ -38,7 +38,7 @@
   return $pubsub;
 };
 
-our $VERSION = '4.0';
+our $VERSION = '4.01';
 
 sub db { $_[0]->database_class->new(dbh => $_[0]->_prepare, pg => $_[0]) }
 
@@ -368,7 +368,7 @@
   $pg = $pg->max_connections(3);
 
 Maximum number of idle database handles to cache for future use, defaults to
-C<5>.
+C<1>.
 
 =head2 migrations
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-4.0/t/database.t 
new/Mojo-Pg-4.01/t/database.t
--- old/Mojo-Pg-4.0/t/database.t2017-07-06 19:58:59.0 +0200
+++ new/Mojo-Pg-4.01/t/database.t   2017-07-20 17:57:16.0 +0200
@@ -9,6 +9,7 @@
 use Mojo::IOLoop;
 use Mojo::JSON 'true';
 use Mojo::Pg;
+use Scalar::Util 'refaddr';
 
 # Connected
 my $pg = Mojo::Pg->new($ENV{TEST_ONLINE});
@@ -87,9 +88,11 @@
 is_deeply $result, [{one => 1}, {one => 1}, {two => 2}], 'right structure';
 
 # Connection cache
-is $pg->max_connections, 5, 'right default';
-my @dbhs = map { $_->dbh } $pg->db, $pg->db, $pg->db, $pg->db, $pg->db;
-is_deeply \@dbhs, [map { $_->dbh } $pg->db, $pg->db, $pg->db, $pg->db, 
$pg->db],
+is $pg->max_connections, 1, 'right default';
+$pg->max_connections(5);
+my @dbhs = map { refaddr $_->dbh } $pg->db, $pg->db, $pg->db, $

commit perl-Mojo-Pg for openSUSE:Factory

2017-07-08 Thread root
Hello community,

here is the log from the commit of package perl-Mojo-Pg for openSUSE:Factory 
checked in at 2017-07-08 12:35:10

Comparing /work/SRC/openSUSE:Factory/perl-Mojo-Pg (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Mojo-Pg.new (New)


Package is "perl-Mojo-Pg"

Sat Jul  8 12:35:10 2017 rev:5 rq:508735 version:4.0

Changes:

--- /work/SRC/openSUSE:Factory/perl-Mojo-Pg/perl-Mojo-Pg.changes
2017-06-09 15:58:29.494487842 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Mojo-Pg.new/perl-Mojo-Pg.changes   
2017-07-08 12:35:50.462253730 +0200
@@ -1,0 +2,12 @@
+Fri Jul  7 05:52:49 UTC 2017 - co...@suse.com
+
+- updated to 4.0
+   see /usr/share/doc/packages/perl-Mojo-Pg/Changes
+
+  4.0  2017-07-06
+- Added support for sharing the database connection cache between multiple
+  Mojo::Pg objects.
+- Added parent attribute to Mojo::Pg.
+- Fixed a bug where automatic migrations would leak database connections.
+
+---

Old:

  Mojo-Pg-3.06.tar.gz

New:

  Mojo-Pg-4.0.tar.gz



Other differences:
--
++ perl-Mojo-Pg.spec ++
--- /var/tmp/diff_new_pack.jvpVYk/_old  2017-07-08 12:35:50.906191112 +0200
+++ /var/tmp/diff_new_pack.jvpVYk/_new  2017-07-08 12:35:50.906191112 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Mojo-Pg
-Version:3.06
+Version:4.0
 Release:0
 %define cpan_name Mojo-Pg
 Summary:Mojolicious ♥ PostgreSQL
@@ -41,7 +41,12 @@
 %description
 Mojo::Pg is a tiny wrapper around DBD::Pg that makes at
 http://www.postgresql.org a lot of fun to use with the at
-http://mojolicious.org real-time web framework.
+http://mojolicious.org real-time web framework. Perform queries blocking
+and non-blocking, use all at
+https://www.postgresql.org/docs/current/static/sql.html PostgreSQL has to
+offer, generate CRUD queries from data structures, manage your database
+schema with migrations and build scalable real-time web applications with
+the publish/subscribe pattern.
 
 Database and statement handles are cached automatically, and will be reused
 transparently to increase performance. You can handle connection timeouts

++ Mojo-Pg-3.06.tar.gz -> Mojo-Pg-4.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-3.06/Changes new/Mojo-Pg-4.0/Changes
--- old/Mojo-Pg-3.06/Changes2017-06-01 17:40:12.0 +0200
+++ new/Mojo-Pg-4.0/Changes 2017-07-06 23:41:13.0 +0200
@@ -1,4 +1,10 @@
 
+4.0  2017-07-06
+  - Added support for sharing the database connection cache between multiple
+Mojo::Pg objects.
+  - Added parent attribute to Mojo::Pg.
+  - Fixed a bug where automatic migrations would leak database connections.
+
 3.06  2017-06-01
   - Updated example application with tests.
   - Improved Mojo::Pg to be a little less noisy by deactivating PrintWarn by
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-3.06/META.json new/Mojo-Pg-4.0/META.json
--- old/Mojo-Pg-3.06/META.json  2017-06-01 19:49:18.0 +0200
+++ new/Mojo-Pg-4.0/META.json   2017-07-06 23:45:43.0 +0200
@@ -4,7 +4,7 @@
   "Sebastian Riedel "
],
"dynamic_config" : 0,
-   "generated_by" : "ExtUtils::MakeMaker version 7.28, CPAN::Meta::Converter 
version 2.150010",
+   "generated_by" : "ExtUtils::MakeMaker version 7.3, CPAN::Meta::Converter 
version 2.150010",
"license" : [
   "artistic_2"
],
@@ -57,6 +57,6 @@
   },
   "x_IRC" : "irc://irc.perl.org/#mojo"
},
-   "version" : "3.06",
+   "version" : "4.0",
"x_serialization_backend" : "JSON::PP version 2.94"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-3.06/META.yml new/Mojo-Pg-4.0/META.yml
--- old/Mojo-Pg-3.06/META.yml   2017-06-01 19:49:17.0 +0200
+++ new/Mojo-Pg-4.0/META.yml2017-07-06 23:45:42.0 +0200
@@ -7,7 +7,7 @@
 configure_requires:
   ExtUtils::MakeMaker: '0'
 dynamic_config: 0
-generated_by: 'ExtUtils::MakeMaker version 7.28, CPAN::Meta::Converter version 
2.150010'
+generated_by: 'ExtUtils::MakeMaker version 7.3, CPAN::Meta::Converter version 
2.150010'
 license: artistic_2
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -30,5 +30,5 @@
   homepage: http://mojolicious.org
   license: http://www.opensource.org/licenses/artistic-license-2.0
   repository: https://github.com/kraih/mojo-pg.git
-version: '3.06'
+version: '4.0'
 x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-3.06/lib/Mojo/Pg.pm 
new/Mojo-Pg-4.0/lib/Mojo/Pg.pm
--- old

commit perl-Mojo-Pg for openSUSE:Factory

2017-06-09 Thread root
Hello community,

here is the log from the commit of package perl-Mojo-Pg for openSUSE:Factory 
checked in at 2017-06-09 15:58:28

Comparing /work/SRC/openSUSE:Factory/perl-Mojo-Pg (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Mojo-Pg.new (New)


Package is "perl-Mojo-Pg"

Fri Jun  9 15:58:28 2017 rev:4 rq:502488 version:3.06

Changes:

--- /work/SRC/openSUSE:Factory/perl-Mojo-Pg/perl-Mojo-Pg.changes
2017-03-24 02:23:18.622007449 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Mojo-Pg.new/perl-Mojo-Pg.changes   
2017-06-09 15:58:29.494487842 +0200
@@ -1,0 +2,11 @@
+Fri Jun  2 06:11:04 UTC 2017 - co...@suse.com
+
+- updated to 3.06
+   see /usr/share/doc/packages/perl-Mojo-Pg/Changes
+
+  3.06  2017-06-01
+- Updated example application with tests.
+- Improved Mojo::Pg to be a little less noisy by deactivating PrintWarn by
+  default.
+
+---

Old:

  Mojo-Pg-3.05.tar.gz

New:

  Mojo-Pg-3.06.tar.gz



Other differences:
--
++ perl-Mojo-Pg.spec ++
--- /var/tmp/diff_new_pack.2bdzqA/_old  2017-06-09 15:58:30.086404298 +0200
+++ /var/tmp/diff_new_pack.2bdzqA/_new  2017-06-09 15:58:30.090403734 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Mojo-Pg
-Version:3.05
+Version:3.06
 Release:0
 %define cpan_name Mojo-Pg
 Summary:Mojolicious ♥ PostgreSQL
@@ -31,10 +31,10 @@
 BuildRequires:  perl
 BuildRequires:  perl-macros
 BuildRequires:  perl(DBD::Pg) >= 3.005001
-BuildRequires:  perl(Mojolicious) >= 7.15
+BuildRequires:  perl(Mojolicious) >= 7.32
 BuildRequires:  perl(SQL::Abstract) >= 1.81
 Requires:   perl(DBD::Pg) >= 3.005001
-Requires:   perl(Mojolicious) >= 7.15
+Requires:   perl(Mojolicious) >= 7.32
 Requires:   perl(SQL::Abstract) >= 1.81
 %{perl_requires}
 

++ Mojo-Pg-3.05.tar.gz -> Mojo-Pg-3.06.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-3.05/Changes new/Mojo-Pg-3.06/Changes
--- old/Mojo-Pg-3.05/Changes2017-03-12 12:39:16.0 +0100
+++ new/Mojo-Pg-3.06/Changes2017-06-01 17:40:12.0 +0200
@@ -1,4 +1,9 @@
 
+3.06  2017-06-01
+  - Updated example application with tests.
+  - Improved Mojo::Pg to be a little less noisy by deactivating PrintWarn by
+default.
+
 3.05  2017-03-12
   - Improved from_string method in Mojo::Pg with search_path support.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-3.05/MANIFEST new/Mojo-Pg-3.06/MANIFEST
--- old/Mojo-Pg-3.05/MANIFEST   2017-03-12 12:41:43.0 +0100
+++ new/Mojo-Pg-3.06/MANIFEST   2017-06-01 19:49:18.0 +0200
@@ -5,6 +5,7 @@
 examples/blog/lib/Blog/Model/Posts.pm
 examples/blog/migrations/blog.sql
 examples/blog/script/blog
+examples/blog/t/blog.t
 examples/blog/templates/layouts/blog.html.ep
 examples/blog/templates/posts/_form.html.ep
 examples/blog/templates/posts/create.html.ep
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-3.05/META.json new/Mojo-Pg-3.06/META.json
--- old/Mojo-Pg-3.05/META.json  2017-03-12 12:41:43.0 +0100
+++ new/Mojo-Pg-3.06/META.json  2017-06-01 19:49:18.0 +0200
@@ -4,13 +4,13 @@
   "Sebastian Riedel "
],
"dynamic_config" : 0,
-   "generated_by" : "ExtUtils::MakeMaker version 7.24, CPAN::Meta::Converter 
version 2.150010",
+   "generated_by" : "ExtUtils::MakeMaker version 7.28, CPAN::Meta::Converter 
version 2.150010",
"license" : [
   "artistic_2"
],
"meta-spec" : {
   "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec";,
-  "version" : "2"
+  "version" : 2
},
"name" : "Mojo-Pg",
"no_index" : {
@@ -35,7 +35,7 @@
   "runtime" : {
  "requires" : {
 "DBD::Pg" : "3.005001",
-"Mojolicious" : "7.15",
+"Mojolicious" : "7.32",
 "SQL::Abstract" : "1.81",
 "perl" : "5.010001"
  }
@@ -57,6 +57,6 @@
   },
   "x_IRC" : "irc://irc.perl.org/#mojo"
},
-   "version" : "3.05",
-   "x_serialization_backend" : "JSON::PP version 2.27400"
+   "version" : "3.06",
+   "x_serialization_backend" : "JSON::PP version 2.94"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-3.05/META.yml new/Mojo-Pg-3.06/META.yml
--- old/Mojo-Pg-3.05/META.yml   2017-03-12 12:41:43.0 +0100
+++ new/Mojo-Pg-3.06/META.yml   2017-06-01 19:49:17.0 +0200
@@ -7,7 +7,7 @@
 configure_requires:
   ExtUtils::MakeMaker: '0'
 dynamic_config: 0
-generated_by: 'ExtUtils::MakeMaker version 7.24, CPAN::Meta::Converter version 
2.150010'
+generated_by: 'ExtUtils::MakeMake

commit perl-Mojo-Pg for openSUSE:Factory

2017-03-23 Thread root
Hello community,

here is the log from the commit of package perl-Mojo-Pg for openSUSE:Factory 
checked in at 2017-03-24 02:23:16

Comparing /work/SRC/openSUSE:Factory/perl-Mojo-Pg (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Mojo-Pg.new (New)


Package is "perl-Mojo-Pg"

Fri Mar 24 02:23:16 2017 rev:3 rq:482152 version:3.05

Changes:

--- /work/SRC/openSUSE:Factory/perl-Mojo-Pg/perl-Mojo-Pg.changes
2017-03-16 09:51:47.159659430 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Mojo-Pg.new/perl-Mojo-Pg.changes   
2017-03-24 02:23:18.622007449 +0100
@@ -1,0 +2,9 @@
+Fri Mar 17 07:03:30 UTC 2017 - co...@suse.com
+
+- updated to 3.05
+   see /usr/share/doc/packages/perl-Mojo-Pg/Changes
+
+  3.05  2017-03-12
+- Improved from_string method in Mojo::Pg with search_path support.
+
+---

Old:

  Mojo-Pg-3.04.tar.gz

New:

  Mojo-Pg-3.05.tar.gz



Other differences:
--
++ perl-Mojo-Pg.spec ++
--- /var/tmp/diff_new_pack.c5Epyy/_old  2017-03-24 02:23:19.201925394 +0100
+++ /var/tmp/diff_new_pack.c5Epyy/_new  2017-03-24 02:23:19.201925394 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Mojo-Pg
-Version:3.04
+Version:3.05
 Release:0
 %define cpan_name Mojo-Pg
 Summary:Mojolicious ♥ PostgreSQL

++ Mojo-Pg-3.04.tar.gz -> Mojo-Pg-3.05.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-3.04/Changes new/Mojo-Pg-3.05/Changes
--- old/Mojo-Pg-3.04/Changes2017-03-08 09:34:08.0 +0100
+++ new/Mojo-Pg-3.05/Changes2017-03-12 12:39:16.0 +0100
@@ -1,4 +1,7 @@
 
+3.05  2017-03-12
+  - Improved from_string method in Mojo::Pg with search_path support.
+
 3.04  2017-03-08
   - Fixed array reference handling in queries generated with SQL::Abstract.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-3.04/META.json new/Mojo-Pg-3.05/META.json
--- old/Mojo-Pg-3.04/META.json  2017-03-08 09:45:40.0 +0100
+++ new/Mojo-Pg-3.05/META.json  2017-03-12 12:41:43.0 +0100
@@ -57,6 +57,6 @@
   },
   "x_IRC" : "irc://irc.perl.org/#mojo"
},
-   "version" : "3.04",
+   "version" : "3.05",
"x_serialization_backend" : "JSON::PP version 2.27400"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-3.04/META.yml new/Mojo-Pg-3.05/META.yml
--- old/Mojo-Pg-3.04/META.yml   2017-03-08 09:45:40.0 +0100
+++ new/Mojo-Pg-3.05/META.yml   2017-03-12 12:41:43.0 +0100
@@ -30,5 +30,5 @@
   homepage: http://mojolicious.org
   license: http://www.opensource.org/licenses/artistic-license-2.0
   repository: https://github.com/kraih/mojo-pg.git
-version: '3.04'
+version: '3.05'
 x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-3.04/lib/Mojo/Pg.pm 
new/Mojo-Pg-3.05/lib/Mojo/Pg.pm
--- old/Mojo-Pg-3.04/lib/Mojo/Pg.pm 2017-03-08 09:33:16.0 +0100
+++ new/Mojo-Pg-3.05/lib/Mojo/Pg.pm 2017-03-12 12:39:27.0 +0100
@@ -32,7 +32,7 @@
   return $pubsub;
 };
 
-our $VERSION = '3.04';
+our $VERSION = '3.05';
 
 sub db { $_[0]->database_class->new(dbh => $_[0]->_dequeue, pg => $_[0]) }
 
@@ -53,9 +53,12 @@
   if (defined(my $username = $url->username)) { $self->username($username) }
   if (defined(my $password = $url->password)) { $self->password($password) }
 
-  # Service
+  # Service and search_path
   my $hash = $url->query->to_hash;
   if (my $service = delete $hash->{service}) { $dsn .= "service=$service" }
+  if (my $path = delete $hash->{search_path}) {
+$self->search_path(ref $path ? $path : [$path]);
+  }
 
   # Options
   @{$self->options}{keys %$hash} = values %$hash;
@@ -128,8 +131,8 @@
   my $db = $pg->db;
 
   # Use SQL::Abstract to generate simple CRUD queries for you
-  $db->insert('names', {name => 'Isabel'});
-  my $id = $db->select('names', ['id'], {name => 'Isabel'})->hash->{id};
+  $db->insert('names', {name => 'Isabell'});
+  my $id = $db->select('names', ['id'], {name => 'Isabell'})->hash->{id};
   $db->update('names', {name => 'Belle'}, {id => $id});
   $db->delete('names', {name => 'Belle'});
 
@@ -454,6 +457,9 @@
   # Service and additional options
   $pg->from_string('postgresql://?service=foo&PrintError=1&RaiseError=0');
 
+  # Username, database, an option and search_path
+  
$pg->from_string('postgres://sri@/db6?&PrintError=1&search_path=test_schema');
+
 =head2 new
 
   my $pg = Mojo::Pg->new;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-3.04/t/connection.t 
new/Mojo-Pg-3.05

commit perl-Mojo-Pg for openSUSE:Factory

2017-03-16 Thread root
Hello community,

here is the log from the commit of package perl-Mojo-Pg for openSUSE:Factory 
checked in at 2017-03-16 09:42:54

Comparing /work/SRC/openSUSE:Factory/perl-Mojo-Pg (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Mojo-Pg.new (New)


Package is "perl-Mojo-Pg"

Thu Mar 16 09:42:54 2017 rev:2 rq:479451 version:3.04

Changes:

--- /work/SRC/openSUSE:Factory/perl-Mojo-Pg/perl-Mojo-Pg.changes
2017-03-12 20:01:18.916550360 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Mojo-Pg.new/perl-Mojo-Pg.changes   
2017-03-16 09:51:47.159659430 +0100
@@ -1,0 +2,18 @@
+Thu Mar  9 07:03:38 UTC 2017 - co...@suse.com
+
+- updated to 3.04
+   see /usr/share/doc/packages/perl-Mojo-Pg/Changes
+
+  3.04  2017-03-08
+- Fixed array reference handling in queries generated with SQL::Abstract.
+
+---
+Wed Mar  8 07:07:56 UTC 2017 - co...@suse.com
+
+- updated to 3.03
+   see /usr/share/doc/packages/perl-Mojo-Pg/Changes
+
+  3.03  2017-03-07
+- Added reset method to Mojo::Pg::PubSub.
+
+---

Old:

  Mojo-Pg-3.02.tar.gz

New:

  Mojo-Pg-3.04.tar.gz



Other differences:
--
++ perl-Mojo-Pg.spec ++
--- /var/tmp/diff_new_pack.cl6dan/_old  2017-03-16 09:51:47.687584666 +0100
+++ /var/tmp/diff_new_pack.cl6dan/_new  2017-03-16 09:51:47.687584666 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Mojo-Pg
-Version:3.02
+Version:3.04
 Release:0
 %define cpan_name Mojo-Pg
 Summary:Mojolicious ♥ PostgreSQL

++ Mojo-Pg-3.02.tar.gz -> Mojo-Pg-3.04.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-3.02/Changes new/Mojo-Pg-3.04/Changes
--- old/Mojo-Pg-3.02/Changes2017-02-18 14:42:09.0 +0100
+++ new/Mojo-Pg-3.04/Changes2017-03-08 09:34:08.0 +0100
@@ -1,4 +1,10 @@
 
+3.04  2017-03-08
+  - Fixed array reference handling in queries generated with SQL::Abstract.
+
+3.03  2017-03-07
+  - Added reset method to Mojo::Pg::PubSub.
+
 3.02  2017-02-18
   - Fixed quoting bugs in queries generated with SQL::Abstract.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-3.02/META.json new/Mojo-Pg-3.04/META.json
--- old/Mojo-Pg-3.02/META.json  2017-02-19 00:57:30.0 +0100
+++ new/Mojo-Pg-3.04/META.json  2017-03-08 09:45:40.0 +0100
@@ -57,6 +57,6 @@
   },
   "x_IRC" : "irc://irc.perl.org/#mojo"
},
-   "version" : "3.02",
+   "version" : "3.04",
"x_serialization_backend" : "JSON::PP version 2.27400"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-3.02/META.yml new/Mojo-Pg-3.04/META.yml
--- old/Mojo-Pg-3.02/META.yml   2017-02-19 00:57:29.0 +0100
+++ new/Mojo-Pg-3.04/META.yml   2017-03-08 09:45:40.0 +0100
@@ -30,5 +30,5 @@
   homepage: http://mojolicious.org
   license: http://www.opensource.org/licenses/artistic-license-2.0
   repository: https://github.com/kraih/mojo-pg.git
-version: '3.02'
+version: '3.04'
 x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-3.02/lib/Mojo/Pg/Database.pm 
new/Mojo-Pg-3.04/lib/Mojo/Pg/Database.pm
--- old/Mojo-Pg-3.02/lib/Mojo/Pg/Database.pm2017-02-12 16:45:52.0 
+0100
+++ new/Mojo-Pg-3.04/lib/Mojo/Pg/Database.pm2017-03-08 09:43:34.0 
+0100
@@ -27,7 +27,7 @@
   $waiting->{cb}($self, 'Premature connection close', undef) if $waiting->{cb};
 
   return unless (my $pg = $self->pg) && (my $dbh = $self->dbh);
-  $pg->_enqueue($dbh);
+  $pg->_enqueue($dbh) unless $dbh->{private_mojo_no_reuse};
 }
 
 sub begin {
@@ -324,6 +324,9 @@
   # "insert into some_table (foo, baz) values ('bar', 'yada')"
   $db->insert('some_table', {foo => 'bar', baz => 'yada'});
 
+  # "insert into some_table (foo) values ({1,2,3})"
+  $db->insert('some_table', {foo => [1, 2, 3]});
+
   # "insert into some_table (foo) values ('bar') returning id"
   $db->insert('some_table', {foo => 'bar'}, {returning => 'id'});
 
@@ -466,6 +469,9 @@
   # "update some_table set foo = 'bar' where id = 23"
   $db->update('some_table', {foo => 'bar'}, {id => 23});
 
+  # "update some_table set foo = {1,2,3} where id = 23"
+  $db->update('some_table', {foo => [1, 2, 3]}, {id => 23});
+
   # "update some_table set foo = 'bar' where foo like '%test%'"
   $db->update('some_table', {foo => 'bar'}, {foo => {-like => '%test%'}});
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojo-Pg-3.02/lib/Mojo/Pg/PubSub.pm 
new/Mojo-Pg-3.04/lib/Mojo/Pg/