Hello community,

here is the log from the commit of package perl-Minion for openSUSE:Factory 
checked in at 2015-04-23 08:05:11
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-Minion (Old)
 and      /work/SRC/openSUSE:Factory/.perl-Minion.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "perl-Minion"

Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-Minion/perl-Minion.changes  2015-03-30 
19:32:45.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Minion.new/perl-Minion.changes     
2015-04-23 08:05:12.000000000 +0200
@@ -1,0 +2,9 @@
+Wed Apr 22 06:26:06 UTC 2015 - [email protected]
+
+- updated to 1.14
+   see /usr/share/doc/packages/perl-Minion/Changes
+
+  1.14  2015-04-21
+    - Improved performance of Minion::Backend::Pg with a new index. (avkhozov)
+
+-------------------------------------------------------------------

Old:
----
  Minion-1.13.tar.gz

New:
----
  Minion-1.14.tar.gz
  cpanspec.yml

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

Other differences:
------------------
++++++ perl-Minion.spec ++++++
--- /var/tmp/diff_new_pack.SahDf7/_old  2015-04-23 08:05:12.000000000 +0200
+++ /var/tmp/diff_new_pack.SahDf7/_new  2015-04-23 08:05:12.000000000 +0200
@@ -17,14 +17,15 @@
 
 
 Name:           perl-Minion
-Version:        1.13
+Version:        1.14
 Release:        0
 %define cpan_name Minion
 Summary:        Job queue
 License:        Artistic-2.0
 Group:          Development/Libraries/Perl
 Url:            http://search.cpan.org/dist/Minion/
-Source:         
http://www.cpan.org/authors/id/S/SR/SRI/%{cpan_name}-%{version}.tar.gz
+Source0:        
http://www.cpan.org/authors/id/S/SR/SRI/%{cpan_name}-%{version}.tar.gz
+Source1:        cpanspec.yml
 BuildArch:      noarch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl

++++++ Minion-1.13.tar.gz -> Minion-1.14.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Minion-1.13/Changes new/Minion-1.14/Changes
--- old/Minion-1.13/Changes     2015-03-25 04:21:27.000000000 +0100
+++ new/Minion-1.14/Changes     2015-04-21 20:02:37.000000000 +0200
@@ -1,4 +1,7 @@
 
+1.14  2015-04-21
+  - Improved performance of Minion::Backend::Pg with a new index. (avkhozov)
+
 1.13  2015-03-25
   - Improved Minion::Backend::Pg to reset the job queue a little faster.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Minion-1.13/META.json new/Minion-1.14/META.json
--- old/Minion-1.13/META.json   2015-03-25 06:10:18.000000000 +0100
+++ new/Minion-1.14/META.json   2015-04-22 00:37:46.000000000 +0200
@@ -53,5 +53,5 @@
       },
       "x_IRC" : "irc://irc.perl.org/#mojo"
    },
-   "version" : "1.13"
+   "version" : "1.14"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Minion-1.13/META.yml new/Minion-1.14/META.yml
--- old/Minion-1.13/META.yml    2015-03-25 06:10:18.000000000 +0100
+++ new/Minion-1.14/META.yml    2015-04-22 00:37:46.000000000 +0200
@@ -28,4 +28,4 @@
   homepage: http://mojolicio.us
   license: http://www.opensource.org/licenses/artistic-license-2.0
   repository: https://github.com/kraih/minion.git
-version: '1.13'
+version: '1.14'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Minion-1.13/lib/Minion/Backend/Pg.pm 
new/Minion-1.14/lib/Minion/Backend/Pg.pm
--- old/Minion-1.13/lib/Minion/Backend/Pg.pm    2015-03-25 05:50:46.000000000 
+0100
+++ new/Minion-1.14/lib/Minion/Backend/Pg.pm    2015-04-21 20:01:39.000000000 
+0200
@@ -407,7 +407,7 @@
   task     text not null,
   worker   bigint
 );
-create index on minion_jobs (priority DESC, created);
+create index on minion_jobs (priority desc, created);
 create table if not exists minion_workers (
   id      bigserial not null primary key,
   host    text not null,
@@ -438,3 +438,6 @@
 alter table minion_workers add column
   notified timestamp with time zone not null default now();
 alter table minion_workers alter column started set default now();
+
+-- 3 up
+create index on minion_jobs (state);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Minion-1.13/lib/Minion.pm 
new/Minion-1.14/lib/Minion.pm
--- old/Minion-1.13/lib/Minion.pm       2015-03-22 07:08:44.000000000 +0100
+++ new/Minion-1.14/lib/Minion.pm       2015-04-21 20:48:22.000000000 +0200
@@ -15,7 +15,7 @@
 has remove_after  => 864000;
 has tasks         => sub { {} };
 
-our $VERSION = '1.13';
+our $VERSION = '1.14';
 
 sub add_task { ($_[0]->tasks->{$_[1]} = $_[2]) and return $_[0] }
 
@@ -351,6 +351,8 @@
 
 =over 2
 
+Andrey Khozov
+
 Brian Medley
 
 =back

++++++ cpanspec.yml ++++++
---
#description_paragraphs: 3
#no_testing: broken upstream
#sources:
#  - source1
#  - source2
#patches:
#  foo.patch: -p1
#  bar.patch:
#preamble: |-
# BuildRequires:  gcc-c++
#post_prep: |-
# hunspell=`pkg-config --libs hunspell | sed -e 's,-l,,; s,  *,,g'`
# sed -i -e "s,hunspell-X,$hunspell," t/00-prereq.t Makefile.PL 
#post_install: |-
# sed on %{name}.files
#license: SUSE-NonFree
#skip_noarch: 1
#custom_build: -
#./Build build flags=%{?_smp_mflags} --myflag
#ignore_requires: Bizarre::Module

Reply via email to