Hello community,
here is the log from the commit of package perl-Apache-AuthCookie for
openSUSE:Factory checked in at 2018-10-01 08:19:08
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-Apache-AuthCookie (Old)
and /work/SRC/openSUSE:Factory/.perl-Apache-AuthCookie.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "perl-Apache-AuthCookie"
Mon Oct 1 08:19:08 2018 rev:26 rq:638958 version:3.27
Changes:
--------
---
/work/SRC/openSUSE:Factory/perl-Apache-AuthCookie/perl-Apache-AuthCookie.changes
2016-09-26 12:36:12.000000000 +0200
+++
/work/SRC/openSUSE:Factory/.perl-Apache-AuthCookie.new/perl-Apache-AuthCookie.changes
2018-10-01 08:19:11.161900071 +0200
@@ -1,0 +2,54 @@
+Wed Feb 7 16:06:15 UTC 2018 - [email protected]
+
+- updated to 3.27
+ see /usr/share/doc/packages/perl-Apache-AuthCookie/Changes
+
+ 3.27 2017-07-28
+ - Fix POD spelling error [#118545].
+
+ 3.26 2016-09-30
+ - remove unused module Apache::AuthCookie::Autobox from dist
+ - remove CGI.pm dependency. CGI.pm has been removed from perl core, which
+ was the primary reason we used it in the first place. Replaced with
+ dependency on lighter weight set of three modules:
+
+ * HTTP::Body
+ * WWW::Form::UrlEncoded
+ * Hash::MultiValue
+
+ Also recommended (but not required) is WWW::Form::UrlEncoded::XS
+ - Add optional support for charset encoding. If you have something like
+
+ PerlSetVar MyAuthNameEncoding UTF-8
+
+ Then AuthCookie with now automatically decode parameters using the given
+ encoding now. AuthCookie params() data will be decoded automatically if
+ this is on. See details in AuthCookie module documentation. In
addition
+ r->user will be encoded (using byte semantics) using this encoding.
+
+ ***** IMPORTANT *****
+ If you turn this on, this could break your code. r->user() will now be
+ byte encoded using the given encoding. If you use usernames that
contain
+ non-ascii characters you either need to use decoded_user(), or decode
+ r->user() yourself in your subclasses.
+
+ See the AuthCookie docs for more details.
+ - add optional support for decoding httpd.conf requires directives. This
is
+ enabled with a RequiresEncoding setting:
+
+ PerlSetVar MyAuthNameRequiresEncoding UTF-8
+
+ Then decoded_requires($r) will return the decoded value of $r->requires
+ You only need this if you have non-ascii characters in your requires
+ directives such as:
+
+ Requires user programmør
+
+ - add decoded_user($r) method to get the value of r->user decoded using
+ character semantics instead of bytes. Due to the fact that r->user is
a C
+ API method we cannot get character semantics on r->user directly. If no
+ Encoding directive is in effect, then this is the same as r->user.
+ - add encoding($r): string which returns the value of the Encoding
directive
+ that is in effect for the current request.
+
+-------------------------------------------------------------------
Old:
----
Apache-AuthCookie-3.25.tar.gz
New:
----
Apache-AuthCookie-3.27.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ perl-Apache-AuthCookie.spec ++++++
--- /var/tmp/diff_new_pack.ozkB2F/_old 2018-10-01 08:19:11.581899804 +0200
+++ /var/tmp/diff_new_pack.ozkB2F/_new 2018-10-01 08:19:11.589899798 +0200
@@ -1,7 +1,7 @@
#
# spec file for package perl-Apache-AuthCookie
#
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -12,33 +12,37 @@
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
Name: perl-Apache-AuthCookie
-Version: 3.25
+Version: 3.27
Release: 0
%define cpan_name Apache-AuthCookie
Summary: Perl Authentication and Authorization via cookies
-License: Artistic-1.0 or GPL-1.0+
+License: Artistic-1.0 OR GPL-1.0-or-later
Group: Development/Libraries/Perl
-Url: http://search.cpan.org/dist/Apache-AuthCookie/
-Source0:
http://www.cpan.org/authors/id/M/MS/MSCHOUT/%{cpan_name}-%{version}.tar.gz
+Url: https://metacpan.org/release/%{cpan_name}
+Source0:
https://cpan.metacpan.org/authors/id/M/MS/MSCHOUT/%{cpan_name}-%{version}.tar.gz
Source1: cpanspec.yml
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(Apache::Test) >= 1.39
-BuildRequires: perl(CGI) >= 3.12
BuildRequires: perl(Class::Load) >= 0.03
+BuildRequires: perl(HTTP::Body)
+BuildRequires: perl(Hash::MultiValue)
BuildRequires: perl(Test::More) >= 0.94
-BuildRequires: perl(mod_perl2) >= 1.999022
-Requires: perl(CGI) >= 3.12
+BuildRequires: perl(URI::Escape) >= 1.31
+BuildRequires: perl(WWW::Form::UrlEncoded)
Requires: perl(Class::Load) >= 0.03
+Requires: perl(HTTP::Body)
+Requires: perl(Hash::MultiValue)
Requires: perl(Test::More) >= 0.94
-Requires: perl(mod_perl2) >= 1.999022
+Requires: perl(WWW::Form::UrlEncoded)
+Recommends: perl(WWW::Form::UrlEncoded::XS)
%{perl_requires}
# MANUAL BEGIN
BuildRequires: netcfg
@@ -217,6 +221,7 @@
%files -f %{name}.files
%defattr(-,root,root,755)
-%doc Changes LICENSE README README.modperl2 scripts
+%doc Changes README README.modperl2 scripts
+%license LICENSE
%changelog
++++++ Apache-AuthCookie-3.25.tar.gz -> Apache-AuthCookie-3.27.tar.gz ++++++
++++ 3254 lines of diff (skipped)