Hello community,

here is the log from the commit of package perl-CGI for openSUSE:Factory 
checked in at 2020-02-09 21:02:07
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-CGI (Old)
 and      /work/SRC/openSUSE:Factory/.perl-CGI.new.26092 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "perl-CGI"

Sun Feb  9 21:02:07 2020 rev:15 rq:770044 version:4.46

Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-CGI/perl-CGI.changes        2020-01-20 
22:48:03.879173173 +0100
+++ /work/SRC/openSUSE:Factory/.perl-CGI.new.26092/perl-CGI.changes     
2020-02-09 21:02:22.187351928 +0100
@@ -1,0 +2,11 @@
+Tue Feb  4 03:07:29 UTC 2020 -  <timueller+p...@suse.de>
+
+- updated to 4.46
+   see /usr/share/doc/packages/perl-CGI/Changes
+
+  4.46 2020-02-03
+  
+      [ DOCUMENTATION ]
+      - Document support for SameSite=None cookies (GH #238)
+
+-------------------------------------------------------------------

Old:
----
  CGI-4.45.tar.gz

New:
----
  CGI-4.46.tar.gz

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

Other differences:
------------------
++++++ perl-CGI.spec ++++++
--- /var/tmp/diff_new_pack.ON7pE5/_old  2020-02-09 21:02:23.343352584 +0100
+++ /var/tmp/diff_new_pack.ON7pE5/_new  2020-02-09 21:02:23.347352587 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           perl-CGI
-Version:        4.45
+Version:        4.46
 Release:        0
 %define cpan_name CGI
 Summary:        Handle Common Gateway Interface requests and responses

++++++ CGI-4.45.tar.gz -> CGI-4.46.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CGI-4.45/Changes new/CGI-4.46/Changes
--- old/CGI-4.45/Changes        2020-01-13 08:02:38.000000000 +0100
+++ new/CGI-4.46/Changes        2020-02-03 15:47:56.000000000 +0100
@@ -1,3 +1,8 @@
+4.46 2020-02-03
+
+    [ DOCUMENTATION ]
+    - Document support for SameSite=None cookies (GH #238)
+
 4.45 2019-06-03
 
     [ ENHANCEMENT ]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CGI-4.45/META.json new/CGI-4.46/META.json
--- old/CGI-4.45/META.json      2020-01-13 08:02:50.000000000 +0100
+++ new/CGI-4.46/META.json      2020-02-03 15:49:04.000000000 +0100
@@ -78,6 +78,6 @@
          "web" : "https://github.com/leejo/CGI.pm";
       }
    },
-   "version" : "4.45",
+   "version" : "4.46",
    "x_serialization_backend" : "JSON::PP version 4.02"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CGI-4.45/META.yml new/CGI-4.46/META.yml
--- old/CGI-4.45/META.yml       2020-01-13 08:02:50.000000000 +0100
+++ new/CGI-4.46/META.yml       2020-02-03 15:49:04.000000000 +0100
@@ -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.45'
+version: '4.46'
 x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CGI-4.45/lib/CGI/Carp.pm new/CGI-4.46/lib/CGI/Carp.pm
--- old/CGI-4.45/lib/CGI/Carp.pm        2020-01-13 07:59:15.000000000 +0100
+++ new/CGI-4.46/lib/CGI/Carp.pm        2020-02-03 15:46:16.000000000 +0100
@@ -327,7 +327,7 @@
 
 $main::SIG{__WARN__}=\&CGI::Carp::warn;
 
-$CGI::Carp::VERSION     = '4.45';
+$CGI::Carp::VERSION     = '4.46';
 $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.45/lib/CGI/Cookie.pm 
new/CGI-4.46/lib/CGI/Cookie.pm
--- old/CGI-4.45/lib/CGI/Cookie.pm      2020-01-13 07:59:22.000000000 +0100
+++ new/CGI-4.46/lib/CGI/Cookie.pm      2020-02-03 15:46:22.000000000 +0100
@@ -5,7 +5,7 @@
 
 use if $] >= 5.019, 'deprecate';
 
-our $VERSION='4.45';
+our $VERSION='4.46';
 
 use CGI::Util qw(rearrange unescape escape);
 use overload '""' => \&as_string, 'cmp' => \&compare, 'fallback' => 1;
