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

Merge tag '0.15.3' into 1.0-maintenance

Fedify 0.15.3
parents ad9ed916 767489f8
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
@@ -8,6 +8,9 @@ Version 1.0.5

To be released.

 -  The `fetchDocumentLoader()` function now preloads the following JSON-LD
    context: <https://purl.archive.org/socialweb/webfinger>.


Version 1.0.4
-------------
@@ -228,6 +231,15 @@ Released on September 26, 2024.
[#137]: https://github.com/dahlia/fedify/issues/137


Version 0.15.3
--------------

Released on October 23, 2024.

 -  The `fetchDocumentLoader()` function now preloads the following JSON-LD
    context: <https://purl.archive.org/socialweb/webfinger>.


Version 0.15.2
--------------

+11 −0
Original line number Diff line number Diff line
@@ -783,6 +783,17 @@ const preloadedContexts: Record<string, unknown> = {
      },
    },
  },

  "https://purl.archive.org/socialweb/webfinger": {
    "@context": {
      "wf": "https://purl.archive.org/socialweb/webfinger#",
      "xsd": "http://www.w3.org/2001/XMLSchema#",
      "webfinger": {
        "@id": "wf:webfinger",
        "@type": "xsd:string",
      },
    },
  },
};

export default preloadedContexts;