@fedify/fedify 0.15.3 → 0.15.5
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 +24 -1
- package/esm/runtime/contexts.js +3367 -0
- package/esm/runtime/docloader.js +5 -4
- package/package.json +1 -1
- package/types/runtime/contexts.d.ts.map +1 -1
- package/types/runtime/docloader.d.ts.map +1 -1
package/CHANGES.md
CHANGED
|
@@ -3,6 +3,29 @@
|
|
|
3
3
|
Fedify changelog
|
|
4
4
|
================
|
|
5
5
|
|
|
6
|
+
Version 0.15.5
|
|
7
|
+
--------------
|
|
8
|
+
|
|
9
|
+
Released on October 30, 2024.
|
|
10
|
+
|
|
11
|
+
- Fixed a bug where `fetchDocumentLoader()` function had disallowed
|
|
12
|
+
redirecting to a private network address when the second parameter,
|
|
13
|
+
a `boolean` value to allow private network addresses, was `true`.
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
Version 0.15.4
|
|
17
|
+
--------------
|
|
18
|
+
|
|
19
|
+
Released on October 27, 2024.
|
|
20
|
+
|
|
21
|
+
- Fixed default document loaders' incorrect handling of relative URIs in
|
|
22
|
+
`Link` headers with `rel=alternate`. [[#155] by Emelia Smith]
|
|
23
|
+
- The `fetchDocumentLoader()` function now preloads the following JSON-LD
|
|
24
|
+
context: <http://schema.org/>.
|
|
25
|
+
|
|
26
|
+
[#155]: https://github.com/dahlia/fedify/pull/155
|
|
27
|
+
|
|
28
|
+
|
|
6
29
|
Version 0.15.3
|
|
7
30
|
--------------
|
|
8
31
|
|
|
@@ -1561,4 +1584,4 @@ Version 0.1.0
|
|
|
1561
1584
|
|
|
1562
1585
|
Initial release. Released on March 8, 2024.
|
|
1563
1586
|
|
|
1564
|
-
<!-- cSpell: ignore Dogeon Fabien Wressell -->
|
|
1587
|
+
<!-- cSpell: ignore Dogeon Fabien Wressell Emelia -->
|