@fedify/fedify 0.14.1 → 0.14.3
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 +41 -0
- package/esm/sig/http.js +1 -1
- package/package.json +1 -1
package/CHANGES.md
CHANGED
|
@@ -3,6 +3,24 @@
|
|
|
3
3
|
Fedify changelog
|
|
4
4
|
================
|
|
5
5
|
|
|
6
|
+
Version 0.14.3
|
|
7
|
+
--------------
|
|
8
|
+
|
|
9
|
+
Released on September 1, 2024.
|
|
10
|
+
|
|
11
|
+
- Fixed `fedify inbox` command where it had ignored `-a`/`--accept-follow`
|
|
12
|
+
options when no `-f`/`--follow` option was provided. [[#132]]
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
Version 0.14.2
|
|
16
|
+
--------------
|
|
17
|
+
|
|
18
|
+
Released on August 30, 2024.
|
|
19
|
+
|
|
20
|
+
- Fixed an incompatibility with Meta's [Threads] where sent activities had not
|
|
21
|
+
been verified by their inbox. [[#125]]
|
|
22
|
+
|
|
23
|
+
|
|
6
24
|
Version 0.14.1
|
|
7
25
|
--------------
|
|
8
26
|
|
|
@@ -110,6 +128,29 @@ Released on August 27, 2024.
|
|
|
110
128
|
[#115]: https://github.com/dahlia/fedify/issues/115
|
|
111
129
|
|
|
112
130
|
|
|
131
|
+
Version 0.13.4
|
|
132
|
+
--------------
|
|
133
|
+
|
|
134
|
+
Released on September 1, 2024.
|
|
135
|
+
|
|
136
|
+
- Fixed `fedify inbox` command where it had ignored `-a`/`--accept-follow`
|
|
137
|
+
options when no `-f`/`--follow` option was provided. [[#132]]
|
|
138
|
+
|
|
139
|
+
[#132]: https://github.com/dahlia/fedify/issues/132
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
Version 0.13.3
|
|
143
|
+
--------------
|
|
144
|
+
|
|
145
|
+
Released on August 30, 2024.
|
|
146
|
+
|
|
147
|
+
- Fixed an incompatibility with Meta's [Threads] where sent activities had not
|
|
148
|
+
been verified by their inbox. [[#125]]
|
|
149
|
+
|
|
150
|
+
[Threads]: https://www.threads.net/
|
|
151
|
+
[#125]: https://github.com/dahlia/fedify/issues/125
|
|
152
|
+
|
|
153
|
+
|
|
113
154
|
Version 0.13.2
|
|
114
155
|
--------------
|
|
115
156
|
|
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());
|