Skip to content

Commit fbf6406

Browse files
committed
Merge tag '1.3.3'
Fedify 1.3.3
2 parents acf76ef + 4193682 commit fbf6406

File tree

4 files changed

+43
-1
lines changed

4 files changed

+43
-1
lines changed

CHANGES.md

+9
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,15 @@ To be released.
3434
[#195]: https://github.com/dahlia/fedify/issues/195
3535

3636

37+
Version 1.3.3
38+
-------------
39+
40+
Released on December 30, 2024.
41+
42+
- The `fetchDocumentLoader()` function now preloads the following JSON-LD
43+
context: <https://gotosocial.org/ns>.
44+
45+
3746
Version 1.3.2
3847
-------------
3948

docs/bun.lockb

0 Bytes
Binary file not shown.

docs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"@braintree/sanitize-url": "^7.1.1",
44
"@deno/kv": "^0.8.4",
55
"@fedify/amqp": "0.1.0",
6-
"@fedify/fedify": "^1.4.0-dev.594",
6+
"@fedify/fedify": "1.4.0-dev.596",
77
"@fedify/postgres": "0.2.2",
88
"@fedify/redis": "0.3.0",
99
"@hono/node-server": "^1.13.7",

src/runtime/contexts.ts

+33
Original file line numberDiff line numberDiff line change
@@ -4163,6 +4163,39 @@ const preloadedContexts: Record<string, unknown> = {
41634163
"yield": { "@id": "schema:yield" },
41644164
},
41654165
},
4166+
"https://gotosocial.org/ns": {
4167+
"@context": {
4168+
"gts": "https://gotosocial.org/ns#",
4169+
"interactionPolicy": {
4170+
"@id": "gts:interactionPolicy",
4171+
"@type": "@id",
4172+
},
4173+
"canLike": {
4174+
"@id": "gts:canLike",
4175+
"@type": "@id",
4176+
},
4177+
"canReply": {
4178+
"@id": "gts:canReply",
4179+
"@type": "@id",
4180+
},
4181+
"canAnnounce": {
4182+
"@id": "gts:canAnnounce",
4183+
"@type": "@id",
4184+
},
4185+
"always": {
4186+
"@id": "gts:always",
4187+
"@type": "@id",
4188+
},
4189+
"approvalRequired": {
4190+
"@id": "gts:approvalRequired",
4191+
"@type": "@id",
4192+
},
4193+
"approvedBy": {
4194+
"@id": "gts:approvedBy",
4195+
"@type": "@id",
4196+
},
4197+
},
4198+
},
41664199
};
41674200

41684201
export default preloadedContexts;

0 commit comments

Comments
 (0)