@fedify/fedify 1.0.5 → 1.0.7

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 (22) hide show
  1. package/CHANGES.md +45 -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/package.json +1 -1
  6. package/types/deps/jsr.io/@std/http/{1.0.8 → 1.0.9}/_negotiation/common.d.ts.map +1 -1
  7. package/types/deps/jsr.io/@std/http/{1.0.8 → 1.0.9}/_negotiation/encoding.d.ts.map +1 -1
  8. package/types/deps/jsr.io/@std/http/{1.0.8 → 1.0.9}/_negotiation/language.d.ts.map +1 -1
  9. package/types/deps/jsr.io/@std/http/{1.0.8 → 1.0.9}/_negotiation/media_type.d.ts.map +1 -1
  10. package/types/deps/jsr.io/@std/http/{1.0.8 → 1.0.9}/negotiation.d.ts.map +1 -1
  11. package/types/runtime/contexts.d.ts.map +1 -1
  12. package/types/runtime/docloader.d.ts.map +1 -1
  13. /package/esm/deps/jsr.io/@std/http/{1.0.8 → 1.0.9}/_negotiation/common.js +0 -0
  14. /package/esm/deps/jsr.io/@std/http/{1.0.8 → 1.0.9}/_negotiation/encoding.js +0 -0
  15. /package/esm/deps/jsr.io/@std/http/{1.0.8 → 1.0.9}/_negotiation/language.js +0 -0
  16. /package/esm/deps/jsr.io/@std/http/{1.0.8 → 1.0.9}/_negotiation/media_type.js +0 -0
  17. /package/esm/deps/jsr.io/@std/http/{1.0.8 → 1.0.9}/negotiation.js +0 -0
  18. /package/types/deps/jsr.io/@std/http/{1.0.8 → 1.0.9}/_negotiation/common.d.ts +0 -0
  19. /package/types/deps/jsr.io/@std/http/{1.0.8 → 1.0.9}/_negotiation/encoding.d.ts +0 -0
  20. /package/types/deps/jsr.io/@std/http/{1.0.8 → 1.0.9}/_negotiation/language.d.ts +0 -0
  21. /package/types/deps/jsr.io/@std/http/{1.0.8 → 1.0.9}/_negotiation/media_type.d.ts +0 -0
  22. /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.0.7
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.0.6
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.0.5
7
28
  -------------
8
29
 
@@ -231,6 +252,29 @@ Released on September 26, 2024.
231
252
  [#137]: https://github.com/dahlia/fedify/issues/137
232
253
 
233
254
 
255
+ Version 0.15.5
256
+ --------------
257
+
258
+ Released on October 30, 2024.
259
+
260
+ - Fixed a bug where `fetchDocumentLoader()` function had disallowed
261
+ redirecting to a private network address when the second parameter,
262
+ a `boolean` value to allow private network addresses, was `true`.
263
+
264
+
265
+ Version 0.15.4
266
+ --------------
267
+
268
+ Released on October 27, 2024.
269
+
270
+ - Fixed default document loaders' incorrect handling of relative URIs in
271
+ `Link` headers with `rel=alternate`. [[#155] by Emelia Smith]
272
+ - The `fetchDocumentLoader()` function now preloads the following JSON-LD
273
+ context: <http://schema.org/>.
274
+
275
+ [#155]: https://github.com/dahlia/fedify/pull/155
276
+
277
+
234
278
  Version 0.15.3
235
279
  --------------
236
280
 
@@ -1789,4 +1833,4 @@ Version 0.1.0
1789
1833
 
1790
1834
  Initial release. Released on March 8, 2024.
1791
1835
 
1792
- <!-- cSpell: ignore Dogeon Fabien Wressell -->
1836
+ <!-- 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";