@fedify/fedify 1.6.0-dev.796 → 1.6.0-dev.798
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/README.md +2 -1
- package/esm/deno.js +1 -1
- package/esm/mod.js +2 -1
- package/esm/vocab/vocab.js +176 -176
- package/package.json +1 -1
- package/types/mod.d.ts +2 -1
- package/types/mod.d.ts.map +1 -1
package/README.md
CHANGED
@@ -25,7 +25,7 @@ Currently, Fedify provides the following features out of the box:
|
|
25
25
|
- Type-safe objects for [Activity Vocabulary] (including some vendor-specific
|
26
26
|
extensions)
|
27
27
|
- [WebFinger] client and server
|
28
|
-
- [HTTP Signatures]
|
28
|
+
- [HTTP Signatures] & [HTTP Message Signatures]
|
29
29
|
- [Object Integrity Proofs][FEP-8b32] & [Linked Data Signatures]
|
30
30
|
- Middlewares for handling webhooks
|
31
31
|
- [NodeInfo] protocol
|
@@ -69,6 +69,7 @@ join our [Matrix chat space][Matrix] or [Discord server][Discord] or
|
|
69
69
|
[Activity Vocabulary]: https://www.w3.org/TR/activitystreams-vocabulary/
|
70
70
|
[WebFinger]: https://datatracker.ietf.org/doc/html/rfc7033
|
71
71
|
[HTTP Signatures]: https://tools.ietf.org/html/draft-cavage-http-signatures-12
|
72
|
+
[HTTP Message Signatures]: https://www.rfc-editor.org/rfc/rfc9421
|
72
73
|
[FEP-8b32]: https://w3id.org/fep/8b32
|
73
74
|
[Linked Data Signatures]: https://web.archive.org/web/20170923124140/https://w3c-dvcg.github.io/ld-signatures/
|
74
75
|
[NodeInfo]: https://nodeinfo.diaspora.software/
|
package/esm/deno.js
CHANGED
package/esm/mod.js
CHANGED
@@ -13,7 +13,7 @@
|
|
13
13
|
* - Type-safe objects for [Activity Vocabulary] (including some vendor-specific
|
14
14
|
* extensions)
|
15
15
|
* - [WebFinger] client and server
|
16
|
-
* - [HTTP Signatures]
|
16
|
+
* - [HTTP Signatures] & [HTTP Message Signatures]
|
17
17
|
* - [Object Integrity Proofs][FEP-8b32] & [Linked Data Signatures]
|
18
18
|
* - Middlewares for handling webhooks
|
19
19
|
* - [NodeInfo] protocol
|
@@ -35,6 +35,7 @@
|
|
35
35
|
* [Activity Vocabulary]: https://www.w3.org/TR/activitystreams-vocabulary/
|
36
36
|
* [WebFinger]: https://datatracker.ietf.org/doc/html/rfc7033
|
37
37
|
* [HTTP Signatures]: https://tools.ietf.org/html/draft-cavage-http-signatures-12
|
38
|
+
* [HTTP Message Signatures]: https://www.rfc-editor.org/rfc/rfc9421
|
38
39
|
* [FEP-8b32]: https://w3id.org/fep/8b32
|
39
40
|
* [Linked Data Signatures]: https://web.archive.org/web/20170923124140/https://w3c-dvcg.github.io/ld-signatures/
|
40
41
|
* [NodeInfo]: https://nodeinfo.diaspora.software/
|