Unverified Commit a4e5c52f authored by Hong Minhee's avatar Hong Minhee
Browse files
parent 9531e42f
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -107,6 +107,7 @@
    "rels",
    "RSA-PKCS",
    "RSASSA-PKCS1",
    "runtimes",
    "setext",
    "shiki",
    "spki",
@@ -117,8 +118,8 @@
    "tempserver",
    "unfollow",
    "unfollowing",
    "uuidv7",
    "urlpattern",
    "uuidv7",
    "vitepress",
    "webfinger"
  ]
+7 −0
Original line number Diff line number Diff line
@@ -8,6 +8,8 @@ Version 0.12.0

To be released.

 -  The `fedify` command is now [available on npm][@fedify/cli].  [[#104]]

 -  Incoming activities are now queued before being dispatched to the inbox
    listener if the `queue` option is provided to the `createFederation()`
    function.  [[#70]]
@@ -112,11 +114,14 @@ To be released.
     -  Added `createFetchOptions()` function.
     -  Added `ContextDataFactory` type.

 -  Added `fedify init` subcommand.  [[#105]]

 -  Added more log messages using the [LogTape] library.  Currently the below
    logger categories are used:

     -  `["fedify", "federation", "queue"]`

[@fedify/cli]: https://www.npmjs.com/package/@fedify/cli
[#6]: https://github.com/dahlia/fedify/issues/6
[#50]: https://github.com/dahlia/fedify/issues/50
[#53]: https://github.com/dahlia/fedify/issues/53
@@ -125,6 +130,8 @@ To be released.
[#81]: https://github.com/dahlia/fedify/issues/81
[#85]: https://github.com/dahlia/fedify/issues/85
[#92]: https://github.com/dahlia/fedify/pull/92
[#104]: https://github.com/dahlia/fedify/issues/104
[#105]: https://github.com/dahlia/fedify/issues/105
[Astro]: https://astro.build/


cli/init.ts

0 → 100644
+805 −0

File added.

Preview size limit exceeded, changes collapsed.

+2 −0
Original line number Diff line number Diff line
@@ -3,6 +3,7 @@ import { configure, getConsoleSink } from "@logtape/logtape";
import { DEFAULT_CACHE_DIR, setCacheDir } from "./cache.ts";
import metadata from "./deno.json" with { type: "json" };
import { command as inbox } from "./inbox.tsx";
import { command as init } from "./init.ts";
import { recordingSink } from "./log.ts";
import { command as lookup } from "./lookup.ts";

@@ -42,6 +43,7 @@ const command = new Command()
    },
  })
  .default("help")
  .command("init", init)
  .command("lookup", lookup)
  .command("inbox", inbox)
  .command("completions", new CompletionsCommand())
+90 −0

File changed.

Preview size limit exceeded, changes collapsed.