Accepting request 931756 from devel:languages:perl:autoupdate

- updated to 6.35
   see /usr/share/doc/packages/perl-HTTP-Message/Changes
  6.35      2021-11-11 22:10:31Z
      - Clarify documentation for decoded_content (GH#166) (Eric Wastl)

OBS-URL: https://build.opensuse.org/request/show/931756
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-HTTP-Message?expand=0&rev=45
This commit is contained in:
Pedro Monreal Gonzalez 2021-11-16 14:28:38 +00:00 committed by Git OBS Bridge
parent 18c45c02dc
commit 571b4619f3
4 changed files with 21 additions and 8 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:fe7ebb9e67899d12cd45487581ce4dcb33e491d30342ecb59d047770fa967634
size 89397

3
HTTP-Message-6.35.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d77c3a64c2991c58e0694564fea7ed3610ae1790fa9eb32b51972b0a62bc6619
size 89748

View File

@ -1,3 +1,12 @@
-------------------------------------------------------------------
Fri Nov 12 03:06:15 UTC 2021 - Tina Müller <timueller+perl@suse.de>
- updated to 6.35
see /usr/share/doc/packages/perl-HTTP-Message/Changes
6.35 2021-11-11 22:10:31Z
- Clarify documentation for decoded_content (GH#166) (Eric Wastl)
-------------------------------------------------------------------
Tue Nov 9 03:06:22 UTC 2021 - Tina Müller <timueller+perl@suse.de>

View File

@ -18,7 +18,7 @@
%define cpan_name HTTP-Message
Name: perl-HTTP-Message
Version: 6.34
Version: 6.35
Release: 0
Summary: HTTP style message (base class)
License: Artistic-1.0 OR GPL-1.0-or-later
@ -156,10 +156,14 @@ details about how charset is determined.
* $mess->decoded_content( %options )
Returns the content with any 'Content-Encoding' undone and for textual
content the raw content encoded to Perl's Unicode strings. If the
'Content-Encoding' or 'charset' of the message is unknown this method will
fail by returning 'undef'.
Returns the content with any 'Content-Encoding' undone and, for textual
content ('Content-Type' values starting with 'text/', exactly matching
'application/xml', or ending with '+xml'), the raw content's character set
decoded into Perl's Unicode string format. Note that this at
https://github.com/libwww-perl/HTTP-Message/pull/99 attempt to decode
declared character sets for any other content types like 'application/json'
or 'application/javascript'. If the 'Content-Encoding' or 'charset' of the
message is unknown, this method will fail by returning 'undef'.
The following options can be specified.