@fedify/fedify 1.6.0-dev.790 → 1.6.0-dev.795
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 +15 -3
- package/FEDERATION.md +6 -2
- package/esm/deno.js +1 -1
- package/esm/vocab/vocab.js +176 -176
- package/package.json +1 -1
package/CHANGES.md
CHANGED
@@ -34,14 +34,26 @@ To be released.
|
|
34
34
|
- Added `HttpMessageSignaturesSpecDeterminer` interface.
|
35
35
|
- Added `--first-knock` option to `fedify lookup` command.
|
36
36
|
|
37
|
-
- The `exportJwk()` function now populates the `alg` property of a returned
|
38
|
-
`JsonWebKey` object with `"Ed25519"` if the input key is an Ed25519 key.
|
39
|
-
|
40
37
|
[RFC 9421]: https://www.rfc-editor.org/rfc/rfc9421
|
41
38
|
[#208]: https://github.com/fedify-dev/fedify/issues/208
|
42
39
|
[#227]: https://github.com/fedify-dev/fedify/issues/227
|
43
40
|
|
44
41
|
|
42
|
+
Version 1.5.2
|
43
|
+
-------------
|
44
|
+
|
45
|
+
Released on May 11, 2025.
|
46
|
+
|
47
|
+
- Fixed the `fedify init` command to install the correct version of
|
48
|
+
*@fedify/express* package. [[#230], [#231] by Emelia Smith]
|
49
|
+
|
50
|
+
- The `exportJwk()` function now populates the `alg` property of a returned
|
51
|
+
`JsonWebKey` object with `"Ed25519"` if the input key is an Ed25519 key.
|
52
|
+
|
53
|
+
[#230]: https://github.com/fedify-dev/fedify/issues/230
|
54
|
+
[#231]: https://github.com/fedify-dev/fedify/pull/231
|
55
|
+
|
56
|
+
|
45
57
|
Version 1.5.1
|
46
58
|
-------------
|
47
59
|
|
package/FEDERATION.md
CHANGED
@@ -8,13 +8,15 @@ Supported federation protocols and standards
|
|
8
8
|
|
9
9
|
- [ActivityPub] (S2S)
|
10
10
|
- [WebFinger]
|
11
|
-
- [HTTP Signatures]
|
11
|
+
- [HTTP Message Signatures] (RFC 9421)
|
12
|
+
- [HTTP Signatures] (draft-cavage-http-signatures-12)
|
12
13
|
- [Linked Data Signatures]
|
13
14
|
- [NodeInfo]
|
14
15
|
|
15
16
|
[ActivityPub]: https://www.w3.org/TR/activitypub/
|
16
17
|
[WebFinger]: https://datatracker.ietf.org/doc/html/rfc7033
|
17
|
-
[HTTP Signatures]: https://
|
18
|
+
[HTTP Message Signatures]: https://www.rfc-editor.org/rfc/rfc9421
|
19
|
+
[HTTP Signatures]: https://datatracker.ietf.org/doc/html/draft-cavage-http-signatures-12
|
18
20
|
[Linked Data Signatures]: https://web.archive.org/web/20170923124140/https://w3c-dvcg.github.io/ld-signatures/
|
19
21
|
[NodeInfo]: https://nodeinfo.diaspora.software/
|
20
22
|
|
@@ -30,6 +32,7 @@ Supported FEPs
|
|
30
32
|
- [FEP-5feb][]: Search indexing consent for actors
|
31
33
|
- [FEP-c7d3][]: Ownership
|
32
34
|
- [FEP-c0e0][]: Emoji reactions
|
35
|
+
- [FEP-e232][]: Object Links
|
33
36
|
|
34
37
|
[FEP-67ff]: https://w3id.org/fep/67ff
|
35
38
|
[FEP-8fcf]: https://w3id.org/fep/8fcf
|
@@ -39,6 +42,7 @@ Supported FEPs
|
|
39
42
|
[FEP-5feb]: https://w3id.org/fep/5feb
|
40
43
|
[FEP-c7d3]: https://w3id.org/fep/c7d3
|
41
44
|
[FEP-c0e0]: https://w3id.org/fep/c0e0
|
45
|
+
[FEP-e232]: https://w3id.org/fep/e232
|
42
46
|
|
43
47
|
|
44
48
|
ActivityPub
|