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

Merge tag '1.1.1'

Fedify 1.1.1
parents 2bf37689 fc588ded
Loading
Loading
Loading
Loading
+27 −0
Original line number Diff line number Diff line
@@ -27,6 +27,15 @@ To be released.
     -  `["fedify", "nodeinfo", "client"]`


Version 1.1.1
-------------

Released on October 23, 2024.

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


Version 1.1.0
-------------

@@ -127,6 +136,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
-------------

@@ -346,6 +364,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;