Hello community,

here is the log from the commit of package perl-CGI for openSUSE:Factory 
checked in at 2020-10-08 13:11:21
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-CGI (Old)
 and      /work/SRC/openSUSE:Factory/.perl-CGI.new.4249 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "perl-CGI"

Thu Oct  8 13:11:21 2020 rev:21 rq:839746 version:4.51

Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-CGI/perl-CGI.changes        2020-06-27 
23:20:59.797509882 +0200
+++ /work/SRC/openSUSE:Factory/.perl-CGI.new.4249/perl-CGI.changes      
2020-10-08 13:12:13.771174895 +0200
@@ -1,0 +2,6 @@
+Tue Oct  6 03:07:09 UTC 2020 - Tina Müller <[email protected]>
+
+- updated to 4.51
+   see /usr/share/doc/packages/perl-CGI/Changes
+
+-------------------------------------------------------------------

Old:
----
  CGI-4.50.tar.gz

New:
----
  CGI-4.51.tar.gz

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

Other differences:
------------------
++++++ perl-CGI.spec ++++++
--- /var/tmp/diff_new_pack.JylzVD/_old  2020-10-08 13:12:14.295175370 +0200
+++ /var/tmp/diff_new_pack.JylzVD/_new  2020-10-08 13:12:14.299175374 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           perl-CGI
-Version:        4.50
+Version:        4.51
 Release:        0
 %define cpan_name CGI
 Summary:        Handle Common Gateway Interface requests and responses

++++++ CGI-4.50.tar.gz -> CGI-4.51.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CGI-4.50/Changes new/CGI-4.51/Changes
--- old/CGI-4.50/Changes        2020-06-22 09:32:06.000000000 +0200
+++ new/CGI-4.51/Changes        2020-09-25 15:20:14.000000000 +0200
@@ -1,4 +1,9 @@
-4.50 2019-06-22
+4.51 2020-10-01
+
+    [ DOCUMENTATION ]
+    - Document support for SameSite=None cookies in CGI::Cookie (GH #244)
+
+4.50 2020-06-22
 
     [ ENHANCEMENT ]
     - Add APPEND_QUERY_STRING option (GH #243, thanks to stevenh)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CGI-4.50/META.json new/CGI-4.51/META.json
--- old/CGI-4.50/META.json      2020-06-22 09:34:37.000000000 +0200
+++ new/CGI-4.51/META.json      2020-10-05 08:13:22.000000000 +0200
@@ -78,6 +78,6 @@
          "web" : "https://github.com/leejo/CGI.pm";
       }
    },
-   "version" : "4.50",
+   "version" : "4.51",
    "x_serialization_backend" : "JSON::PP version 4.02"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CGI-4.50/META.yml new/CGI-4.51/META.yml
--- old/CGI-4.50/META.yml       2020-06-22 09:34:37.000000000 +0200
+++ new/CGI-4.51/META.yml       2020-10-05 08:13:22.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.50'
+version: '4.51'
 x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CGI-4.50/lib/CGI/Carp.pm new/CGI-4.51/lib/CGI/Carp.pm
--- old/CGI-4.50/lib/CGI/Carp.pm        2020-06-22 09:30:45.000000000 +0200
+++ new/CGI-4.51/lib/CGI/Carp.pm        2020-09-25 15:20:35.000000000 +0200
@@ -326,7 +326,7 @@
 
 $main::SIG{__WARN__}=\&CGI::Carp::warn;
 
-$CGI::Carp::VERSION     = '4.50';
+$CGI::Carp::VERSION     = '4.51';
 $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.50/lib/CGI/Cookie.pm 
new/CGI-4.51/lib/CGI/Cookie.pm
--- old/CGI-4.50/lib/CGI/Cookie.pm      2020-06-22 09:30:51.000000000 +0200
+++ new/CGI-4.51/lib/CGI/Cookie.pm      2020-09-25 15:20:39.000000000 +0200
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-our $VERSION='4.50';
+our $VERSION='4.51';
 
 use CGI::Util qw(rearrange unescape escape);
 use overload '""' => \&as_string, 'cmp' => \&compare, 'fallback' => 1;
