diff --git a/Changes b/Changes index e2f27ea..39b52a7 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ Revision history for Perl extension HTTP::Parser::XS. +0.15 + - deny HTTP header field with an empty name + 0.14 - do not include '#' and the following characters in URI in PATH_INFO or QUERY_STRING diff --git a/lib/HTTP/Parser/XS.pm b/lib/HTTP/Parser/XS.pm index 1de9836..a847c6f 100644 --- a/lib/HTTP/Parser/XS.pm +++ b/lib/HTTP/Parser/XS.pm @@ -19,7 +19,7 @@ use constant { HEADERS_AS_ARRAYREF =>2, # Ordered ArrayRef : [ name, value, name2, value2 ... ] }; -our $VERSION = '0.14'; +our $VERSION = '0.15'; our $BACKEND;