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

Merge tag '1.2.8'

Fedify 1.2.8
parents cf3769f5 f3b79bbf
Loading
Loading
Loading
Loading
+32 −0
Original line number Diff line number Diff line
@@ -68,6 +68,22 @@ To be released.
[#162]: https://github.com/dahlia/fedify/issues/162


Version 1.2.8
-------------

Released on November 23, 2024.

 -  Fixed warnings from the `fedify inbox` command.
    [[#177], [#181] by WinterHana]
 -  Fixed `ShikiError` on the `fedify inbox` command rendering web interface.
    [[#178], [#185] by Heesun Jung]
 -  Fixed text overflow of the `fedify inbox` command's web log view.
    [[#180], [#188] by Lim Kyunghee]

[#177]: https://github.com/dahlia/fedify/issues/177
[#181]: https://github.com/dahlia/fedify/pull/181


Version 1.2.7
-------------

@@ -258,6 +274,22 @@ Released on October 31, 2024.
[#118]: https://github.com/dahlia/fedify/issues/118


Version 1.1.8
-------------

Released on November 23, 2024.

 -  Fixed `ShikiError` on the `fedify inbox` command rendering web interface.
    [[#178], [#185] by Heesun Jung]
 -  Fixed text overflow of the `fedify inbox` command's web log view.
    [[#180], [#188] by Lim Kyunghee]

[#178]: https://github.com/dahlia/fedify/issues/178
[#180]: https://github.com/dahlia/fedify/issues/180
[#185]: https://github.com/dahlia/fedify/pull/185
[#188]: https://github.com/dahlia/fedify/pull/188


Version 1.1.7
-------------

+6 −2
Original line number Diff line number Diff line
@@ -139,14 +139,18 @@ const Log: FC<LogProps> = (
  return (
    <li class={"list-group-item " + listClass}>
      <div class="d-flex w-100 justify-content-between">
        <p class="mb-1" style="white-space: pre;">
        <p class="mb-1" style="white-space: pre-wrap; word-break: break-word;">
          {message.map((m, i) =>
            i % 2 == 0
              ? m
              : <code>{typeof m === "string" ? m : Deno.inspect(m)}</code>
          )}
        </p>
        <time class="text-body-secondary" datetime={time.toString()}>
        <time
          class="text-body-secondary"
          datetime={time.toString()}
          style="flex-shrink: 0;"
        >
          <small>{time.toLocaleString()}</small>
        </time>
      </div>
+2 −0
Original line number Diff line number Diff line
@@ -4,6 +4,7 @@ import {
  type LogRecord,
  type Sink,
} from "@logtape/logtape";
import { AsyncLocalStorage } from "node:async_hooks";

export interface RecordingSink extends Sink {
  startRecording(): void;
@@ -45,5 +46,6 @@ await configure({
      sinks: ["console"],
    },
  ],
  contextLocalStorage: new AsyncLocalStorage(),
  reset: true,
});