Skip to content

Commit 6eaca56

Browse files
committed
bump hackney to 1.21.0
1 parent 90a1fe4 commit 6eaca56

File tree

8 files changed

+27
-18
lines changed

8 files changed

+27
-18
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
2012-2023 (c) Benoît Chesneau <bchesneau@pm.me>
1+
2012-2025 (c) Benoît Chesneau <bchesneau@pm.me>
22

33
Licensed under the Apache License, Version 2.0 (the "License");
44
you may not use this file except in compliance with the License.

NEWS.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11
# NEWS
2+
1.21.0 - 2025-02-20
3+
-------------------
4+
5+
- fix: remove SSL options incompatible with tls 1.3
6+
- fix: url parsing handle "/" path correctly
7+
- fix: simplify integration test suite
8+
- fix: handle chunked response in redirect responses
9+
- fix: handle http & https proxies separately
10+
- fix: skip junk lines in 1.xx response
11+
12+
** security fixes ***
13+
14+
- fix URL parsing to prevent SSRF . (related to CVE-2025-1211)
15+
- use latest SSL certificate bundle
16+
217

3-
1.20.1 - 2013-10-11
18+
1.20.1 - 2023-10-11
419
-------------------
520

621
- fix multipart: handle case where Length is undefined

NOTICE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
hackney
22
-------
33

4-
2012-2023 (c) Benoît Chesneau <bchesneau@pm.me>
4+
2012-2025 (c) Benoît Chesneau <bchesneau@pm.me>
55

66
hackney is released under the Apache 2 license. See the LICENSE file for
77
the complete license.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
# hackney - HTTP client library in Erlang #
44

5-
Copyright (c) 2012-2023 Benoît Chesneau.
5+
Copyright (c) 2012-2025 Benoît Chesneau.
66

7-
__Version:__ 1.20.1
7+
__Version:__ 1.21.0
88

99
# hackney
1010

TODO.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,12 @@
11
# TODO
22

3-
1.21.0
3+
2.0.0
44
------
55

66
- Improve pool
77
- Improve proxying
8-
9-
2.0.0
10-
-----
118
- Support Websockets
129
- Support HTTP 2
1310
- Request / Response hooks
1411
- Dynamic response behaviour.
15-
16-
2.1.0
17-
-----
1812
- Support HTTP 3

doc/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
# hackney - HTTP client library in Erlang #
44

5-
Copyright (c) 2012-2023 Benoît Chesneau.
5+
Copyright (c) 2012-2025 Benoît Chesneau.
66

7-
__Version:__ 1.20.1
7+
__Version:__ 1.21.0
88

99
# hackney
1010

doc/overview.edoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
%%==============================================================================
3-
%% Copyright 2012-2021 Benoît Chesneau
3+
%% Copyright 2012-2025 Benoît Chesneau
44
%%
55
%% Licensed under the Apache License, Version 2.0 (the "License");
66
%% you may not use this file except in compliance with the License.
@@ -16,8 +16,8 @@
1616
%%==============================================================================
1717

1818

19-
@copyright 2012-2023 Benoît Chesneau.
20-
@version 1.20.1
19+
@copyright 2012-2025 Benoît Chesneau.
20+
@version 1.21.0
2121
@title hackney - HTTP client library in Erlang
2222

2323
@doc

src/hackney.app.src

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
{application, hackney,
55
[
66
{description, "simple HTTP client"},
7-
{vsn, "1.20.1"},
7+
{vsn, "1.21.0"},
88
{registered, [hackney_pool]},
99
{applications, [kernel,
1010
stdlib,

0 commit comments

Comments
 (0)