Hello community,

here is the log from the commit of package perl-Minion for openSUSE:Factory 
checked in at 2019-12-17 16:54:41
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-Minion (Old)
 and      /work/SRC/openSUSE:Factory/.perl-Minion.new.4691 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "perl-Minion"

Tue Dec 17 16:54:41 2019 rev:52 rq:757520 version:10.01

Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-Minion/perl-Minion.changes  2019-11-20 
10:27:42.850567985 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Minion.new.4691/perl-Minion.changes        
2019-12-17 16:54:42.497343159 +0100
@@ -1,0 +2,9 @@
+Tue Dec 17 03:11:23 UTC 2019 -  <[email protected]>
+
+- updated to 10.01
+   see /usr/share/doc/packages/perl-Minion/Changes
+
+  10.01  2019-12-16
+    - Fixed an unlock concurrency issue in Minion::Backend::Pg.
+
+-------------------------------------------------------------------

Old:
----
  Minion-10.0.tar.gz

New:
----
  Minion-10.01.tar.gz

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

Other differences:
------------------
++++++ perl-Minion.spec ++++++
--- /var/tmp/diff_new_pack.BQ7B99/_old  2019-12-17 16:54:43.049343356 +0100
+++ /var/tmp/diff_new_pack.BQ7B99/_new  2019-12-17 16:54:43.049343356 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           perl-Minion
-Version:        10.0
+Version:        10.01
 Release:        0
 %define cpan_name Minion
 Summary:        Job queue
@@ -51,7 +51,7 @@
 
 %prep
 %setup -q -n %{cpan_name}-%{version}
-find . -type f ! -path "*/t/*" ! -name "*.pl" ! -name "*.sh" ! -path "*/bin/*" 
! -path "*/script/*" ! -name "configure" -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

++++++ Minion-10.0.tar.gz -> Minion-10.01.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Minion-10.0/Changes new/Minion-10.01/Changes
--- old/Minion-10.0/Changes     2019-11-15 19:25:27.000000000 +0100
+++ new/Minion-10.01/Changes    2019-12-16 13:00:33.000000000 +0100
@@ -1,4 +1,7 @@
 
+10.01  2019-12-16
+  - Fixed an unlock concurrency issue in Minion::Backend::Pg.
+
 10.0  2019-11-15
   - Removed PostgreSQL migrations older than 2 years, that means you need to
     have Minion version 7.01 or newer installed before you can upgrade to
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Minion-10.0/META.json new/Minion-10.01/META.json
--- old/Minion-10.0/META.json   2019-11-15 20:03:57.000000000 +0100
+++ new/Minion-10.01/META.json  2019-12-16 13:17:32.000000000 +0100
@@ -54,6 +54,6 @@
       },
       "x_IRC" : "irc://irc.freenode.net/#mojo"
    },
-   "version" : "10.0",
+   "version" : "10.01",
    "x_serialization_backend" : "JSON::PP version 4.04"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Minion-10.0/META.yml new/Minion-10.01/META.yml
--- old/Minion-10.0/META.yml    2019-11-15 20:03:57.000000000 +0100
+++ new/Minion-10.01/META.yml   2019-12-16 13:17:32.000000000 +0100
@@ -27,5 +27,5 @@
   homepage: https://mojolicious.org
   license: http://www.opensource.org/licenses/artistic-license-2.0
   repository: https://github.com/mojolicious/minion.git
-version: '10.0'
+version: '10.01'
 x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Minion-10.0/lib/Minion/Backend/Pg.pm 
new/Minion-10.01/lib/Minion/Backend/Pg.pm
--- old/Minion-10.0/lib/Minion/Backend/Pg.pm    2019-11-15 19:19:20.000000000 
+0100
+++ new/Minion-10.01/lib/Minion/Backend/Pg.pm   2019-12-16 13:00:40.000000000 
+0100
@@ -271,7 +271,7 @@
   !!shift->pg->db->query(
     'delete from minion_locks where id = (
        select id from minion_locks
-       where expires > now() and name = ? order by expires limit 1
+       where expires > now() and name = ? order by expires limit 1 for update
      ) returning 1', shift
   )->rows;
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Minion-10.0/lib/Minion.pm 
new/Minion-10.01/lib/Minion.pm
--- old/Minion-10.0/lib/Minion.pm       2019-11-15 19:24:44.000000000 +0100
+++ new/Minion-10.01/lib/Minion.pm      2019-12-16 12:46:50.000000000 +0100
@@ -22,7 +22,7 @@
 has remove_after  => 172800;
 has tasks         => sub { {} };
 
-our $VERSION = '10.0';
+our $VERSION = '10.01';
 
 sub add_task { ($_[0]->tasks->{$_[1]} = $_[2]) and return $_[0] }
 


Reply via email to