Unverified Commit fbf64060 authored by Hong Minhee's avatar Hong Minhee
Browse files

Merge tag '1.3.3'

Fedify 1.3.3
parents acf76ef5 4193682a
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -34,6 +34,15 @@ To be released.
[#195]: https://github.com/dahlia/fedify/issues/195


Version 1.3.3
-------------

Released on December 30, 2024.

 -  The `fetchDocumentLoader()` function now preloads the following JSON-LD
    context: <https://gotosocial.org/ns>.


Version 1.3.2
-------------

(254 KiB)

File changed.

No diff preview for this file type.

+1 −1
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@
    "@braintree/sanitize-url": "^7.1.1",
    "@deno/kv": "^0.8.4",
    "@fedify/amqp": "0.1.0",
    "@fedify/fedify": "^1.4.0-dev.594",
    "@fedify/fedify": "1.4.0-dev.596",
    "@fedify/postgres": "0.2.2",
    "@fedify/redis": "0.3.0",
    "@hono/node-server": "^1.13.7",
+33 −0
Original line number Diff line number Diff line
@@ -4163,6 +4163,39 @@ const preloadedContexts: Record<string, unknown> = {
      "yield": { "@id": "schema:yield" },
    },
  },
  "https://gotosocial.org/ns": {
    "@context": {
      "gts": "https://gotosocial.org/ns#",
      "interactionPolicy": {
        "@id": "gts:interactionPolicy",
        "@type": "@id",
      },
      "canLike": {
        "@id": "gts:canLike",
        "@type": "@id",
      },
      "canReply": {
        "@id": "gts:canReply",
        "@type": "@id",
      },
      "canAnnounce": {
        "@id": "gts:canAnnounce",
        "@type": "@id",
      },
      "always": {
        "@id": "gts:always",
        "@type": "@id",
      },
      "approvalRequired": {
        "@id": "gts:approvalRequired",
        "@type": "@id",
      },
      "approvedBy": {
        "@id": "gts:approvedBy",
        "@type": "@id",
      },
    },
  },
};

export default preloadedContexts;