@@ -392,8 +392,9 @@
 B<-httponly> if set to a true value, the cookie will not be accessible
 via JavaScript.
 
-B<-samesite> may be C<Lax> or C<Strict> and is an evolving part of the
-standards for cookies. Please refer to current documentation regarding it.
+B<-samesite> may be C<Lax>, C<Strict>, or C<None> and is an evolving part
+of the standards for cookies. Please refer to current documentation
+regarding it.
 
 For compatibility with Apache::Cookie, you may optionally pass in
 a mod_perl request object as the first argument to C<new()>. It will
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CGI-4.45/lib/CGI/File/Temp.pm 
new/CGI-4.46/lib/CGI/File/Temp.pm
--- old/CGI-4.45/lib/CGI/File/Temp.pm   2020-01-13 07:59:10.000000000 +0100
+++ new/CGI-4.46/lib/CGI/File/Temp.pm   2020-02-03 15:46:11.000000000 +0100
@@ -3,7 +3,7 @@
 # you use it directly and your code breaks horribly.
 package CGI::File::Temp;
 
-$CGI::File::Temp::VERSION = '4.45';
+$CGI::File::Temp::VERSION = '4.46';
 
 use parent File::Temp;
 use parent Fh;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CGI-4.45/lib/CGI/Pretty.pm 
new/CGI-4.46/lib/CGI/Pretty.pm
--- old/CGI-4.45/lib/CGI/Pretty.pm      2020-01-13 07:59:25.000000000 +0100
+++ new/CGI-4.46/lib/CGI/Pretty.pm      2020-02-03 15:46:24.000000000 +0100
@@ -6,7 +6,7 @@
 use if $] >= 5.019, 'deprecate';
 use CGI ();
 
-$CGI::Pretty::VERSION = '4.45';
+$CGI::Pretty::VERSION = '4.46';
 $CGI::DefaultClass = __PACKAGE__;
 @CGI::Pretty::ISA = qw( CGI );
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CGI-4.45/lib/CGI/Push.pm new/CGI-4.46/lib/CGI/Push.pm
--- old/CGI-4.45/lib/CGI/Push.pm        2020-01-13 07:59:27.000000000 +0100
+++ new/CGI-4.46/lib/CGI/Push.pm        2020-02-03 15:46:26.000000000 +0100
@@ -6,7 +6,7 @@
 use warnings;
 #/;
 
-$CGI::Push::VERSION='4.45';
+$CGI::Push::VERSION='4.46';
 use CGI;
 use CGI::Util 'rearrange';
 @ISA = ('CGI');
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CGI-4.45/lib/CGI/Util.pm new/CGI-4.46/lib/CGI/Util.pm
--- old/CGI-4.45/lib/CGI/Util.pm        2020-01-13 07:59:18.000000000 +0100
+++ new/CGI-4.46/lib/CGI/Util.pm        2020-02-03 15:46:19.000000000 +0100
@@ -6,7 +6,7 @@
 our @EXPORT_OK = qw(rearrange rearrange_header make_attributes unescape escape
         expires ebcdic2ascii ascii2ebcdic);
 
-our $VERSION = '4.45';
+our $VERSION = '4.46';
 
 our $_EBCDIC = "\t" ne "\011";
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CGI-4.45/lib/CGI.pm new/CGI-4.46/lib/CGI.pm
--- old/CGI-4.45/lib/CGI.pm     2020-01-13 07:59:42.000000000 +0100
+++ new/CGI-4.46/lib/CGI.pm     2020-02-03 15:46:42.000000000 +0100
@@ -8,7 +8,7 @@
 use warnings;
 #/;
 
-$CGI::VERSION='4.45';
+$CGI::VERSION='4.46';
 
 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.45/lib/Fh.pm new/CGI-4.46/lib/Fh.pm
--- old/CGI-4.45/lib/Fh.pm      2020-01-13 07:59:07.000000000 +0100
+++ new/CGI-4.46/lib/Fh.pm      2020-02-03 15:46:09.000000000 +0100
@@ -5,6 +5,6 @@
 use strict;
 use warnings;
 
-$Fh::VERSION = '4.45';
+$Fh::VERSION = '4.46';
 
 1;


Reply via email to