@fedify/fedify 1.5.0-dev.672 → 1.5.0-dev.678
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 +67 -2
- package/esm/deno.js +1 -1
- package/esm/vocab/follow.yaml +3 -0
- package/esm/vocab/undo.yaml +3 -0
- package/esm/vocab/update.yaml +3 -0
- package/esm/vocab/vocab.js +185 -176
- package/package.json +1 -1
- package/types/vocab/vocab.d.ts.map +1 -1
package/CHANGES.md
CHANGED
@@ -16,8 +16,8 @@ To be released.
|
|
16
16
|
- Added `importPkcs1()` function.
|
17
17
|
- Added `importPem()` function.
|
18
18
|
|
19
|
-
-
|
20
|
-
fragment and the actor has only one public key. [[#211]]
|
19
|
+
- The `fetchKey()` function became to choose the public key of the actor
|
20
|
+
if `keyId` has no fragment and the actor has only one public key. [[#211]]
|
21
21
|
|
22
22
|
- Fixed a bug of the `fedify inbox` command where it had failed to render
|
23
23
|
the web interface when the `fedify` command was installed using
|
@@ -33,6 +33,19 @@ To be released.
|
|
33
33
|
[#211]: https://github.com/fedify-dev/fedify/issues/211
|
34
34
|
|
35
35
|
|
36
|
+
Version 1.4.3
|
37
|
+
-------------
|
38
|
+
|
39
|
+
Released on February 22, 2025.
|
40
|
+
|
41
|
+
- Added the following default contexts to `Follow`, `Undo`, and `Update`
|
42
|
+
classes:
|
43
|
+
|
44
|
+
- <https://w3id.org/security/v1>
|
45
|
+
- <https://www.w3.org/ns/did/v1>
|
46
|
+
- <https://w3id.org/security/multikey/v1>
|
47
|
+
|
48
|
+
|
36
49
|
Version 1.4.2
|
37
50
|
-------------
|
38
51
|
|
@@ -144,6 +157,19 @@ Released on February 5, 2025.
|
|
144
157
|
[#195]: https://github.com/fedify-dev/fedify/issues/195
|
145
158
|
|
146
159
|
|
160
|
+
Version 1.3.10
|
161
|
+
--------------
|
162
|
+
|
163
|
+
Released on February 22, 2025.
|
164
|
+
|
165
|
+
- Added the following default contexts to `Follow`, `Undo`, and `Update`
|
166
|
+
classes:
|
167
|
+
|
168
|
+
- <https://w3id.org/security/v1>
|
169
|
+
- <https://www.w3.org/ns/did/v1>
|
170
|
+
- <https://w3id.org/security/multikey/v1>
|
171
|
+
|
172
|
+
|
147
173
|
Version 1.3.9
|
148
174
|
-------------
|
149
175
|
|
@@ -371,6 +397,19 @@ Released on November 30, 2024.
|
|
371
397
|
[#193]: https://github.com/fedify-dev/fedify/issues/193
|
372
398
|
|
373
399
|
|
400
|
+
Version 1.2.14
|
401
|
+
--------------
|
402
|
+
|
403
|
+
Released on February 22, 2025.
|
404
|
+
|
405
|
+
- Added the following default contexts to `Follow`, `Undo`, and `Update`
|
406
|
+
classes:
|
407
|
+
|
408
|
+
- <https://w3id.org/security/v1>
|
409
|
+
- <https://www.w3.org/ns/did/v1>
|
410
|
+
- <https://w3id.org/security/multikey/v1>
|
411
|
+
|
412
|
+
|
374
413
|
Version 1.2.13
|
375
414
|
--------------
|
376
415
|
|
@@ -644,6 +683,19 @@ Released on October 31, 2024.
|
|
644
683
|
[#118]: https://github.com/fedify-dev/fedify/issues/118
|
645
684
|
|
646
685
|
|
686
|
+
Version 1.1.14
|
687
|
+
--------------
|
688
|
+
|
689
|
+
Released on February 22, 2025.
|
690
|
+
|
691
|
+
- Added the following default contexts to `Follow`, `Undo`, and `Update`
|
692
|
+
classes:
|
693
|
+
|
694
|
+
- <https://w3id.org/security/v1>
|
695
|
+
- <https://www.w3.org/ns/did/v1>
|
696
|
+
- <https://w3id.org/security/multikey/v1>
|
697
|
+
|
698
|
+
|
647
699
|
Version 1.1.13
|
648
700
|
--------------
|
649
701
|
|
@@ -958,6 +1010,19 @@ Released on October 20, 2024.
|
|
958
1010
|
[#150]: https://github.com/fedify-dev/fedify/issues/150
|
959
1011
|
|
960
1012
|
|
1013
|
+
Version 1.0.17
|
1014
|
+
--------------
|
1015
|
+
|
1016
|
+
Released on February 22, 2025.
|
1017
|
+
|
1018
|
+
- Added the following default contexts to `Follow`, `Undo`, and `Update`
|
1019
|
+
classes:
|
1020
|
+
|
1021
|
+
- <https://w3id.org/security/v1>
|
1022
|
+
- <https://www.w3.org/ns/did/v1>
|
1023
|
+
- <https://w3id.org/security/multikey/v1>
|
1024
|
+
|
1025
|
+
|
961
1026
|
Version 1.0.16
|
962
1027
|
--------------
|
963
1028
|
|
package/esm/deno.js
CHANGED
package/esm/vocab/follow.yaml
CHANGED
@@ -12,5 +12,8 @@ description: |
|
|
12
12
|
defaultContext:
|
13
13
|
- "https://w3id.org/identity/v1"
|
14
14
|
- "https://www.w3.org/ns/activitystreams"
|
15
|
+
- "https://w3id.org/security/v1"
|
15
16
|
- "https://w3id.org/security/data-integrity/v1"
|
17
|
+
- "https://www.w3.org/ns/did/v1"
|
18
|
+
- "https://w3id.org/security/multikey/v1"
|
16
19
|
properties: []
|
package/esm/vocab/undo.yaml
CHANGED
@@ -15,5 +15,8 @@ description: |
|
|
15
15
|
defaultContext:
|
16
16
|
- "https://w3id.org/identity/v1"
|
17
17
|
- "https://www.w3.org/ns/activitystreams"
|
18
|
+
- "https://w3id.org/security/v1"
|
18
19
|
- "https://w3id.org/security/data-integrity/v1"
|
20
|
+
- "https://www.w3.org/ns/did/v1"
|
21
|
+
- "https://w3id.org/security/multikey/v1"
|
19
22
|
properties: []
|
package/esm/vocab/update.yaml
CHANGED
@@ -13,7 +13,10 @@ description: |
|
|
13
13
|
defaultContext:
|
14
14
|
- "https://w3id.org/identity/v1"
|
15
15
|
- "https://www.w3.org/ns/activitystreams"
|
16
|
+
- "https://w3id.org/security/v1"
|
16
17
|
- "https://w3id.org/security/data-integrity/v1"
|
18
|
+
- "https://www.w3.org/ns/did/v1"
|
19
|
+
- "https://w3id.org/security/multikey/v1"
|
17
20
|
- alsoKnownAs:
|
18
21
|
"@id": "as:alsoKnownAs"
|
19
22
|
"@type": "@id"
|