Unverified Commit 073e0b76 authored by Hong Minhee's avatar Hong Minhee
Browse files

Merge tag '1.0.18' into 1.1-maintenance

Fedify 1.0.18
parents ce00a09c dd51a0fc
Loading
Loading
Loading
Loading
+24 −0
Original line number Diff line number Diff line
@@ -8,6 +8,15 @@ Version 1.1.15

To be released.

 -  Added the following default context to `Application`, `Group`,
    `Organization`, `Person`, and `Service` classes:

    ~~~~ json
    {
      "Emoji": "http://joinmastodon.org/ns#Emoji"
    }
    ~~~~


Version 1.1.14
--------------
@@ -336,6 +345,21 @@ Released on October 20, 2024.
[#150]: https://github.com/dahlia/fedify/issues/150


Version 1.0.18
--------------

Released on February 25, 2025.

 -  Added the following default context to `Application`, `Group`,
    `Organization`, `Person`, and `Service` classes:

    ~~~~ json
    {
      "Emoji": "http://joinmastodon.org/ns#Emoji"
    }
    ~~~~


Version 1.0.17
--------------

+10 −10

File changed.

Preview size limit exceeded, changes collapsed.

+2 −0
Original line number Diff line number Diff line
@@ -212,6 +212,7 @@ test("handleActor()", async () => {
        value: "schema:value",
        misskey: "https://misskey-hub.net/ns#",
        isCat: "misskey:isCat",
        Emoji: "toot:Emoji",
      },
    ],
    id: "https://example.com/users/someone",
@@ -316,6 +317,7 @@ test("handleActor()", async () => {
        value: "schema:value",
        misskey: "https://misskey-hub.net/ns#",
        isCat: "misskey:isCat",
        Emoji: "toot:Emoji",
      },
    ],
    id: "https://example.com/users/someone",
+1 −0
Original line number Diff line number Diff line
@@ -19,6 +19,7 @@ defaultContext:
    "@id": "as:movedTo"
    "@type": "@id"
  toot: "http://joinmastodon.org/ns#"
  Emoji: "toot:Emoji"
  featured:
    "@id": "toot:featured"
    "@type": "@id"
+1 −0
Original line number Diff line number Diff line
@@ -19,6 +19,7 @@ defaultContext:
    "@id": "as:movedTo"
    "@type": "@id"
  toot: "http://joinmastodon.org/ns#"
  Emoji: "toot:Emoji"
  featured:
    "@id": "toot:featured"
    "@type": "@id"
Loading