Sha256: cbde5003d7200f79caf9676452d4d3ddc817317c3354126036e5fdeb2cac73bd

Contents?: true

Size: 1.28 KB

Versions: 4

Compression:

Stored size: 1.28 KB

Contents

# 0.24.4

## Improvements

* `digest_authentication` plugin now supports passing HA1hashed with password HA1s (common to store in htdigest files for example) when setting the`:hashed` kwarg to `true` in the `.digest_auth` call.
  * ex: `http.digest_auth(user, get_hashed_passwd_from_htdigest(user), hashed: true)`
* TLS session resumption is now supported
  * whenever possible, `httpx` sessions will recycle used connections so that, in the case of TLS connections, the first session will keep being reusedd, thereby diminishing the overhead of subsequent TLS handshakes on the same host.
  * TLS sessions are only reused in the scope of the same `httpx` session, unless the `:persistent` plugin is used, in which case, the persisted `httpx` session will always try to resume TLS sessions.

## Bugfixess

* When explicitly using IP addresses in the URL host, TLS handshake will now verify tif he IP address is included in the certificate.
  * IP address will keep not be used for SNI, as per RFC 6066, section 3.
  * ex: `http.get("https://10.12.0.12/get")`
  * if you want the prior behavior, set `HTTPX.with(ssl: {verify_hostname: faalse})`
* Turn TLS hostname verification on for `jruby` (it's turned off by default).
  * if you want the prior behavior, set `HTTPX.with(ssl: {verify_hostname: faalse})`

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
httpx-0.24.7 doc/release_notes/0_24_4.md
httpx-0.24.6 doc/release_notes/0_24_4.md
httpx-0.24.5 doc/release_notes/0_24_4.md
httpx-0.24.4 doc/release_notes/0_24_4.md