@fedify/fedify 1.1.1 → 1.1.3

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.
Files changed (26) hide show
  1. package/CHANGES.md +66 -1
  2. package/esm/federation/handler.js +1 -1
  3. package/esm/runtime/contexts.js +3367 -0
  4. package/esm/runtime/docloader.js +5 -4
  5. package/esm/vocab/lookup.js +1 -1
  6. package/package.json +1 -1
  7. package/types/deps/jsr.io/@std/async/{1.0.6 → 1.0.7}/delay.d.ts.map +1 -1
  8. package/types/deps/jsr.io/@std/http/{1.0.8 → 1.0.9}/_negotiation/common.d.ts.map +1 -1
  9. package/types/deps/jsr.io/@std/http/{1.0.8 → 1.0.9}/_negotiation/encoding.d.ts.map +1 -1
  10. package/types/deps/jsr.io/@std/http/{1.0.8 → 1.0.9}/_negotiation/language.d.ts.map +1 -1
  11. package/types/deps/jsr.io/@std/http/{1.0.8 → 1.0.9}/_negotiation/media_type.d.ts.map +1 -1
  12. package/types/deps/jsr.io/@std/http/{1.0.8 → 1.0.9}/negotiation.d.ts.map +1 -1
  13. package/types/runtime/contexts.d.ts.map +1 -1
  14. package/types/runtime/docloader.d.ts.map +1 -1
  15. /package/esm/deps/jsr.io/@std/async/{1.0.6 → 1.0.7}/delay.js +0 -0
  16. /package/esm/deps/jsr.io/@std/http/{1.0.8 → 1.0.9}/_negotiation/common.js +0 -0
  17. /package/esm/deps/jsr.io/@std/http/{1.0.8 → 1.0.9}/_negotiation/encoding.js +0 -0
  18. /package/esm/deps/jsr.io/@std/http/{1.0.8 → 1.0.9}/_negotiation/language.js +0 -0
  19. /package/esm/deps/jsr.io/@std/http/{1.0.8 → 1.0.9}/_negotiation/media_type.js +0 -0
  20. /package/esm/deps/jsr.io/@std/http/{1.0.8 → 1.0.9}/negotiation.js +0 -0
  21. /package/types/deps/jsr.io/@std/async/{1.0.6 → 1.0.7}/delay.d.ts +0 -0
  22. /package/types/deps/jsr.io/@std/http/{1.0.8 → 1.0.9}/_negotiation/common.d.ts +0 -0
  23. /package/types/deps/jsr.io/@std/http/{1.0.8 → 1.0.9}/_negotiation/encoding.d.ts +0 -0
  24. /package/types/deps/jsr.io/@std/http/{1.0.8 → 1.0.9}/_negotiation/language.d.ts +0 -0
  25. /package/types/deps/jsr.io/@std/http/{1.0.8 → 1.0.9}/_negotiation/media_type.d.ts +0 -0
  26. /package/types/deps/jsr.io/@std/http/{1.0.8 → 1.0.9}/negotiation.d.ts +0 -0
package/CHANGES.md CHANGED
@@ -3,6 +3,27 @@
3
3
  Fedify changelog
4
4
  ================
5
5
 
6
+ Version 1.1.3
7
+ -------------
8
+
9
+ Released on October 31, 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 1.1.2
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
+
6
27
  Version 1.1.1
7
28
  -------------
8
29
 
@@ -112,6 +133,27 @@ Released on October 20, 2024.
112
133
  [#150]: https://github.com/dahlia/fedify/issues/150
113
134
 
114
135
 
136
+ Version 1.0.7
137
+ -------------
138
+
139
+ Released on October 31, 2024.
140
+
141
+ - Fixed a bug where `fetchDocumentLoader()` function had disallowed
142
+ redirecting to a private network address when the second parameter,
143
+ a `boolean` value to allow private network addresses, was `true`.
144
+
145
+
146
+ Version 1.0.6
147
+ -------------
148
+
149
+ Released on October 27, 2024.
150
+
151
+ - Fixed default document loaders' incorrect handling of relative URIs in
152
+ `Link` headers with `rel=alternate`. [[#155] by Emelia Smith]
153
+ - The `fetchDocumentLoader()` function now preloads the following JSON-LD
154
+ context: <http://schema.org/>.
155
+
156
+
115
157
  Version 1.0.5
116
158
  -------------
117
159
 
@@ -340,6 +382,29 @@ Released on September 26, 2024.
340
382
  [#137]: https://github.com/dahlia/fedify/issues/137
341
383
 
342
384
 
385
+ Version 0.15.5
386
+ --------------
387
+
388
+ Released on October 30, 2024.
389
+
390
+ - Fixed a bug where `fetchDocumentLoader()` function had disallowed
391
+ redirecting to a private network address when the second parameter,
392
+ a `boolean` value to allow private network addresses, was `true`.
393
+
394
+
395
+ Version 0.15.4
396
+ --------------
397
+
398
+ Released on October 27, 2024.
399
+
400
+ - Fixed default document loaders' incorrect handling of relative URIs in
401
+ `Link` headers with `rel=alternate`. [[#155] by Emelia Smith]
402
+ - The `fetchDocumentLoader()` function now preloads the following JSON-LD
403
+ context: <http://schema.org/>.
404
+
405
+ [#155]: https://github.com/dahlia/fedify/pull/155
406
+
407
+
343
408
  Version 0.15.3
344
409
  --------------
345
410
 
@@ -1898,4 +1963,4 @@ Version 0.1.0
1898
1963
 
1899
1964
  Initial release. Released on March 8, 2024.
1900
1965
 
1901
- <!-- cSpell: ignore Dogeon Fabien Wressell -->
1966
+ <!-- cSpell: ignore Dogeon Fabien Wressell Emelia -->
@@ -1,6 +1,6 @@
1
1
  import * as dntShim from "../_dnt.shims.js";
2
2
  import { getLogger } from "@logtape/logtape";
3
- import { accepts } from "../deps/jsr.io/@std/http/1.0.8/negotiation.js";
3
+ import { accepts } from "../deps/jsr.io/@std/http/1.0.9/negotiation.js";
4
4
  import { verifyRequest } from "../sig/http.js";
5
5
  import { detachSignature, verifyJsonLd } from "../sig/ld.js";
6
6
  import { doesActorOwnKey } from "../sig/owner.js";