Skip to content

Latest commit

 

History

History
53 lines (30 loc) · 1.94 KB

CHANGELOG.md

File metadata and controls

53 lines (30 loc) · 1.94 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog.

v0.3.2 (2024-02-16)

Added

  • Add support for signing AWS event stream messages (#23)
  • Add body_digest option to sign_v4/10 (#25)

v0.3.1 (2022-04-27)

Fixed

  • Signature for URLs with explicit port component (#18)

v0.3.0 (2022-04-12)

This release changes the default behaviour of sign_v4_query_params. Instead of setting the body digest to "UNSIGNED-PAYLOAD" it now computes the digest of an empty string. To retain the current behaviour you need to pass an option:

-sign_v4_query_params(AccessKeyID, SecretAccessKey, Region, Service, DateTime, Method, URL, []).
+sign_v4_query_params(AccessKeyID, SecretAccessKey, Region, Service, DateTime, Method, URL, [{body_digest, <<"UNSIGNED-PAYLOAD">>}]).

Added

  • Support for body signing in presigned requests (#15)

Changed

  • Default body digest in sign_v4_query_params signature (#15)

v0.2.0 (2021-09-27)

Changed

  • Changed sign_v4_query_params signatures to also accept HTTP method (#11)

v0.1.1 (2021-08-28)

Added

  • Support for query string signature (#7)

v0.1.0 (2021-08-17)

Initial release