Unverified Commit d5e0642c authored by Hong Minhee's avatar Hong Minhee
Browse files

Rename @fedify/fedify/httpsig → @fedify/fedify/sig

parent b03181c1
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
@@ -47,11 +47,22 @@ To be released.
     -  The signature of the `verify()` function is revamped; it now optionally
        takes a `VerifyOptions` object as the second parameter.

 -  Renamed the `@fedify/fedify/httpsig` module to `@fedify/fedify/sig`, and
    also:

     -  Deprecated `sign()` function.  Use `signRequest()` instead.
     -  Deprecated `verify()` function.  Use `verifyRequest()` instead.
     -  Deprecated `VerifyOptions` interface.  Use `VerifyRequestOptions`
        instead.

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

     -  `["fedify", "federation", "actor"]`
     -  `["fedify", "federation", "http"]`
     -  `["fedify", "sig", "http"]`
     -  `["fedify", "sig", "key"]`
     -  `["fedify", "sig", "owner"]`

[#48]: https://github.com/dahlia/fedify/issues/48
[#52]: https://github.com/dahlia/fedify/issues/52
+1 −0
Original line number Diff line number Diff line
@@ -7,6 +7,7 @@
    "./httpsig": "./httpsig/mod.ts",
    "./nodeinfo": "./nodeinfo/mod.ts",
    "./runtime": "./runtime/mod.ts",
    "./sig": "./sig/mod.ts",
    "./vocab": "./vocab/mod.ts",
    "./webfinger": "./webfinger/mod.ts",
    "./x/denokv": "./x/denokv.ts",
+1 −0
Original line number Diff line number Diff line
@@ -41,6 +41,7 @@
    "@preact/signals": "https://esm.sh/*@preact/signals@1.2.3",
    "@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.6.0",
    "@std/dotenv/load": "jsr:@std/dotenv@^0.224.0/load",
    "@fedify/fedify/sig": "../../sig/mod.ts",
    "markdown-it": "npm:markdown-it@^14.1.0",
    "preact": "https://esm.sh/preact@10.20.2",
    "preact/": "https://esm.sh/preact@10.20.2/",
+1 −0
Original line number Diff line number Diff line
@@ -11,6 +11,7 @@
    "@fedify/fedify/federation": "../../federation/mod.ts",
    "@fedify/fedify/httpsig": "../../httpsig/mod.ts",
    "@fedify/fedify/runtime": "../../runtime/mod.ts",
    "@fedify/fedify/sig": "../../sig/mod.ts",
    "@fedify/fedify/vocab": "../../vocab/mod.ts",
    "@fedify/fedify/webfinger": "../../webfinger/mod.ts",
    "@fedify/fedify/x/fresh": "../../x/fresh.ts",
+1 −0
Original line number Diff line number Diff line
@@ -37,6 +37,7 @@
    "mock_fetch": "https://deno.land/x/mock_fetch@0.3.0/mod.ts",
    "uri-template-router": "npm:uri-template-router@^0.0.16",
    "url-template": "npm:url-template@^3.1.1",
    "@fedify/fedify/sig": "../../sig/mod.ts",
    "hono": "https://deno.land/x/hono@v4.1.7/mod.ts"
  }
}
Loading