@fedify/fedify 1.0.4 → 1.0.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (22) hide show
  1. package/CHANGES.md +43 -1
  2. package/esm/federation/handler.js +1 -1
  3. package/esm/runtime/contexts.js +3377 -0
  4. package/esm/runtime/docloader.js +4 -3
  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,26 @@
3
3
  Fedify changelog
4
4
  ================
5
5
 
6
+ Version 1.0.6
7
+ -------------
8
+
9
+ Released on October 27, 2024.
10
+
11
+ - Fixed default document loaders' incorrect handling of relative URIs in
12
+ `Link` headers with `rel=alternate`. [[#155] by Emelia Smith]
13
+ - The `fetchDocumentLoader()` function now preloads the following JSON-LD
14
+ context: <http://schema.org/>.
15
+
16
+
17
+ Version 1.0.5
18
+ -------------
19
+
20
+ Released on October 23, 2024.
21
+
22
+ - The `fetchDocumentLoader()` function now preloads the following JSON-LD
23
+ context: <https://purl.archive.org/socialweb/webfinger>.
24
+
25
+
6
26
  Version 1.0.4
7
27
  -------------
8
28
 
@@ -222,6 +242,28 @@ Released on September 26, 2024.
222
242
  [#137]: https://github.com/dahlia/fedify/issues/137
223
243
 
224
244
 
245
+ Version 0.15.4
246
+ --------------
247
+
248
+ Released on October 27, 2024.
249
+
250
+ - Fixed default document loaders' incorrect handling of relative URIs in
251
+ `Link` headers with `rel=alternate`. [[#155] by Emelia Smith]
252
+ - The `fetchDocumentLoader()` function now preloads the following JSON-LD
253
+ context: <http://schema.org/>.
254
+
255
+ [#155]: https://github.com/dahlia/fedify/pull/155
256
+
257
+
258
+ Version 0.15.3
259
+ --------------
260
+
261
+ Released on October 23, 2024.
262
+
263
+ - The `fetchDocumentLoader()` function now preloads the following JSON-LD
264
+ context: <https://purl.archive.org/socialweb/webfinger>.
265
+
266
+
225
267
  Version 0.15.2
226
268
  --------------
227
269
 
@@ -1771,4 +1813,4 @@ Version 0.1.0
1771
1813
 
1772
1814
  Initial release. Released on March 8, 2024.
1773
1815
 
1774
- <!-- cSpell: ignore Dogeon Fabien Wressell -->
1816
+ <!-- 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";