Skip to content

v8.0.3

Latest

Choose a tag to compare

@github-actions github-actions released this 07 Sep 08:48
· 3 commits to master since this release

💎 Features

  • feat(editor): Add slash command to the Markdown editor (#11838) @Ryosei-Fukushima
    • Typing / in the Markdown editor now opens a command menu; keep typing to filter, then pick with the keyboard or a click to insert headings (H1–H3), bullet / numbered / task lists, quotes, code blocks and tables without reaching for the toolbar.
    • Markdown エディタで / を入力するとコマンドメニューが開き、続けて文字を打つと候補が絞り込まれ、キーボードまたはクリックで見出し(H1〜H3)・箇条書き・番号付きリスト・チェックボックス・引用・コードブロック・テーブルを挿入できるようになった。ページ本文とコメント欄の両方で使え、既存の絵文字補完(:)や @ メンション補完と共存する。

🚀 Improvement

  • imprv(news): Render GROWI news as Markdown (#11608) @ryotaro-nagahara
    • GROWI news entries can now be written in Markdown, so headings, tables, links and images including animated GIFs render properly. News is drawn by a dedicated renderer with a narrowed sanitize schema rather than the wiki renderer.
    • GROWI のニュース本文を Markdown で記述できるようになり、見出し・テーブル・リンク・画像(アニメーション GIF を含む)が表示できる。外部から配信されるコンテンツのため、描画には Wiki のレンダラを流用せず、許可範囲を絞った専用レンダラを使う。
  • imprv: Refactoring for extracting shared page-access check for attachment retrieval (#11813) @yuki-takei
    • The two attachment retrieval routes each carried a verbatim copy of the "can this viewer access the attachment's owning page?" check; both now delegate to one shared function while keeping their own response formats. Internal refactoring with no behavior change.
    • 添付ファイル取得の 2 つのルートに重複していた「閲覧者がその添付の属するページにアクセスできるか」の判定を、共通の関数へ切り出した。応答の形式は各ルートのまま維持しており、内部実装の整理で挙動の変更はない。

🐛 Bug Fixes

  • fix: Clean pages automatically using cron job (#11513) @arvid-e
    • cron ジョブによってページの自動クリーンアップが行われるよう修正。
  • fix(page-bulk-export): Embed attachment images in exported PDFs (RELAY mode) (#11859) @yuki-takei
    • ページの一括エクスポートで、RELAY モード時に出力される PDF へ添付画像を埋め込むよう修正。
  • fix: Enforce access control on revision-by-id and attachment-by-id apiv3 routes (#11810) @yuki-takei
    • apiv3 の revision / attachment を id で取得するルートに、アクセス制御を適用するよう修正。