Unverified Commit 7c2afb1e authored by Hong Minhee's avatar Hong Minhee
Browse files

Merge tag '0.12.2'

Fedify 0.12.2
parents 49c1ce1f 259452a8
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -61,6 +61,15 @@ To be released.
[#110]: https://github.com/dahlia/fedify/issues/110


Version 0.12.2
--------------

Released on July 31, 2024.

 -  Fixed a bug where incoming activities had not been enqueued even
    if the `queue` option was provided to the `createFederation()` function.


Version 0.12.1
--------------

+2 −2
Original line number Diff line number Diff line
@@ -92,7 +92,7 @@ The above commands will create a *deno.json* (in case of Deno) or *package.json*
{
  "type": "module",
  "dependencies": {
    "@deno/kv": "^0.8.0",
    "@deno/kv": "^0.8.1",
    "@fedify/fedify": "^0.13.0"
  }
}
@@ -107,7 +107,7 @@ The above commands will create a *deno.json* (in case of Deno) or *package.json*
    "typescript": "^5.4.5"
  },
  "dependencies": {
    "@deno/kv": "^0.8.0",
    "@deno/kv": "^0.8.1",
    "@fedify/fedify": "^0.13.0",
    "@hono/node-server": "^1.11.1"
  }
+4 −0
Original line number Diff line number Diff line
@@ -501,6 +501,10 @@ export async function handleInbox<TContextData>(
        started: new Date().toISOString(),
      } satisfies InboxMessage,
    );
    logger.info(
      "Activity {activityId} is eunqueued.",
      { activityId: activity.id?.href, activity: json },
    );
    return new Response("Activity is enqueued.", {
      status: 202,
      headers: { "Content-Type": "text/plain; charset=utf-8" },
+1 −0
Original line number Diff line number Diff line
@@ -1837,6 +1837,7 @@ class FederationImpl<TContextData> implements Federation<TContextData> {
          context,
          kv: this.kv,
          kvPrefixes: this.kvPrefixes,
          queue: this.queue,
          actorDispatcher: this.actorCallbacks?.dispatcher,
          inboxListeners: this.inboxListeners,
          inboxErrorHandler: this.inboxErrorHandler,