You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: NEWS.md
+17-17
Original file line number
Diff line number
Diff line change
@@ -57,7 +57,7 @@
57
57
-------------------
58
58
59
59
- security: update default CA bundle
60
-
- fix pool: make checkout synchrounous (remove unwanted messages)
60
+
- fix pool: make checkout synchronous (remove unwanted messages)
61
61
62
62
1.17.4 - 2021-03-18
63
63
-------------------
@@ -101,7 +101,7 @@
101
101
102
102
- pool queue count metric is now named `queue_count`. You should update your dashboard to reflect it.
103
103
104
-
- possible breacking changes when producing uppercase hexadecimal in urls
104
+
- possible breaking changes when producing uppercase hexadecimal in urls
105
105
106
106
This change the behaviour of urlencode and pathencode to produce
107
107
uppercase hexadecimal to comply to the RFC3986 which may affect
@@ -129,7 +129,7 @@ systems using URL as signature or in an hash.
129
129
- request: handle Connection: close response header for stteam
130
130
- http: handle leading new lines in HTTP messages
131
131
- http: handle trailers in persistent connection
132
-
- pool: update pool timeout docummentation
132
+
- pool: update pool timeout documentation
133
133
- url: fix urlencode
134
134
135
135
1.15.2 - 2019-09-25
@@ -277,7 +277,7 @@ systems using URL as signature or in an hash.
277
277
278
278
- fix: race condition in controlling process (#407)
279
279
- fix: spec of #hackney_url{} (#404)
280
-
- fix: make sure to not lost a message during hiberntion in async request
280
+
- fix: make sure to not lost a message during hibernation in async request
281
281
- security: certifi 1.2.0
282
282
- dependency: update idna 5.0.0
283
283
@@ -330,7 +330,7 @@ systems using URL as signature or in an hash.
330
330
- add: new `socks5_resolver` function
331
331
- fix: `hackney_util:merge_opts/2`
332
332
- improvements: inet6 support in socks5 sockets
333
-
- doc: miscenaleous docs fixes
333
+
- doc: miscellaneous docs fixes
334
334
- security: being more strict in ssl support
335
335
- security: bump to certifi 0.7
336
336
@@ -363,7 +363,7 @@ systems using URL as signature or in an hash.
363
363
- refactor: one flat source
364
364
- replace hackney_metrics_* by [metrics](https://github.com/benoitc/erlang-metrics) library
365
365
- fix: hackney_pool (#286)
366
-
- security: bump to [erlang-certifi](https//github.com/certifi/erlang-certifi) 0.4.0
366
+
- security: bump to [erlang-certifi](https://github.com/certifi/erlang-certifi) 0.4.0
367
367
368
368
1.4.10 - 2016/02/27
369
369
------------------
@@ -423,7 +423,7 @@ systems using URL as signature or in an hash.
423
423
- fix `connect_time metric` (#227)
424
424
- fix redirection when `with_body` is enabled (#228)
425
425
- close half-closed socket to avoid leak (#231)
426
-
- fix undexpected message in `hackney_stream` (#223)
426
+
- fix unexpected message in `hackney_stream` (#223)
427
427
- fix receive/error in hackney_manager (#232)
428
428
429
429
1.3.1 - 2015/07/28
@@ -449,7 +449,7 @@ systems using URL as signature or in an hash.
449
449
- new: updated root certificates
450
450
- fix: ignore comma in set-cookie attributes (#193)
451
451
- fix: status line parsing when reason phrase is missing entirely (#190)
452
-
- fix: make sure sure the response is done during async streaming (#186)
452
+
- fix: make sure the response is done during async streaming (#186)
453
453
- fix metrics (#186)
454
454
- new: bump latest version of `ssl_verify_hostname` (#175)
455
455
- fix: parse server headers
@@ -590,8 +590,8 @@ supported release of hackney.
590
590
### Breaking change:
591
591
592
592
When doing an HEAD request, the signature of the response when it
593
-
succeeded is now `{ok, Status, ResponseHeaders}` and do not contains a
594
-
client reference any more.
593
+
succeeded is now `{ok, Status, ResponseHeaders}` and do not contain a
594
+
client reference anymore.
595
595
596
596
597
597
0.13.0 - 2014/07/08
@@ -618,7 +618,7 @@ client reference any more.
618
618
- improvement: URI encoding is now fully normalized.
619
619
- improvement: TCP_NODELAY is now available by default for all transports
620
620
- improvements: IDNA parsing is only done during the normalization which
621
-
makes all the connections faster..
621
+
makes all the connections faster.
622
622
- fix: connections options are now correctly passed to the transports.
623
623
- fix: HTTP proxying. make sure we reuse the connection
624
624
- fix: HTTP proxying, only resolve the proxy domain.
@@ -645,7 +645,7 @@ function `hackney_mimetypes:filename/1` .
645
645
- make sure we finish a multipart stream
646
646
- bump hackney_lib to 0.2.5
647
647
- enable TCP_NODELAY by default. (To disable, pass the option
648
-
`{nodelay, false} to `connect_options`.
648
+
`{nodelay, false} to `connect_options`).
649
649
650
650
0.11.1 - 2014/03/03
651
651
-------------------
@@ -692,7 +692,7 @@ change fix it.
692
692
- All messages from an async response are now under the
693
693
format `{hackney_response, Ref, ... }` to distinct hackney messages
694
694
from others in a process easily.
695
-
- You can only make an async response at a time. Ie if you are are doing
695
+
- You can only make an async response at a time. Ie if you are doing
696
696
a persistent request (reusing the same reference) you will need to
697
697
pass the async option again to the request. For that purpose the
698
698
functions hackney:send_request/3 and hackney:setopts/2 have been
@@ -710,9 +710,9 @@ added.
710
710
711
711
- add support for multipart responses
712
712
- add support for cookies: There is now a `cookie`
713
-
option that can be passed to the request. It can be a sinle cookie or a
713
+
option that can be passed to the request. It can be a single cookie or a
714
714
list of cookies. To parse cookies from the response a function `hackney:cookies/1` has
715
-
been added. It return all the cookies as a list of [{Key, Value}].
715
+
been added. It returns all the cookies as a list of [{Key, Value}].
716
716
- breaking change: use [hackney_lib](https://github.com/benoitc/hackney_lib) a web toolkit to handle the HTTP protocol and other manipulations.
717
717
- optimization: send body and headers together when it is possible
718
718
- fix release handling
@@ -757,7 +757,7 @@ used for async response requests.
757
757
use `hackney:close/1` now.
758
758
- breaking change: rename `hackney:raw/1` function to
759
759
`hackney:cancel_request/1`.
760
-
- breaking change: the hakney pool handler based on dispcount is now
760
+
- breaking change: the hackney pool handler based on dispcount is now
761
761
available in its [own repository](https://github.com/benoitc/hackney_disp) so hackney doe not depends on dispcount.
762
762
- fix: canceling and closing a request now make sure the async response
763
763
process is killed.
@@ -801,7 +801,7 @@ used for async response requests.
801
801
- fix: correct the path passed to a request
802
802
- fix: multipart forms
803
803
- fix: Make sure that the controller process of the socket is the pool process when the socket is in the pool
804
-
- fix: auth header when when the user is not given
0 commit comments