Unverified Commit 3f4b6f48 authored by Hong Minhee's avatar Hong Minhee
Browse files

Merge tag '1.1.16' into 1.2-maintenance

Fedify 1.1.16
parents fed506bd 73efe0df
Loading
Loading
Loading
Loading
+47 −0
Original line number Diff line number Diff line
@@ -8,6 +8,17 @@ Version 1.2.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.7.2 which is the version
    used in Fedify 1.1.x.


Version 1.2.15
--------------
@@ -310,6 +321,23 @@ Released on October 31, 2024.
[#118]: https://github.com/dahlia/fedify/issues/118


Version 1.1.16
--------------

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.1.x.


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

@@ -652,6 +680,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
--------------

+1 −2
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@
    "@fedify/fedify/x/hono": "../src/./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.7.1",
    "@logtape/logtape": "jsr:@logtape/logtape@^0.7.2",
    "@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",
@@ -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",
+1 −1
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@
    "@hongminhee/localtunnel": "jsr:@hongminhee/localtunnel@^0.2.0",
    "@jimp/core": "npm:@jimp/core@^1.6.0",
    "@jimp/wasm-webp": "npm:@jimp/wasm-webp@^1.6.0",
    "@logtape/logtape": "jsr:@logtape/logtape@^0.7.1",
    "@logtape/logtape": "jsr:@logtape/logtape@^0.7.2",
    "@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",
@@ -1031,7 +1030,7 @@ await configure({
    }
    const dependencies: Record<string, string> = {
      "@fedify/fedify": `^${await getLatestFedifyVersion(metadata.version)}`,
      "@logtape/logtape": "^0.4.2",
      "@logtape/logtape": "^0.7.2",
      ...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.7.1",
    "@logtape/logtape": "jsr:@logtape/logtape@^0.7.2",
    "@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",