Skip to content

Releases: jayjamesjay/http_req

v0.14.5

Choose a tag to compare

@jayjamesjay jayjamesjay released this 23 Apr 18:13
  • update dependencies
  • fix security issues related to rust-openssl and webpki

v0.14.4

Choose a tag to compare

@jayjamesjay jayjamesjay released this 22 Mar 07:44
  • update dependencies

v0.14.3

Choose a tag to compare

@jayjamesjay jayjamesjay released this 08 Mar 12:50
  • update dependencies:
    • rustls-pki-types ^1.14
    • unicase v2.9
  • fix security issue related to aws-lc-sys (CWE-295)

v0.14.2

Choose a tag to compare

@jayjamesjay jayjamesjay released this 14 Nov 18:30
  • update dependencies:
    • rustls-pki-types ^1.13

v0.14.1

Choose a tag to compare

@jayjamesjay jayjamesjay released this 27 Jul 14:26
  • update dependencies:
    • rustls-pki-types ^1.12
    • webpki-roots ^1.0

v0.14.0

Choose a tag to compare

@jayjamesjay jayjamesjay released this 05 May 16:37
015716d

What's new

  • Improve code quality by refactoring existing code and adding new tests
  • Expand documentation by adding more examples and descriptions for existing functions
  • Allow for more granular control over features including ability to use the library in HTTP only mode
  • Update dependencies (patch)

Breaking changes

  • Remove function remove_spaces, because it has not been used in the current version of library
  • Switch to standard encoding for Basic authentication as per #70 by @saecki
  • Remove ParseErr::Invalid as it has not been used

v0.13.3

Choose a tag to compare

@jayjamesjay jayjamesjay released this 07 Apr 19:54
  • update dependencies (patch)

v0.13.2

Choose a tag to compare

@jayjamesjay jayjamesjay released this 30 Mar 13:15
  • update dependencies:
    • rustls-pki-types ^1.11

v0.13.1

Choose a tag to compare

@jayjamesjay jayjamesjay released this 06 Dec 17:11
  • update dependencies:
    • unicase ^2.8.
    • rustls-pemfile ^2.2
    • rustls-pki-types ^1.10

v0.13.0

Choose a tag to compare

@jayjamesjay jayjamesjay released this 14 Oct 18:30
04f559d

What's new

  • Default headers now include User-Agent
  • Update RedirectPolicy to allow creating Custom policies, which utilize uri
  • Support for Authentication (Basic and Bearer)
  • New dependencies
    • base64 ^0.22.1
    • zeroize ^1.8.1

Breaking changes

  • Content-Length header is automatically added, when body is set for the request as per #41 by @cjqpker, also mentioned in #39