@fedify/fedify 1.1.0 → 1.1.1
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/FEDERATION.md +1 -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
|
@@ -3,6 +3,15 @@
|
|
|
3
3
|
Fedify changelog
|
|
4
4
|
================
|
|
5
5
|
|
|
6
|
+
Version 1.1.1
|
|
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
|
+
|
|
6
15
|
Version 1.1.0
|
|
7
16
|
-------------
|
|
8
17
|
|
|
@@ -103,6 +112,15 @@ Released on October 20, 2024.
|
|
|
103
112
|
[#150]: https://github.com/dahlia/fedify/issues/150
|
|
104
113
|
|
|
105
114
|
|
|
115
|
+
Version 1.0.5
|
|
116
|
+
-------------
|
|
117
|
+
|
|
118
|
+
Released on October 23, 2024.
|
|
119
|
+
|
|
120
|
+
- The `fetchDocumentLoader()` function now preloads the following JSON-LD
|
|
121
|
+
context: <https://purl.archive.org/socialweb/webfinger>.
|
|
122
|
+
|
|
123
|
+
|
|
106
124
|
Version 1.0.4
|
|
107
125
|
-------------
|
|
108
126
|
|
|
@@ -322,6 +340,15 @@ Released on September 26, 2024.
|
|
|
322
340
|
[#137]: https://github.com/dahlia/fedify/issues/137
|
|
323
341
|
|
|
324
342
|
|
|
343
|
+
Version 0.15.3
|
|
344
|
+
--------------
|
|
345
|
+
|
|
346
|
+
Released on October 23, 2024.
|
|
347
|
+
|
|
348
|
+
- The `fetchDocumentLoader()` function now preloads the following JSON-LD
|
|
349
|
+
context: <https://purl.archive.org/socialweb/webfinger>.
|
|
350
|
+
|
|
351
|
+
|
|
325
352
|
Version 0.15.2
|
|
326
353
|
--------------
|
|
327
354
|
|
package/FEDERATION.md
CHANGED
|
@@ -58,6 +58,7 @@ lists the activity types that Fedify provides:
|
|
|
58
58
|
- [`Create`](https://jsr.io/@fedify/fedify/doc/vocab/~/Create)
|
|
59
59
|
- [`Delete`](https://jsr.io/@fedify/fedify/doc/vocab/~/Delete)
|
|
60
60
|
- [`Dislike`](https://jsr.io/@fedify/fedify/doc/vocab/~/Dislike)
|
|
61
|
+
- [`EmojiReact`](https://jsr.io/@fedify/fedify/doc/vocab/~/EmojiReact)
|
|
61
62
|
- [`Flag`](https://jsr.io/@fedify/fedify/doc/vocab/~/Flag)
|
|
62
63
|
- [`Follow`](https://jsr.io/@fedify/fedify/doc/vocab/~/Follow)
|
|
63
64
|
- [`Ignore`](https://jsr.io/@fedify/fedify/doc/vocab/~/Ignore)
|
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"}
|