@@ -337,7 +337,7 @@
 
 =item B<6. samesite flag>
 
-Allowed settings are C<Strict> and C<Lax>.
+Allowed settings are C<Strict>, C<Lax> and C<None>.
 
 As of June 2016, support is limited to recent releases of Chrome and Opera.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CGI-4.50/lib/CGI/File/Temp.pm 
new/CGI-4.51/lib/CGI/File/Temp.pm
--- old/CGI-4.50/lib/CGI/File/Temp.pm   2020-06-22 09:30:43.000000000 +0200
+++ new/CGI-4.51/lib/CGI/File/Temp.pm   2020-09-25 15:20:33.000000000 +0200
@@ -3,7 +3,7 @@
 # you use it directly and your code breaks horribly.
 package CGI::File::Temp;
 
-$CGI::File::Temp::VERSION = '4.50';
+$CGI::File::Temp::VERSION = '4.51';
 
 use parent File::Temp;
 use parent Fh;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CGI-4.50/lib/CGI/Pretty.pm 
new/CGI-4.51/lib/CGI/Pretty.pm
--- old/CGI-4.50/lib/CGI/Pretty.pm      2020-06-22 09:30:52.000000000 +0200
+++ new/CGI-4.51/lib/CGI/Pretty.pm      2020-09-25 15:20:40.000000000 +0200
@@ -5,7 +5,7 @@
 
 use CGI ();
 
-$CGI::Pretty::VERSION = '4.50';
+$CGI::Pretty::VERSION = '4.51';
 $CGI::DefaultClass = __PACKAGE__;
 @CGI::Pretty::ISA = qw( CGI );
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CGI-4.50/lib/CGI/Push.pm new/CGI-4.51/lib/CGI/Push.pm
--- old/CGI-4.50/lib/CGI/Push.pm        2020-06-22 09:30:54.000000000 +0200
+++ new/CGI-4.51/lib/CGI/Push.pm        2020-09-25 15:20:42.000000000 +0200
@@ -5,7 +5,7 @@
 use warnings;
 #/;
 
-$CGI::Push::VERSION='4.50';
+$CGI::Push::VERSION='4.51';
 use CGI;
 use CGI::Util 'rearrange';
 @ISA = ('CGI');
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CGI-4.50/lib/CGI/Util.pm new/CGI-4.51/lib/CGI/Util.pm
--- old/CGI-4.50/lib/CGI/Util.pm        2020-06-22 09:30:49.000000000 +0200
+++ new/CGI-4.51/lib/CGI/Util.pm        2020-09-25 15:20:37.000000000 +0200
@@ -5,7 +5,7 @@
 our @EXPORT_OK = qw(rearrange rearrange_header make_attributes unescape escape
         expires ebcdic2ascii ascii2ebcdic);
 
-our $VERSION = '4.50';
+our $VERSION = '4.51';
 
 our $_EBCDIC = "\t" ne "\011";
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CGI-4.50/lib/CGI.pm new/CGI-4.51/lib/CGI.pm
--- old/CGI-4.50/lib/CGI.pm     2020-06-22 09:31:06.000000000 +0200
+++ new/CGI-4.51/lib/CGI.pm     2020-09-25 15:21:03.000000000 +0200
@@ -7,7 +7,7 @@
 use warnings;
 #/;
 
-$CGI::VERSION='4.50';
+$CGI::VERSION='4.51';
 
 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.50/lib/Fh.pm new/CGI-4.51/lib/Fh.pm
--- old/CGI-4.50/lib/Fh.pm      2020-06-22 09:30:37.000000000 +0200
+++ new/CGI-4.51/lib/Fh.pm      2020-09-25 15:20:31.000000000 +0200
@@ -5,6 +5,6 @@
 use strict;
 use warnings;
 
-$Fh::VERSION = '4.50';
+$Fh::VERSION = '4.51';
 
 1;


Reply via email to