Hello community,

here is the log from the commit of package perl-CGI for openSUSE:Factory 
checked in at 2016-10-18 10:09:33
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-CGI (Old)
 and      /work/SRC/openSUSE:Factory/.perl-CGI.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "perl-CGI"

Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-CGI/perl-CGI.changes        2016-09-21 
18:25:01.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.perl-CGI.new/perl-CGI.changes   2016-10-18 
10:09:34.000000000 +0200
@@ -1,0 +2,21 @@
+Fri Oct 14 05:06:01 UTC 2016 - co...@suse.com
+
+- updated to 4.35
+   see /usr/share/doc/packages/perl-CGI/Changes
+
+  4.35 2016-10-13
+  
+      [ FIX ]
+      - revert changes from 4.34 as they broke stuff
+  
+  
+  4.34 2016-10-13
+  
+      [ ENHANCEMENT ]
+      - If running from the command line, url_param now picks up
+        parameters given on then command line or on stdin (GH #210)
+  
+      [ DOCUMENTATION ]
+      - documentation for above addition
+
+-------------------------------------------------------------------

Old:
----
  CGI-4.33.tar.gz

New:
----
  CGI-4.35.tar.gz

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

Other differences:
------------------
++++++ perl-CGI.spec ++++++
--- /var/tmp/diff_new_pack.tOVumn/_old  2016-10-18 10:09:34.000000000 +0200
+++ /var/tmp/diff_new_pack.tOVumn/_new  2016-10-18 10:09:35.000000000 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           perl-CGI
-Version:        4.33
+Version:        4.35
 Release:        0
 %define cpan_name CGI
 Summary:        Handle Common Gateway Interface requests and responses

++++++ CGI-4.33.tar.gz -> CGI-4.35.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CGI-4.33/Changes new/CGI-4.35/Changes
--- old/CGI-4.33/Changes        2016-09-16 11:40:05.000000000 +0200
+++ new/CGI-4.35/Changes        2016-10-13 15:51:06.000000000 +0200
@@ -1,3 +1,18 @@
+4.35 2016-10-13
+
+    [ FIX ]
+    - revert changes from 4.34 as they broke stuff
+
+
+4.34 2016-10-13
+
+    [ ENHANCEMENT ]
+    - If running from the command line, url_param now picks up
+      parameters given on then command line or on stdin (GH #210)
+
+    [ DOCUMENTATION ]
+    - documentation for above addition
+
 4.33 2016-09-16
 
     [ DOCUMENTATION ]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CGI-4.33/META.json new/CGI-4.35/META.json
--- old/CGI-4.33/META.json      2016-09-16 11:44:04.000000000 +0200
+++ new/CGI-4.35/META.json      2016-10-13 15:55:38.000000000 +0200
@@ -78,6 +78,6 @@
          "web" : "https://github.com/leejo/CGI.pm";
       }
    },
-   "version" : "4.33",
+   "version" : "4.35",
    "x_serialization_backend" : "JSON::PP version 2.27300"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CGI-4.33/META.yml new/CGI-4.35/META.yml
--- old/CGI-4.33/META.yml       2016-09-16 11:44:04.000000000 +0200
+++ new/CGI-4.35/META.yml       2016-10-13 15:55:38.000000000 +0200
@@ -47,5 +47,5 @@
   homepage: https://metacpan.org/module/CGI
   license: http://dev.perl.org/licenses/
   repository: https://github.com/leejo/CGI.pm
-version: '4.33'
+version: '4.35'
 x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CGI-4.33/examples/file_upload.cgi 
new/CGI-4.35/examples/file_upload.cgi
--- old/CGI-4.33/examples/file_upload.cgi       2016-05-23 09:58:56.000000000 
+0200
+++ new/CGI-4.35/examples/file_upload.cgi       2016-10-13 15:49:56.000000000 
+0200
@@ -15,6 +15,8 @@
 # Process the form if there is a file name entered
 if ( my $file = $cgi->param( 'filename' ) ) {
 
+       die "filename passed as ARG" if $file =~ /ARG/;
+
     my $tmpfile  = $cgi->tmpFileName( $file );
     my $mimetype = $cgi->uploadInfo( $file )->{'Content-Type'} || '';
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CGI-4.33/lib/CGI/Carp.pm new/CGI-4.35/lib/CGI/Carp.pm
--- old/CGI-4.33/lib/CGI/Carp.pm        2016-09-16 11:42:59.000000000 +0200
+++ new/CGI-4.35/lib/CGI/Carp.pm        2016-10-13 15:51:22.000000000 +0200
@@ -327,7 +327,7 @@
 
 $main::SIG{__WARN__}=\&CGI::Carp::warn;
 
-$CGI::Carp::VERSION     = '4.33';
+$CGI::Carp::VERSION     = '4.35';
 $CGI::Carp::CUSTOM_MSG  = undef;
 $CGI::Carp::DIE_HANDLER = undef;
 $CGI::Carp::TO_BROWSER  = 1;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CGI-4.33/lib/CGI/Cookie.pm 
new/CGI-4.35/lib/CGI/Cookie.pm
--- old/CGI-4.33/lib/CGI/Cookie.pm      2016-09-16 11:43:02.000000000 +0200
+++ new/CGI-4.35/lib/CGI/Cookie.pm      2016-10-13 15:51:24.000000000 +0200
@@ -5,7 +5,7 @@
 
 use if $] >= 5.019, 'deprecate';
 
