Hello community,

here is the log from the commit of package perl-CGI for openSUSE:Factory 
checked in at 2016-09-21 18:25:00
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
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-07-21 
08:17:41.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.perl-CGI.new/perl-CGI.changes   2016-09-21 
18:25:01.000000000 +0200
@@ -1,0 +2,12 @@
+Sat Sep 17 05:07:26 UTC 2016 - co...@suse.com
+
+- updated to 4.33
+   see /usr/share/doc/packages/perl-CGI/Changes
+
+  4.33 2016-09-16
+  
+      [ DOCUMENTATION ]
+      - clarify that ->param will return the first value if there are
+        multiple values (when not called in list context)
+
+-------------------------------------------------------------------

Old:
----
  CGI-4.32.tar.gz

New:
----
  CGI-4.33.tar.gz

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

Other differences:
------------------
++++++ perl-CGI.spec ++++++
--- /var/tmp/diff_new_pack.7AEpWe/_old  2016-09-21 18:25:03.000000000 +0200
+++ /var/tmp/diff_new_pack.7AEpWe/_new  2016-09-21 18:25:03.000000000 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           perl-CGI
-Version:        4.32
+Version:        4.33
 Release:        0
 %define cpan_name CGI
 Summary:        Handle Common Gateway Interface requests and responses

++++++ CGI-4.32.tar.gz -> CGI-4.33.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CGI-4.32/Changes new/CGI-4.33/Changes
--- old/CGI-4.32/Changes        2016-07-19 08:59:06.000000000 +0200
+++ new/CGI-4.33/Changes        2016-09-16 11:40:05.000000000 +0200
@@ -1,3 +1,9 @@
+4.33 2016-09-16
+
+    [ DOCUMENTATION ]
+    - clarify that ->param will return the first value if there are
+      multiple values (when not called in list context)
+
 4.32 2016-07-19
 
     [ DOCUMENTATION ]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CGI-4.32/META.json new/CGI-4.33/META.json
--- old/CGI-4.32/META.json      2016-07-19 09:04:12.000000000 +0200
+++ new/CGI-4.33/META.json      2016-09-16 11:44:04.000000000 +0200
@@ -78,6 +78,6 @@
          "web" : "https://github.com/leejo/CGI.pm";
       }
    },
-   "version" : "4.32",
+   "version" : "4.33",
    "x_serialization_backend" : "JSON::PP version 2.27300"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CGI-4.32/META.yml new/CGI-4.33/META.yml
--- old/CGI-4.32/META.yml       2016-07-19 09:04:12.000000000 +0200
+++ new/CGI-4.33/META.yml       2016-09-16 11:44:04.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.32'
+version: '4.33'
 x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CGI-4.32/README.md new/CGI-4.33/README.md
--- old/CGI-4.32/README.md      2016-07-19 08:32:45.000000000 +0200
+++ new/CGI-4.33/README.md      2016-09-16 11:40:38.000000000 +0200
@@ -316,10 +316,15 @@
 
     my $value = $q->param('foo');
 
+        -or-
+
+    my @values = $q->param('foo'); # list context, discouraged and will raise
+                                   # a warning (use ->multi_param instead)
+
 Pass the param() / multi\_param() method a single argument to fetch the value
-of the named parameter. If the parameter is multivalued (e.g. from multiple
-selections in a scrolling list), you can ask to receive an array. Otherwise
-the method will return a single value.
+of the named parameter. When calling param() If the parameter is multivalued
+(e.g. from multiple selections in a scrolling list), you can ask to receive
+an array. Otherwise the method will return the **first** value.
 
 **Warning** - calling param() in list context can lead to vulnerabilities if
 you do not sanitise user input as it is possible to inject other param
@@ -1533,7 +1538,7 @@
 
 CGI.pm provides four simple functions for producing multipart documents of the
 type needed to implement server push. These functions were graciously provided
-by Ed Jordan <e...@fidalgo.net>. To import these into your namespace, you 
must
+by Ed Jordan <e...@fidalgo.net>. To import these into your namespace, you must
 import the ":push" set. You are also advised to put the script into NPH mode
 and to set $| to 1 to avoid buffering problems.
 
@@ -1734,7 +1739,7 @@
 - Mark Stosberg (m...@stosberg.com)
 - Matt Heffron (heff...@falstaff.css.beckman.com)
 - James Taylor (james.tay...@srs.gov)
-- Scott Anguish &lt;sangu...@digifix.com>
+- Scott Anguish (sangu...@digifix.com)
 - Mike Jewell (ml...@virginia.edu)
 - Timothy Shimmin (t...@kbs.citri.edu.au)
 - Joergen Haegg (j...@axis.se)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CGI-4.32/lib/CGI/Carp.pm new/CGI-4.33/lib/CGI/Carp.pm
--- old/CGI-4.32/lib/CGI/Carp.pm        2016-07-19 08:58:32.000000000 +0200
+++ new/CGI-4.33/lib/CGI/Carp.pm        2016-09-16 11:42:59.000000000 +0200
@@ -327,7 +327,7 @@
 
 $main::SIG{__WARN__}=\&CGI::Carp::warn;
 
-$CGI::Carp::VERSION     = '4.32';
+$CGI::Carp::VERSION     = '4.33';
 $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.32/lib/CGI/Cookie.pm 
