Unverified Commit 65e897b5 authored by Hong Minhee's avatar Hong Minhee
Browse files

Merge tag '0.14.2'

Fedify 0.14.2
parents 91708b87 3221409f
Loading
Loading
Loading
Loading
+21 −0
Original line number Diff line number Diff line
@@ -9,6 +9,15 @@ Version 0.15.0
To be released.


Version 0.14.2
--------------

Released on August 30, 2024.

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


Version 0.14.1
--------------

@@ -116,6 +125,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());