@fedify/fedify 1.1.1 → 1.1.2
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 +36 -1
- package/esm/federation/handler.js +1 -1
- package/esm/runtime/contexts.js +3367 -0
- package/esm/runtime/docloader.js +4 -3
- package/esm/vocab/lookup.js +1 -1
- package/package.json +1 -1
- package/types/deps/jsr.io/@std/async/{1.0.6 → 1.0.7}/delay.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/http/{1.0.8 → 1.0.9}/_negotiation/common.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/http/{1.0.8 → 1.0.9}/_negotiation/encoding.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/http/{1.0.8 → 1.0.9}/_negotiation/language.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/http/{1.0.8 → 1.0.9}/_negotiation/media_type.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/http/{1.0.8 → 1.0.9}/negotiation.d.ts.map +1 -1
- package/types/runtime/contexts.d.ts.map +1 -1
- package/types/runtime/docloader.d.ts.map +1 -1
- /package/esm/deps/jsr.io/@std/async/{1.0.6 → 1.0.7}/delay.js +0 -0
- /package/esm/deps/jsr.io/@std/http/{1.0.8 → 1.0.9}/_negotiation/common.js +0 -0
- /package/esm/deps/jsr.io/@std/http/{1.0.8 → 1.0.9}/_negotiation/encoding.js +0 -0
- /package/esm/deps/jsr.io/@std/http/{1.0.8 → 1.0.9}/_negotiation/language.js +0 -0
- /package/esm/deps/jsr.io/@std/http/{1.0.8 → 1.0.9}/_negotiation/media_type.js +0 -0
- /package/esm/deps/jsr.io/@std/http/{1.0.8 → 1.0.9}/negotiation.js +0 -0
- /package/types/deps/jsr.io/@std/async/{1.0.6 → 1.0.7}/delay.d.ts +0 -0
- /package/types/deps/jsr.io/@std/http/{1.0.8 → 1.0.9}/_negotiation/common.d.ts +0 -0
- /package/types/deps/jsr.io/@std/http/{1.0.8 → 1.0.9}/_negotiation/encoding.d.ts +0 -0
- /package/types/deps/jsr.io/@std/http/{1.0.8 → 1.0.9}/_negotiation/language.d.ts +0 -0
- /package/types/deps/jsr.io/@std/http/{1.0.8 → 1.0.9}/_negotiation/media_type.d.ts +0 -0
- /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,17 @@
|
|
3
3
|
Fedify changelog
|
4
4
|
================
|
5
5
|
|
6
|
+
Version 1.1.2
|
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
|
+
|
6
17
|
Version 1.1.1
|
7
18
|
-------------
|
8
19
|
|
@@ -112,6 +123,17 @@ Released on October 20, 2024.
|
|
112
123
|
[#150]: https://github.com/dahlia/fedify/issues/150
|
113
124
|
|
114
125
|
|
126
|
+
Version 1.0.6
|
127
|
+
-------------
|
128
|
+
|
129
|
+
Released on October 27, 2024.
|
130
|
+
|
131
|
+
- Fixed default document loaders' incorrect handling of relative URIs in
|
132
|
+
`Link` headers with `rel=alternate`. [[#155] by Emelia Smith]
|
133
|
+
- The `fetchDocumentLoader()` function now preloads the following JSON-LD
|
134
|
+
context: <http://schema.org/>.
|
135
|
+
|
136
|
+
|
115
137
|
Version 1.0.5
|
116
138
|
-------------
|
117
139
|
|
@@ -340,6 +362,19 @@ Released on September 26, 2024.
|
|
340
362
|
[#137]: https://github.com/dahlia/fedify/issues/137
|
341
363
|
|
342
364
|
|
365
|
+
Version 0.15.4
|
366
|
+
--------------
|
367
|
+
|
368
|
+
Released on October 27, 2024.
|
369
|
+
|
370
|
+
- Fixed default document loaders' incorrect handling of relative URIs in
|
371
|
+
`Link` headers with `rel=alternate`. [[#155] by Emelia Smith]
|
372
|
+
- The `fetchDocumentLoader()` function now preloads the following JSON-LD
|
373
|
+
context: <http://schema.org/>.
|
374
|
+
|
375
|
+
[#155]: https://github.com/dahlia/fedify/pull/155
|
376
|
+
|
377
|
+
|
343
378
|
Version 0.15.3
|
344
379
|
--------------
|
345
380
|
|
@@ -1898,4 +1933,4 @@ Version 0.1.0
|
|
1898
1933
|
|
1899
1934
|
Initial release. Released on March 8, 2024.
|
1900
1935
|
|
1901
|
-
<!-- cSpell: ignore Dogeon Fabien Wressell -->
|
1936
|
+
<!-- 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.
|
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";
|