new/CGI-4.33/lib/CGI/Cookie.pm
--- old/CGI-4.32/lib/CGI/Cookie.pm      2016-07-19 08:58:32.000000000 +0200
+++ new/CGI-4.33/lib/CGI/Cookie.pm      2016-09-16 11:43:02.000000000 +0200
@@ -5,7 +5,7 @@
 
 use if $] >= 5.019, 'deprecate';
 
-our $VERSION='4.32';
+our $VERSION='4.33';
 
 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.32/lib/CGI/File/Temp.pm 
new/CGI-4.33/lib/CGI/File/Temp.pm
--- old/CGI-4.32/lib/CGI/File/Temp.pm   2016-07-19 08:58:32.000000000 +0200
+++ new/CGI-4.33/lib/CGI/File/Temp.pm   2016-09-16 11:43:03.000000000 +0200
@@ -3,7 +3,7 @@
 # you use it directly and your code breaks horribly.
 package CGI::File::Temp;
 
-$CGI::File::Temp::VERSION = '4.32';
+$CGI::File::Temp::VERSION = '4.33';
 
 use parent File::Temp;
 use parent Fh;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CGI-4.32/lib/CGI/Pretty.pm 
new/CGI-4.33/lib/CGI/Pretty.pm
--- old/CGI-4.32/lib/CGI/Pretty.pm      2016-07-19 08:58:32.000000000 +0200
+++ new/CGI-4.33/lib/CGI/Pretty.pm      2016-09-16 11:43:05.000000000 +0200
@@ -6,7 +6,7 @@
 use if $] >= 5.019, 'deprecate';
 use CGI ();
 
-$CGI::Pretty::VERSION = '4.32';
+$CGI::Pretty::VERSION = '4.33';
 $CGI::DefaultClass = __PACKAGE__;
 @CGI::Pretty::ISA = qw( CGI );
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CGI-4.32/lib/CGI/Push.pm new/CGI-4.33/lib/CGI/Push.pm
--- old/CGI-4.32/lib/CGI/Push.pm        2016-07-19 08:58:32.000000000 +0200
+++ new/CGI-4.33/lib/CGI/Push.pm        2016-09-16 11:43:06.000000000 +0200
@@ -6,7 +6,7 @@
 use warnings;
 #/;
 
-$CGI::Push::VERSION='4.32';
+$CGI::Push::VERSION='4.33';
 use CGI;
 use CGI::Util 'rearrange';
 @ISA = ('CGI');
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CGI-4.32/lib/CGI/Util.pm new/CGI-4.33/lib/CGI/Util.pm
--- old/CGI-4.32/lib/CGI/Util.pm        2016-07-19 08:58:32.000000000 +0200
+++ new/CGI-4.33/lib/CGI/Util.pm        2016-09-16 11:43:08.000000000 +0200
@@ -6,7 +6,7 @@
 our @EXPORT_OK = qw(rearrange rearrange_header make_attributes unescape escape
         expires ebcdic2ascii ascii2ebcdic);
 
-our $VERSION = '4.32';
+our $VERSION = '4.33';
 
 our $_EBCDIC = "\t" ne "\011";
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CGI-4.32/lib/CGI.pm new/CGI-4.33/lib/CGI.pm
--- old/CGI-4.32/lib/CGI.pm     2016-07-19 08:58:32.000000000 +0200
+++ new/CGI-4.33/lib/CGI.pm     2016-09-16 11:38:45.000000000 +0200
@@ -8,7 +8,7 @@
 use warnings;
 #/;
 
-$CGI::VERSION='4.32';
+$CGI::VERSION='4.33';
 
 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.32/lib/CGI.pod new/CGI-4.33/lib/CGI.pod
--- old/CGI-4.32/lib/CGI.pod    2016-07-19 08:32:45.000000000 +0200
+++ new/CGI-4.33/lib/CGI.pod    2016-09-16 11:40:35.000000000 +0200
@@ -315,10 +315,15 @@
 
     my $value = $q->param('foo');
 
+        -or-
+
+    my @values = $q->param('foo'); # list context, discouraged and will raise
+                                   # a warning (use ->multi_param instead)
+
 Pass the param() / multi_param() method a single argument to fetch the value
-of the named parameter. If the parameter is multivalued (e.g. from multiple
-selections in a scrolling list), you can ask to receive an array. Otherwise
-the method will return a single value.
+of the named parameter. When calling param() If the parameter is multivalued
+(e.g. from multiple selections in a scrolling list), you can ask to receive
+an array. Otherwise the method will return the B<first> value.
 
 B<Warning> - calling param() in list context can lead to vulnerabilities if
 you do not sanitise user input as it is possible to inject other param
@@ -1774,7 +1779,7 @@
 
 =item James Taylor (james.tay...@srs.gov)
 
-=item Scott Anguish <sangu...@digifix.com>
+=item Scott Anguish (sangu...@digifix.com)
 
 =item Mike Jewell (ml...@virginia.edu)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CGI-4.32/lib/Fh.pm new/CGI-4.33/lib/Fh.pm
--- old/CGI-4.32/lib/Fh.pm      2016-07-19 08:58:32.000000000 +0200
+++ new/CGI-4.33/lib/Fh.pm      2016-09-16 11:43:10.000000000 +0200
@@ -5,6 +5,6 @@
 use strict;
 use warnings;
 
-$Fh::VERSION = '4.32';
+$Fh::VERSION = '4.33';
 
 1;


Reply via email to