@fedify/fedify 0.15.0-dev.359 → 0.15.0-dev.362
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGES.md +21 -0
- package/esm/sig/http.js +1 -1
- package/package.json +1 -1
package/CHANGES.md
CHANGED
|
@@ -9,6 +9,15 @@ Version 0.15.0
|
|
|
9
9
|
To be released.
|
|
10
10
|
|
|
11
11
|
|
|
12
|
+
Version 0.14.2
|
|
13
|
+
--------------
|
|
14
|
+
|
|
15
|
+
Released on August 30, 2024.
|
|
16
|
+
|
|
17
|
+
- Fixed an incompatibility with Meta's [Threads] where sent activities had not
|
|
18
|
+
been verified by their inbox. [[#125]]
|
|
19
|
+
|
|
20
|
+
|
|
12
21
|
Version 0.14.1
|
|
13
22
|
--------------
|
|
14
23
|
|
|
@@ -116,6 +125,18 @@ Released on August 27, 2024.
|
|
|
116
125
|
[#115]: https://github.com/dahlia/fedify/issues/115
|
|
117
126
|
|
|
118
127
|
|
|
128
|
+
Version 0.13.3
|
|
129
|
+
--------------
|
|
130
|
+
|
|
131
|
+
Released on August 30, 2024.
|
|
132
|
+
|
|
133
|
+
- Fixed an incompatibility with Meta's [Threads] where sent activities had not
|
|
134
|
+
been verified by their inbox. [[#125]]
|
|
135
|
+
|
|
136
|
+
[Threads]: https://www.threads.net/
|
|
137
|
+
[#125]: https://github.com/dahlia/fedify/issues/125
|
|
138
|
+
|
|
139
|
+
|
|
119
140
|
Version 0.13.2
|
|
120
141
|
--------------
|
|
121
142
|
|
package/esm/sig/http.js
CHANGED
|
@@ -28,7 +28,7 @@ export async function signRequest(request, privateKey, keyId) {
|
|
|
28
28
|
}
|
|
29
29
|
if (!headers.has("Digest") && body != null) {
|
|
30
30
|
const digest = await dntShim.crypto.subtle.digest("SHA-256", body);
|
|
31
|
-
headers.set("Digest", `
|
|
31
|
+
headers.set("Digest", `SHA-256=${encodeBase64(digest)}`);
|
|
32
32
|
}
|
|
33
33
|
if (!headers.has("Date")) {
|
|
34
34
|
headers.set("Date", new Date().toUTCString());
|