File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,6 +3,8 @@ Revision history for HTTP-Message
33{{$NEXT}}
44 - Replace "base" with "parent" (GH#176) (James Raspass)
55 - Replace "print" with "note" in tests (GH#178) (James Raspass)
6+ - Noted that OPTIONS supported was added in 6.1, to the doc
7+ for HTTP::Request::Common. Addresses GH#177.
68
796.37 2022-06-14 14:08:55Z
810 - Support for Brotli "br" encoding (GH#163) (trizen and Julien Fiegehenn)
@@ -73,6 +75,7 @@ Revision history for HTTP-Message
7375 - Revert (GH#125) "try hard to make a usable file name" (GH#130) (Olaf
7476 Alders)
7577 - Fix JSON request encoding examples in POD (GH#126) (Michael Schout)
78+ - Added support for OPTIONS requests.
7679
77806.20 2019-02-05 01:46:39Z (TRIAL RELEASE)
7881 - Fix encoded file names when LC_ALL=C (GH#125) (Lars Dɪᴇᴄᴋᴏᴡ 迪拉斯)
Original file line number Diff line number Diff line change @@ -405,6 +405,10 @@ The same as C<POST> below, but the method in the request is C<PUT>
405405
406406The same as C<POST > below, but the method in the request is C<OPTIONS >
407407
408+ This was added in version 6.21, so you should require that in your code:
409+
410+ use HTTP::Request::Common 6.21;
411+
408412=item POST $url
409413
410414=item POST $url, Header => Value,...
You can’t perform that action at this time.
0 commit comments