Unverified Commit bdfce679 authored by Hong Minhee's avatar Hong Minhee
Browse files

Merge tag '0.13.3' into 0.14-maintenance

Fedify 0.13.3
parents e9df954b 8951fc1e
Loading
Loading
Loading
Loading
+15 −0
Original line number Diff line number Diff line
@@ -8,6 +8,9 @@ Version 0.14.2

To be released.

 -  Fixed an incompatibility with Meta's [Threads] where sent activities had not
    been verified by their inbox.  [[#125]]


Version 0.14.1
--------------
@@ -116,6 +119,18 @@ Released on August 27, 2024.
[#115]: https://github.com/dahlia/fedify/issues/115


Version 0.13.3
--------------

Released on August 30, 2024.

 -  Fixed an incompatibility with Meta's [Threads] where sent activities had not
    been verified by their inbox.  [[#125]]

[Threads]: https://www.threads.net/
[#125]: https://github.com/dahlia/fedify/issues/125


Version 0.13.2
--------------

+1 −1
Original line number Diff line number Diff line
@@ -34,7 +34,7 @@ export async function signRequest(
  }
  if (!headers.has("Digest") && body != null) {
    const digest = await crypto.subtle.digest("SHA-256", body);
    headers.set("Digest", `sha-256=${encodeBase64(digest)}`);
    headers.set("Digest", `SHA-256=${encodeBase64(digest)}`);
  }
  if (!headers.has("Date")) {
    headers.set("Date", new Date().toUTCString());