Unverified Commit 8f265036 authored by Hong Minhee's avatar Hong Minhee
Browse files

Merge tag '1.0.19' into 1.1-maintenance

Fedify 1.0.19
parents 36f35eb6 f5161765
Loading
Loading
Loading
Loading
+30 −0
Original line number Diff line number Diff line
@@ -8,6 +8,17 @@ Version 1.1.16

To be released.

 -  Made `fedify init` to install *@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]]

 -  Made `fedify init` to install *@logtape/logtape* 0.6.5 which is the version
    used in Fedify 1.1.x.


Version 1.1.15
--------------
@@ -351,6 +362,25 @@ Released on October 20, 2024.
[#150]: https://github.com/dahlia/fedify/issues/150


Version 1.0.19
--------------

Released on February 28, 2025.

 -  Made `fedify init` to install *@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]]

 -  Made `fedify init` to install *@logtape/logtape* 0.6.5 which is the version
    used in Fedify 1.0.x.

[#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/",
+1 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@
    "@cross/dir": "jsr:@cross/dir@^1.1.0",
    "@david/dax": "jsr:@david/dax@^0.41.0",
    "@hongminhee/localtunnel": "jsr:@hongminhee/localtunnel@^0.2.0",
    "@logtape/logtape": "jsr:@logtape/logtape@^0.6.2",
    "@logtape/logtape": "jsr:@logtape/logtape@^0.6.5",
    "@poppanator/http-constants": "npm:@poppanator/http-constants@^1.1.1",
    "@std/dotenv": "jsr:@std/dotenv@^0.225.2",
    "@std/fs": "jsr:@std/fs@^0.229.3",
+3 −4
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",
@@ -1007,7 +1006,7 @@ await configure({
    }
    const dependencies: Record<string, string> = {
      "@fedify/fedify": `^${await getLatestFedifyVersion(metadata.version)}`,
      "@logtape/logtape": "^0.4.2",
      "@logtape/logtape": "^0.6.5",
      ...initializer.dependencies,
      ...kvStoreDesc?.dependencies,
      ...mqDesc?.dependencies,
+1 −1
Original line number Diff line number Diff line
@@ -30,7 +30,7 @@
    "@fedify/fedify/x/hono": "./x/hono.ts",
    "@hongminhee/aitertools": "jsr:@hongminhee/aitertools@^0.6.0",
    "@hugoalh/http-header-link": "jsr:@hugoalh/http-header-link@^1.0.2",
    "@logtape/logtape": "jsr:@logtape/logtape@^0.6.2",
    "@logtape/logtape": "jsr:@logtape/logtape@^0.6.5",
    "@phensley/language-tag": "npm:@phensley/language-tag@^1.9.0",
    "@std/assert": "jsr:@std/assert@^0.226.0",
    "@std/async": "jsr:@std/async@^1.0.5",