Skip to content

Commit 298470b

Browse files
committed
Checking in changes prior to tagging of version 3.15.
Changelog diff is: diff --git a/Changes b/Changes index 81a6724..aa0adb1 100644 --- a/Changes +++ b/Changes @@ -2,6 +2,10 @@ Revision history for Perl module Furl {{$NEXT}} +3.15 2025-09-25T00:24:03Z + - Fix the issue that when timeout happens, then request method returns success when + there is no Content-Length headers(#137) + 3.14 2021-05-13T05:30:22Z - Support 308 HTTP status code
1 parent 4d94f4f commit 298470b

File tree

4 files changed

+13
-6
lines changed

4 files changed

+13
-6
lines changed

Changes

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ Revision history for Perl module Furl
22

33
{{$NEXT}}
44

5+
3.15 2025-09-25T00:24:03Z
6+
- Fix the issue that when timeout happens, then request method returns success when
7+
there is no Content-Length headers(#137)
8+
59
3.14 2021-05-13T05:30:22Z
610
- Support 308 HTTP status code
711

META.json

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"Tokuhiro Matsuno <tokuhirom@gmail.com>"
55
],
66
"dynamic_config" : 0,
7-
"generated_by" : "Minilla/v3.1.15, CPAN::Meta::Converter version 2.150010",
7+
"generated_by" : "Minilla/v3.1.28, CPAN::Meta::Converter version 2.150010",
88
"license" : [
99
"perl_5"
1010
],
@@ -119,7 +119,7 @@
119119
"web" : "https://github.com/tokuhirom/Furl"
120120
}
121121
},
122-
"version" : "3.14",
122+
"version" : "3.15",
123123
"x_contributors" : [
124124
"Audrey Tang <audreyt@audreyt.org>",
125125
"Breno G. de Oliveira <garu@cpan.org>",
@@ -137,6 +137,7 @@
137137
"Neil Bowers <neil@bowers.com>",
138138
"Shohei YOSHIDA <syohex@gmail.com>",
139139
"Shoichi Kaji <skaji@cpan.org>",
140+
"Slaven Rezic <slaven@rezic.de>",
140141
"Toshio Ito <debug.ito@gmail.com>",
141142
"Yasuhiro Matsumoto <mattn.jp@gmail.com>",
142143
"bayashi <bayashi@cpan.org>",
@@ -147,8 +148,10 @@
147148
"lestrrat <lestrrat+github@gmail.com>",
148149
"s-aska <s.aska.org@gmail.com>",
149150
"tarao <tarao.gnn@gmail.com>",
150-
"xaicron <xaicron@gmail.com>"
151+
"xaicron <xaicron@gmail.com>",
152+
"yoshikazusawa <883514+yoshikazusawa@users.noreply.github.com>",
153+
"yuji-hatakeyama <htkymyj0512@gmail.com>"
151154
],
152-
"x_serialization_backend" : "JSON::PP version 4.07",
155+
"x_serialization_backend" : "JSON::PP version 4.16",
153156
"x_static_install" : 1
154157
}

lib/Furl.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use Furl::HTTP;
66
use Furl::Request;
77
use Furl::Response;
88
use Carp ();
9-
our $VERSION = '3.14';
9+
our $VERSION = '3.15';
1010

1111
use 5.008001;
1212

lib/Furl/HTTP.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use warnings;
44
use base qw/Exporter/;
55
use 5.008001;
66

7-
our $VERSION = '3.14';
7+
our $VERSION = '3.15';
88

99
use Carp ();
1010
use Furl::ConnectionCache;

0 commit comments

Comments
 (0)