@fedify/fedify 0.15.1 → 0.15.3
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGES.md +27 -0
- package/esm/runtime/contexts.js +10 -0
- package/esm/vocab/vocab.js +289 -87
- package/esm/webfinger/handler.js +1 -1
- package/package.json +1 -1
- package/types/runtime/contexts.d.ts.map +1 -1
- package/types/vocab/vocab.d.ts +63 -0
- package/types/vocab/vocab.d.ts.map +1 -1
package/CHANGES.md
CHANGED
@@ -3,6 +3,24 @@
|
|
3
3
|
Fedify changelog
|
4
4
|
================
|
5
5
|
|
6
|
+
Version 0.15.3
|
7
|
+
--------------
|
8
|
+
|
9
|
+
Released on October 23, 2024.
|
10
|
+
|
11
|
+
- The `fetchDocumentLoader()` function now preloads the following JSON-LD
|
12
|
+
context: <https://purl.archive.org/socialweb/webfinger>.
|
13
|
+
|
14
|
+
|
15
|
+
Version 0.15.2
|
16
|
+
--------------
|
17
|
+
|
18
|
+
Released on September 26, 2024.
|
19
|
+
|
20
|
+
- Fixed a bug of `Object.toJsonLd()` method where it had not fall back to
|
21
|
+
the proper compact form when the heuristic compact form was not available.
|
22
|
+
|
23
|
+
|
6
24
|
Version 0.15.1
|
7
25
|
--------------
|
8
26
|
|
@@ -76,6 +94,15 @@ Released on September 11, 2024.
|
|
76
94
|
object.
|
77
95
|
|
78
96
|
|
97
|
+
Version 0.14.5
|
98
|
+
--------------
|
99
|
+
|
100
|
+
Released on September 26, 2024.
|
101
|
+
|
102
|
+
- Fixed a bug of `Object.toJsonLd()` method where it had not fall back to
|
103
|
+
the proper compact form when the heuristic compact form was not available.
|
104
|
+
|
105
|
+
|
79
106
|
Version 0.14.4
|
80
107
|
--------------
|
81
108
|
|
package/esm/runtime/contexts.js
CHANGED
@@ -625,5 +625,15 @@ const preloadedContexts = {
|
|
625
625
|
},
|
626
626
|
},
|
627
627
|
},
|
628
|
+
"https://purl.archive.org/socialweb/webfinger": {
|
629
|
+
"@context": {
|
630
|
+
"wf": "https://purl.archive.org/socialweb/webfinger#",
|
631
|
+
"xsd": "http://www.w3.org/2001/XMLSchema#",
|
632
|
+
"webfinger": {
|
633
|
+
"@id": "wf:webfinger",
|
634
|
+
"@type": "xsd:string",
|
635
|
+
},
|
636
|
+
},
|
637
|
+
},
|
628
638
|
};
|
629
639
|
export default preloadedContexts;
|