Unverified Commit 21acd5f0 authored by Hong Minhee's avatar Hong Minhee
Browse files

Merge tag '1.0.5' into 1.1-maintenance

Fedify 1.0.5
parents 67707ebb b87a3e2c
Loading
Loading
Loading
Loading
+21 −0
Original line number Diff line number Diff line
@@ -8,6 +8,9 @@ Version 1.1.1

To be released.

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


Version 1.1.0
-------------
@@ -109,6 +112,15 @@ Released on October 20, 2024.
[#150]: https://github.com/dahlia/fedify/issues/150


Version 1.0.5
-------------

Released on October 23, 2024.

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


Version 1.0.4
-------------

@@ -328,6 +340,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;