@fedify/fedify 1.2.0-dev.452 → 1.2.0-dev.456
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 +27 -0
- package/esm/runtime/contexts.js +10 -0
- package/package.json +1 -1
- package/types/runtime/contexts.d.ts.map +1 -1
package/CHANGES.md
CHANGED
|
@@ -27,6 +27,15 @@ To be released.
|
|
|
27
27
|
- `["fedify", "nodeinfo", "client"]`
|
|
28
28
|
|
|
29
29
|
|
|
30
|
+
Version 1.1.1
|
|
31
|
+
-------------
|
|
32
|
+
|
|
33
|
+
Released on October 23, 2024.
|
|
34
|
+
|
|
35
|
+
- The `fetchDocumentLoader()` function now preloads the following JSON-LD
|
|
36
|
+
context: <https://purl.archive.org/socialweb/webfinger>.
|
|
37
|
+
|
|
38
|
+
|
|
30
39
|
Version 1.1.0
|
|
31
40
|
-------------
|
|
32
41
|
|
|
@@ -127,6 +136,15 @@ Released on October 20, 2024.
|
|
|
127
136
|
[#150]: https://github.com/dahlia/fedify/issues/150
|
|
128
137
|
|
|
129
138
|
|
|
139
|
+
Version 1.0.5
|
|
140
|
+
-------------
|
|
141
|
+
|
|
142
|
+
Released on October 23, 2024.
|
|
143
|
+
|
|
144
|
+
- The `fetchDocumentLoader()` function now preloads the following JSON-LD
|
|
145
|
+
context: <https://purl.archive.org/socialweb/webfinger>.
|
|
146
|
+
|
|
147
|
+
|
|
130
148
|
Version 1.0.4
|
|
131
149
|
-------------
|
|
132
150
|
|
|
@@ -346,6 +364,15 @@ Released on September 26, 2024.
|
|
|
346
364
|
[#137]: https://github.com/dahlia/fedify/issues/137
|
|
347
365
|
|
|
348
366
|
|
|
367
|
+
Version 0.15.3
|
|
368
|
+
--------------
|
|
369
|
+
|
|
370
|
+
Released on October 23, 2024.
|
|
371
|
+
|
|
372
|
+
- The `fetchDocumentLoader()` function now preloads the following JSON-LD
|
|
373
|
+
context: <https://purl.archive.org/socialweb/webfinger>.
|
|
374
|
+
|
|
375
|
+
|
|
349
376
|
Version 0.15.2
|
|
350
377
|
--------------
|
|
351
378
|
|
package/esm/runtime/contexts.js
CHANGED
|
@@ -777,5 +777,15 @@ const preloadedContexts = {
|
|
|
777
777
|
},
|
|
778
778
|
},
|
|
779
779
|
},
|
|
780
|
+
"https://purl.archive.org/socialweb/webfinger": {
|
|
781
|
+
"@context": {
|
|
782
|
+
"wf": "https://purl.archive.org/socialweb/webfinger#",
|
|
783
|
+
"xsd": "http://www.w3.org/2001/XMLSchema#",
|
|
784
|
+
"webfinger": {
|
|
785
|
+
"@id": "wf:webfinger",
|
|
786
|
+
"@type": "xsd:string",
|
|
787
|
+
},
|
|
788
|
+
},
|
|
789
|
+
},
|
|
780
790
|
};
|
|
781
791
|
export default preloadedContexts;
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"contexts.d.ts","sourceRoot":"","sources":["../../src/runtime/contexts.ts"],"names":[],"mappings":"AAIA,QAAA,MAAM,iBAAiB,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,
|
|
1
|
+
{"version":3,"file":"contexts.d.ts","sourceRoot":"","sources":["../../src/runtime/contexts.ts"],"names":[],"mappings":"AAIA,QAAA,MAAM,iBAAiB,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAwxB9C,CAAC;AAEF,eAAe,iBAAiB,CAAC"}
|