Unverified Commit 55da4d8f authored by Hong Minhee's avatar Hong Minhee
Browse files
parent b4882238
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -8,6 +8,16 @@ Version 1.0.19

To be released.

 -  Made `fedify init` to use *@fedify/h3* 0.1.2 which is compatible with
    Fedify 1.0.0 or later versions when `--web-framework nitro` option is
    provided.  [[#213]]

 -  Fixed a bug where `fedify init` had failed to initialize a project with
    the `--runtime node --package-manager pnpm --web-framework nitro` option.
    [[#213]]

[#213]: https://github.com/fedify-dev/fedify/issues/213


Version 1.0.18
--------------
+6 −1
Original line number Diff line number Diff line
@@ -40,7 +40,6 @@
    "pkijs": "npm:pkijs@^3.2.4",
    "uri-template-router": "npm:uri-template-router@^0.0.16",
    "url-template": "npm:url-template@^3.1.1",
    "@fedify/fedify/compat": "../src/./compat/mod.ts",
    "@cliffy/ansi": "jsr:@cliffy/ansi@1.0.0-rc.4",
    "@cliffy/command": "jsr:@cliffy/command@1.0.0-rc.4",
    "@cliffy/prompt": "jsr:@cliffy/prompt@1.0.0-rc.4",
@@ -49,7 +48,13 @@
    "@david/dax": "jsr:@david/dax@^0.41.0",
    "@hongminhee/localtunnel": "jsr:@hongminhee/localtunnel@^0.2.0",
    "@poppanator/http-constants": "npm:@poppanator/http-constants@^1.1.1",
    "@std/bytes/concat": "jsr:@std/bytes@^1.0.2/concat",
    "@std/dotenv": "jsr:@std/dotenv@^0.225.2",
    "@std/dotenv/stringify": "jsr:@std/dotenv@^0.225.2/stringify",
    "@std/encoding/base64": "jsr:@std/encoding@^1.0.5/base64",
    "@std/encoding/base64url": "jsr:@std/encoding@^1.0.5/base64url",
    "@std/encoding/hex": "jsr:@std/encoding@^1.0.5/hex",
    "@std/http/negotiation": "jsr:@std/http@^1.0.6/negotiation",
    "cli-highlight": "npm:cli-highlight@^2.1.11",
    "hono": "jsr:@hono/hono@^4.5.9",
    "hono/": "jsr:/@hono/hono@^4.5.9/",
+2 −3
Original line number Diff line number Diff line
@@ -384,16 +384,15 @@ Then, try look up an actor from your server:
      command: [
        ...(runtime === "bun"
          ? ["bunx"]
          : pm === "npm"
          : pm === "npm" || pm === "yarn"
          ? ["npx", "--yes"]
          : [pm, "dlx"]),
        "giget@latest",
        "nitro",
        ".",
        "--install",
      ],
      dependencies: {
        "@fedify/h3": "^0.1.0",
        "@fedify/h3": "^0.1.2",
      },
      federationFile: "server/federation.ts",
      loggingFile: "server/logging.ts",