Unverified Commit 1d8dc11e authored by Hong Minhee's avatar Hong Minhee
Browse files

Merge tag '1.4.4'

Fedify 1.4.4
parents 0c3965be 7d93413b
Loading
Loading
Loading
Loading
+75 −0
Original line number Diff line number Diff line
@@ -41,6 +41,21 @@ To be released.
[#211]: https://github.com/fedify-dev/fedify/issues/211


Version 1.4.4
-------------

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.4.3
-------------

@@ -165,6 +180,21 @@ Released on February 5, 2025.
[#195]: https://github.com/fedify-dev/fedify/issues/195


Version 1.3.11
--------------

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.3.10
--------------

@@ -405,6 +435,21 @@ Released on November 30, 2024.
[#193]: https://github.com/fedify-dev/fedify/issues/193


Version 1.2.15
--------------

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.2.14
--------------

@@ -691,6 +736,21 @@ Released on October 31, 2024.
[#118]: https://github.com/fedify-dev/fedify/issues/118


Version 1.1.15
--------------

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.1.14
--------------

@@ -1018,6 +1078,21 @@ Released on October 20, 2024.
[#150]: https://github.com/fedify-dev/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
@@ -213,6 +213,7 @@ test("handleActor()", async () => {
        misskey: "https://misskey-hub.net/ns#",
        _misskey_followedMessage: "misskey:_misskey_followedMessage",
        isCat: "misskey:isCat",
        Emoji: "toot:Emoji",
      },
    ],
    id: "https://example.com/users/someone",
@@ -318,6 +319,7 @@ test("handleActor()", async () => {
        misskey: "https://misskey-hub.net/ns#",
        _misskey_followedMessage: "misskey:_misskey_followedMessage",
        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