Skip to content

Commit 66aa3bd

Browse files
committed
Merge tag '1.9.11' into 1.10-maintenance
Fedify 1.9.11
2 parents b0329c4 + d61de18 commit 66aa3bd

12 files changed

Lines changed: 6401 additions & 250 deletions

File tree

CHANGES.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ Version 1.10.10
88

99
To be released.
1010

11+
### @fedify/fedify
12+
13+
- Fixed a security vulnerability in Linked Data Signature verification that
14+
could allow certain signed activities to be interpreted differently than
15+
intended. [[CVE-2026-42462]]
16+
1117

1218
Version 1.10.9
1319
--------------
@@ -244,6 +250,20 @@ Released on December 24, 2025.
244250
- Implemented `list()` method in `WorkersKvStore`. [[#498], [#500]]
245251

246252

253+
Version 1.9.11
254+
--------------
255+
256+
Released on May 21, 2026.
257+
258+
### @fedify/fedify
259+
260+
- Fixed a security vulnerability in Linked Data Signature verification that
261+
could allow certain signed activities to be interpreted differently than
262+
intended. [[CVE-2026-42462]]
263+
264+
[CVE-2026-42462]: https://github.com/fedify-dev/fedify/security/advisories/GHSA-9rfg-v8g9-9367
265+
266+
247267
Version 1.9.10
248268
--------------
249269

packages/fedify/src/federation/context.ts

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -585,9 +585,12 @@ export interface InboxContext<TContextData> extends Context<TContextData> {
585585
* Forwards a received activity to the recipients' inboxes. The forwarded
586586
* activity will be signed in HTTP Signatures by the forwarder, but its
587587
* payload will not be modified, i.e., Linked Data Signatures and Object
588-
* Integrity Proofs will not be added. Therefore, if the activity is not
589-
* signed (i.e., it has neither Linked Data Signatures nor Object Integrity
590-
* Proofs), the recipient probably will not trust the activity.
588+
* Integrity Proofs will not be added. Even when Fedify internally
589+
* normalizes a Linked Data Signature activity for parsing, this method still
590+
* forwards the original received payload so the sender's signatures/proofs
591+
* are preserved as-is. Therefore, if the activity is not signed (i.e., it
592+
* has neither Linked Data Signatures nor Object Integrity Proofs), the
593+
* recipient probably will not trust the activity.
591594
* @param forwarder The forwarder's identifier or the forwarder's username
592595
* or the forwarder's key pair(s).
593596
* @param recipients The recipients of the activity.
@@ -609,9 +612,12 @@ export interface InboxContext<TContextData> extends Context<TContextData> {
609612
* Forwards a received activity to the recipients' inboxes. The forwarded
610613
* activity will be signed in HTTP Signatures by the forwarder, but its
611614
* payload will not be modified, i.e., Linked Data Signatures and Object
612-
* Integrity Proofs will not be added. Therefore, if the activity is not
613-
* signed (i.e., it has neither Linked Data Signatures nor Object Integrity
614-
* Proofs), the recipient probably will not trust the activity.
615+
* Integrity Proofs will not be added. Even when Fedify internally
616+
* normalizes a Linked Data Signature activity for parsing, this method still
617+
* forwards the original received payload so the sender's signatures/proofs
618+
* are preserved as-is. Therefore, if the activity is not signed (i.e., it
619+
* has neither Linked Data Signatures nor Object Integrity Proofs), the
620+
* recipient probably will not trust the activity.
615621
* @param forwarder The forwarder's identifier or the forwarder's username.
616622
* @param recipients In this case, it must be `"followers"`.
617623
* @param options Options for forwarding the activity.

0 commit comments

Comments
 (0)