-our $VERSION='4.33';
+our $VERSION='4.35';
 
 use CGI::Util qw(rearrange unescape escape);
 use overload '""' => \&as_string, 'cmp' => \&compare, 'fallback' => 1;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CGI-4.33/lib/CGI/File/Temp.pm 
new/CGI-4.35/lib/CGI/File/Temp.pm
--- old/CGI-4.33/lib/CGI/File/Temp.pm   2016-09-16 11:43:03.000000000 +0200
+++ new/CGI-4.35/lib/CGI/File/Temp.pm   2016-10-13 15:51:26.000000000 +0200
@@ -3,7 +3,7 @@
 # you use it directly and your code breaks horribly.
 package CGI::File::Temp;
 
-$CGI::File::Temp::VERSION = '4.33';
+$CGI::File::Temp::VERSION = '4.35';
 
 use parent File::Temp;
 use parent Fh;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CGI-4.33/lib/CGI/Pretty.pm 
new/CGI-4.35/lib/CGI/Pretty.pm
--- old/CGI-4.33/lib/CGI/Pretty.pm      2016-09-16 11:43:05.000000000 +0200
+++ new/CGI-4.35/lib/CGI/Pretty.pm      2016-10-13 15:51:28.000000000 +0200
@@ -6,7 +6,7 @@
 use if $] >= 5.019, 'deprecate';
 use CGI ();
 
-$CGI::Pretty::VERSION = '4.33';
+$CGI::Pretty::VERSION = '4.35';
 $CGI::DefaultClass = __PACKAGE__;
 @CGI::Pretty::ISA = qw( CGI );
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CGI-4.33/lib/CGI/Push.pm new/CGI-4.35/lib/CGI/Push.pm
--- old/CGI-4.33/lib/CGI/Push.pm        2016-09-16 11:43:06.000000000 +0200
+++ new/CGI-4.35/lib/CGI/Push.pm        2016-10-13 15:51:29.000000000 +0200
@@ -6,7 +6,7 @@
 use warnings;
 #/;
 
-$CGI::Push::VERSION='4.33';
+$CGI::Push::VERSION='4.35';
 use CGI;
 use CGI::Util 'rearrange';
 @ISA = ('CGI');
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CGI-4.33/lib/CGI/Util.pm new/CGI-4.35/lib/CGI/Util.pm
--- old/CGI-4.33/lib/CGI/Util.pm        2016-09-16 11:43:08.000000000 +0200
+++ new/CGI-4.35/lib/CGI/Util.pm        2016-10-13 15:51:31.000000000 +0200
@@ -6,7 +6,7 @@
 our @EXPORT_OK = qw(rearrange rearrange_header make_attributes unescape escape
         expires ebcdic2ascii ascii2ebcdic);
 
-our $VERSION = '4.33';
+our $VERSION = '4.35';
 
 our $_EBCDIC = "\t" ne "\011";
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CGI-4.33/lib/CGI.pm new/CGI-4.35/lib/CGI.pm
--- old/CGI-4.33/lib/CGI.pm     2016-09-16 11:38:45.000000000 +0200
+++ new/CGI-4.35/lib/CGI.pm     2016-10-13 15:51:38.000000000 +0200
@@ -8,7 +8,7 @@
 use warnings;
 #/;
 
-$CGI::VERSION='4.33';
+$CGI::VERSION='4.35';
 
 use CGI::Util qw(rearrange rearrange_header make_attributes unescape escape 
expires ebcdic2ascii ascii2ebcdic);
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CGI-4.33/lib/Fh.pm new/CGI-4.35/lib/Fh.pm
--- old/CGI-4.33/lib/Fh.pm      2016-09-16 11:43:10.000000000 +0200
+++ new/CGI-4.35/lib/Fh.pm      2016-10-13 15:51:40.000000000 +0200
@@ -5,6 +5,6 @@
 use strict;
 use warnings;
 
-$Fh::VERSION = '4.33';
+$Fh::VERSION = '4.35';
 
 1;


Reply via email to