-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[pull] develop from misskey-dev:develop #6
Conversation
* fix: correct typos * chore: convert indentation to tabs * fix: missing lang * chore: trim unnecessary whitespaces and newlines * chore: use local path * chore: use GFM alerts * fix: missing use GFM alerts
* fix(build): autogen生成時にbackendを2度buildしているのを修正 * fix * fix
* fix(frontend): modalが正しく閉じられていないのを修正 * Update packages/frontend/src/components/MkSystemWebhookEditor.vue Co-authored-by: syuilo <[email protected]> --------- Co-authored-by: syuilo <[email protected]>
@@ -1,7 +1,7 @@ | |||
# Contribution guide |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
コード改善点
- コメントの統一:
**Note**
や**Warning**
を[!NOTE]
や[!WARNING]
に統一することで、可読性と視覚的な一貫性を向上させましょう。 - 日本語表記の統一: 「Commiter」は「コミッター」と、「Desicion」は「Decision」と、日本語表記を統一しましょう。
- コードブロックのインデント: コードブロックのインデントを統一し、可読性を向上させましょう。
- 不要な空白行の削除: 不要な空白行を削除し、コードの密度を高めましょう。
- 段落の分割: 長い段落を分割し、読みやすくしましょう。
@@ -21,7 +21,7 @@ | |||
"build-assets": "node ./scripts/build-assets.mjs", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
コード改善点 (Uncle Bob 風)
- 過剰なコマンドチェーンを分割:
build-misskey-js-with-types
のコマンドは長すぎます。より小さな、目的が明確なコマンドに分割しましょう。 - 重複を排除:
pnpm --filter backend... --filter=!misskey-js build
は他のコマンドでも使われています。共通部分を関数やスクリプトとして切り出し、再利用しましょう。 - 意味のある名前:
build-misskey-js-with-types
のような長い名前は理解しにくいです。より簡潔で意味が伝わる名前に変更しましょう。 - コメント: コマンドの意味がすぐに理解できるように、簡単なコメントを追加しましょう。
- 可読性を向上: インデントやスペースを適切に利用してコードを見やすくしましょう。
@@ -31,7 +31,7 @@ | |||
"test:e2e": "pnpm build && pnpm build:test && pnpm jest:e2e", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
コード改善点 (Uncle Bob スタイル)
- ビルド依存関係を削除:
generate-api-json
スクリプトはビルドに依存していないため、pnpm build
を削除して独立した実行にします。 - スクリプトの命名を明確化:
generate_api_json.js
のようなアンダースコアを用いた命名は避けて、generateApiJson.js
のようにキャメルケースを使用します。 - 依存関係を明示的に宣言: スクリプトで使用されるモジュールを
package.json
のdependencies
またはdevDependencies
に明記します。 - テストを充実させる:
generate-api-json
スクリプトに対して単体テストを追加して、その動作を検証します。 - コードの可読性を向上: 必要な箇所でコメントを追加したり、変数名や関数名を適切なものに修正したりして、コードの可読性を向上させます。
@@ -3,11 +3,34 @@ | |||
* SPDX-License-Identifier: AGPL-3.0-only |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
コード改善点 (Uncle Bob 風)
- 依存関係の注入:
loadConfig
やgenOpenapiSpec
を直接呼び出すのではなく、モジュールとして注入する。これにより、テストやモック化が容易になる。 - エラー処理:
existsSync
でbuilt
ディレクトリが存在しない場合にエラーを投げるのではなく、適切なエラーメッセージを表示してプログラムを終了させる。 - 非同期処理:
execa
を使用してビルドプロセスを非同期で行うことで、コードの実行速度を向上させる。 - 関数分割:
main
関数内のコードをさらに小さな関数に分割することで、コードの可読性と保守性を向上させる。 - コメント: コードの意図を明確にするために、適切なコメントを追加する。特に、複雑なロジックや重要な変数の説明を加える。
@@ -24,22 +24,23 @@ export type MkSystemWebhookResult = { | |||
}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
コード改善点 (Uncle Bob 風)
- 不要な変数:
dispose
変数は、submitted
イベント内で使用されていないため削除できます。 - シンプルさ:
Promise
内のオブジェクトを簡潔にすることで可読性を向上できます。 - 責務:
dispose
処理は、closed
イベント内に移動することで関心の分離を促進できます。 - 名前:
_dispose
のようなアンダースコア付き変数は、可読性を低下させるため、より明確な名前に変更する必要があります。 - エラーハンドリング:
popup
の潜在的なエラーを処理し、適切なエラーメッセージを表示する必要があります。
@@ -5,14 +5,15 @@ SPDX-License-Identifier: AGPL-3.0-only | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
コード改善点 (Uncle Bob風に)
- 不要なイベントリスナーの削除:
@closed
イベントリスナーは@close
イベントリスナーと重複しているため、削除してコードを簡潔にしましょう。 - ダイアログの参照:
MkModalWindow
コンポーネントへの参照をshallowRef
を使って取得し、ダイアログを直接操作できるようにしましょう。 - イベントの統一:
onCancelClicked
関数はclose
イベントに統一して、ロジックを簡潔化しましょう。 - エラー処理の改善: エラー発生時に
dialogEl.value?.close()
でダイアログを確実に閉じ、emit('canceled')
でキャンセルイベントを発火させましょう。 - コメントの改善: 不要なコメントは削除し、必要なコメントは簡潔で分かりやすいものに変更しましょう。
@@ -61,7 +61,7 @@ SPDX-License-Identifier: AGPL-3.0-only | |||
</template> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
コード改善点 (Uncle Bob風)
shallowRef
を適切に利用:dialogEl
は参照型なので、shallowRef
を使ってパフォーマンスを向上させましょう。- null チェック:
dialogEl.value?.close()
を使用して、dialogEl
が null の場合にエラーを回避しましょう。 - 不要な
onMounted
:onMounted
は空なので、削除しても問題ありません。 recents
の扱い:recents
はdefaultStore.state.recentlyUsedUsers
の複製なので、直接操作する代わりに、defaultStore.state.recentlyUsedUsers
を更新した方が良いでしょう。- 不要なコメント:
// 最近使ったユーザー更新
はコードから明らかで、コメントは不要です。
@@ -5,7 +5,7 @@ SPDX-License-Identifier: AGPL-3.0-only | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
コード改善点
dialog
からdialogEl
にリファクタリング:ref
の命名はコンポーネント名と区別するため、El
をつけるのが良い慣習です。dialogEl
はコンポーネントインスタンスへの参照で、dialog
は変数名として使われているため、可読性を向上します。
shallowRef
を使用:dialogEl
のような参照型に対しては、パフォーマンス向上のためshallowRef
を使うのが適切です。
emit('closed')
をemit('canceled')
に変更:- モーダルウィンドウを閉じるイベントとして
canceled
を使用することで、キャンセルと提出を区別できます。
- モーダルウィンドウを閉じるイベントとして
- イベントハンドラ内で
dialogEl.value?.close()
を使用:close
メソッド呼び出しをイベントハンドラに集約することで、コードを簡潔にすることができます。
onSubmitClicked
のtry-catch
ブロックを簡素化:- エラーハンドリングを共通化し、
emit('canceled')
を使用して適切なイベントを発行することで、コードの重複を減らします。
- エラーハンドリングを共通化し、
@@ -108,26 +108,27 @@ async function onDeleteButtonClicked(id: string) { | |||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
os.popup
の返り値のdispose
をneedLoad
と同じレベルで受け取ると、コードがよりシンプルになります。submitted
とcanceled
のコールバックは、dispose
を呼び出す必要がなく、シンプルにneedLoad
の値を設定するだけで済みます。closed
のコールバックは、dispose
を呼び出すだけで十分であり、needLoad
の値を設定する必要はありません。dispose
をsubmitted
やcanceled
のコールバック内で呼び出すのは、closed
で呼び出す方が適切です。dispose
をneedLoad
と同じレベルで受け取ることで、dispose
を呼び出すコードをsubmitted
とcanceled
から削除できます。
このPRによるapi.jsonの差分 差分はこちら |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## develop #6 +/- ##
===========================================
- Coverage 41.99% 40.08% -1.92%
===========================================
Files 1528 1524 -4
Lines 194787 188792 -5995
Branches 3506 3468 -38
===========================================
- Hits 81800 75668 -6132
- Misses 112414 112580 +166
+ Partials 573 544 -29 ☔ View full report in Codecov by Sentry. |
* chore(frontend): reorder assignments * fix(frontend): visibleUserIds is not kept when deleteAndEdit * fix(frontend): quoteId is not kept on draft * fix(frontend): reactionAcceptance is not kept for draft/deleteAndEdit * docs(changelog): update changelog
* fix: deck uiの通知音が重なる * docs: Fix: deck uiの通知音が重なる問題 * unexport internal function * fix Co-authored-by: Sayamame-beans <[email protected]> * chore: improve condition * docs: move js dco comment --------- Co-authored-by: Sayamame-beans <[email protected]> Co-authored-by: syuilo <[email protected]>
* New translations ja-jp.yml (Chinese Traditional) * New translations ja-jp.yml (Chinese Traditional) * New translations ja-jp.yml (Chinese Traditional) * New translations ja-jp.yml (Chinese Simplified) * New translations ja-jp.yml (Korean) * New translations ja-jp.yml (Korean) * New translations ja-jp.yml (Korean) * New translations ja-jp.yml (Korean) * New translations ja-jp.yml (English) * New translations ja-jp.yml (Korean) * New translations ja-jp.yml (Korean) * New translations ja-jp.yml (Thai) * New translations ja-jp.yml (Indonesian) * New translations ja-jp.yml (Chinese Simplified) * New translations ja-jp.yml (Spanish) * New translations ja-jp.yml (Italian) * New translations ja-jp.yml (Japanese, Kansai) * New translations ja-jp.yml (Indonesian) * New translations ja-jp.yml (French) * New translations ja-jp.yml (Czech) * New translations ja-jp.yml (German) * New translations ja-jp.yml (Korean) * New translations ja-jp.yml (Polish) * New translations ja-jp.yml (Portuguese) * New translations ja-jp.yml (Vietnamese) * New translations ja-jp.yml (Romanian) * New translations ja-jp.yml (Arabic) * New translations ja-jp.yml (Catalan) * New translations ja-jp.yml (Norwegian) * New translations ja-jp.yml (Russian) * New translations ja-jp.yml (Slovak) * New translations ja-jp.yml (Swedish) * New translations ja-jp.yml (Ukrainian) * New translations ja-jp.yml (Chinese Traditional) * New translations ja-jp.yml (English) * New translations ja-jp.yml (Bengali) * New translations ja-jp.yml (Thai) * New translations ja-jp.yml (Uzbek) * New translations ja-jp.yml (Lao) * New translations ja-jp.yml (Kabyle) * New translations ja-jp.yml (Korean (Gyeongsang)) * New translations ja-jp.yml (Chinese Traditional) * New translations ja-jp.yml (Chinese Traditional) * New translations ja-jp.yml (Chinese Simplified) * New translations ja-jp.yml (Chinese Simplified) * New translations ja-jp.yml (Korean) * New translations ja-jp.yml (Korean) * New translations ja-jp.yml (Japanese, Kansai) * New translations ja-jp.yml (English) * New translations ja-jp.yml (Chinese Simplified) * New translations ja-jp.yml (Korean) * New translations ja-jp.yml (Chinese Traditional) * New translations ja-jp.yml (Chinese Traditional) * New translations ja-jp.yml (English) * New translations ja-jp.yml (English) * New translations ja-jp.yml (Japanese, Kansai) * New translations ja-jp.yml (Chinese Simplified) * New translations ja-jp.yml (Vietnamese) * New translations ja-jp.yml (Japanese, Kansai) * New translations ja-jp.yml (Chinese Traditional) * New translations ja-jp.yml (English) * New translations ja-jp.yml (Chinese Simplified) * New translations ja-jp.yml (Vietnamese) * New translations ja-jp.yml (French) * New translations ja-jp.yml (Spanish) * New translations ja-jp.yml (Arabic) * New translations ja-jp.yml (Catalan) * New translations ja-jp.yml (Czech) * New translations ja-jp.yml (German) * New translations ja-jp.yml (Greek) * New translations ja-jp.yml (Italian) * New translations ja-jp.yml (Korean) * New translations ja-jp.yml (Polish) * New translations ja-jp.yml (Russian) * New translations ja-jp.yml (Slovak) * New translations ja-jp.yml (Swedish) * New translations ja-jp.yml (Ukrainian) * New translations ja-jp.yml (Indonesian) * New translations ja-jp.yml (Bengali) * New translations ja-jp.yml (Thai) * New translations ja-jp.yml (Italian) * New translations ja-jp.yml (Italian) * New translations ja-jp.yml (Chinese Traditional) * New translations ja-jp.yml (Spanish) * New translations ja-jp.yml (Chinese Simplified) * New translations ja-jp.yml (Chinese Traditional) * New translations ja-jp.yml (Chinese Traditional) * New translations ja-jp.yml (Chinese Simplified) * New translations ja-jp.yml (Italian) * New translations ja-jp.yml (English) * New translations ja-jp.yml (Indonesian) * New translations ja-jp.yml (Chinese Traditional) * New translations ja-jp.yml (Italian) * New translations ja-jp.yml (Chinese Simplified) * New translations ja-jp.yml (Chinese Simplified) * New translations ja-jp.yml (Chinese Traditional) * New translations ja-jp.yml (English) * New translations ja-jp.yml (English) * New translations ja-jp.yml (English) * New translations ja-jp.yml (Thai) * New translations ja-jp.yml (Thai) * New translations ja-jp.yml (Thai) * New translations ja-jp.yml (Thai) * New translations ja-jp.yml (Indonesian) * New translations ja-jp.yml (Thai) * New translations ja-jp.yml (Thai) * New translations ja-jp.yml (Thai) * New translations ja-jp.yml (Lao) * New translations ja-jp.yml (Thai) * New translations ja-jp.yml (Thai) * New translations ja-jp.yml (Thai) * New translations ja-jp.yml (Thai) * New translations ja-jp.yml (Thai) * New translations ja-jp.yml (Thai)
…含めないように (#14324) * enhance(frontend): 連合の「連合中」,「購読中」,「配信中」に対してブロックしているサーバー、配信停止しているサーバーを含めないように * update CHANGELOG.md
* fix(frontend): pure renote cannot create with url based quote * docs(changelog): update changelog
* enhance(frontend): 自分のクリップ一覧ではアバターを表示しないように * Update Changelog * rename --------- Co-authored-by: syuilo <[email protected]>
* fix(frontend): emojiPickerを使用して絵文字を挿入する際、refに直接挿入するように * add comment
* New translations ja-jp.yml (Thai) * New translations ja-jp.yml (Thai) * New translations ja-jp.yml (Thai) * New translations ja-jp.yml (Thai) * New translations ja-jp.yml (Thai) * New translations ja-jp.yml (Thai) * New translations ja-jp.yml (Chinese Simplified) * New translations ja-jp.yml (Korean) * New translations ja-jp.yml (Thai) * New translations ja-jp.yml (English) * New translations ja-jp.yml (Chinese Simplified) * New translations ja-jp.yml (Chinese Traditional) * New translations ja-jp.yml (Chinese Simplified)
* enhance(frontend): 検索からハッシュタグのページを開けるように * fix(frontend): 照会で入力が`#`のみの場合は`/tags/`に遷移しないように * docs(changelog): update changelog * enhance(frontend): ユーザー検索からもハッシュタグのページを開けるように * docs(changelog): update changelog * enhance(frontend): 検索範囲等が指定されている時は照会/ハッシュタグページを開かないように * enhance(frontend): 検索内容に空白が含まれている場合は照会/ハッシュタグページを開かないように * docs(changelog): update changelog * Revert "enhance(frontend): 検索範囲等が指定されている時は照会/ハッシュタグページを開かないように" This reverts commit f84eece. * enhance(frontend): 検索から照会/ハッシュタグページを開くかどうか確認するように * docs(changelog): update changelog * chore: fix lint * docs(changelog): update changelog insertion position * enhance(frontend): 検索から`@user@host`の形式で照会出来るように * fix(frontend): 照会で入力が`@`のみの場合に`/@`に遷移しないように * fix(backend): `users/search`において`@`から始まるqueryに対する処理が正しくなかった問題を修正 * docs(changelog): update changelog * chore(backend): fix lint error * fix(backend): more improvements for users/search when query startswith `@` * chore: unify common conditions * docs(changelog): refine changelog * chore(backend): fix lint error * MkInputをpreventに対応させ、enterの意図せぬ伝搬を防ぐ * chore(frontend/search.user): use .prevent to prevent the propagation of enter instead of setTimeout --------- Co-authored-by: samunohito <[email protected]> Co-authored-by: syuilo <[email protected]> Co-authored-by: taichanne30 <[email protected]>
* fix: reply to my follower notes are not shown on the home timeline * fix: reply to follower note by non-following is on social timeline * docs: changelog * test: add endpoint test for changes * test(e2e): 自分のfollowers投稿に対するリプライが流れる * test(e2e/streaming): 自分のfollowers投稿に対するリプライが流れる * test(e2e/streaming): フォローしていないユーザによるフォロワー限定投稿に対するリプライがソーシャルタイムラインで表示されることがある問題 * test(e2e/timelines): try fixing typecheck error --------- Co-authored-by: Sayamame-beans <[email protected]>
* feat: media silence * fix: lint * feat: deny creating custom emoji reaction and using custom emoji from media silenced hosts * chore: メディアサイレンスの説明にカスタム絵文字の話を追加 * Update locales/ja-JP.yml Co-authored-by: Sayamame-beans <[email protected]> * chore: update index.d.ts * docs(changelog): update changelog --------- Co-authored-by: Sayamame-beans <[email protected]>
* chore: improve withReplies toggle for user following * chore: improve withReplies toggle for list * docs(changelog): フォロー中のユーザーに関する"TLに他の人への返信を含める"の設定が分かりづらい問題を修正 * Fix CHANGELOG.md * docs(changelog): update insertion position --------- Co-authored-by: Sayamame-beans <[email protected]>
* fix: withRepliesがオフのときにwithFilesのとぐるをいじれない問題 * fix: type errors in tl-column * fix: deck uiでタイムラインを切り替えた際にTLの設定項目が更新されない * refactor: タイムラインの各種知識を一つのファイルに統合 fix: ウィジェットのタイムライン選択欄に表示できないタイムラインが表示される * docs(changelog): timeline improvements * fix: missing license header * chore: timeline > basic timeline * use BasicTimelineType in deck-store * Update CHANGELOG.md --------- Co-authored-by: Sayamame-beans <[email protected]>
* fix(frontend): ドライブの音声が再生できない場合の処理を追加 * Update Changelog * fix lint * Update packages/frontend/src/scripts/sound.ts * lint * Update sound.ts * fix merge mistakes * use shorthand operator --------- Co-authored-by: syuilo <[email protected]>
* New translations ja-jp.yml (Chinese Simplified) * New translations ja-jp.yml (Chinese Traditional) * New translations ja-jp.yml (English) * New translations ja-jp.yml (Chinese Simplified) * New translations ja-jp.yml (English)
* Fix condition of STL available * Fix: condition of stl * Listがタイムラインのヘッダーから消えている
* New translations ja-jp.yml (Japanese, Kansai) * New translations ja-jp.yml (Chinese Traditional) * New translations ja-jp.yml (English) * New translations ja-jp.yml (Chinese Simplified) * New translations ja-jp.yml (Vietnamese) * New translations ja-jp.yml (Spanish) * New translations ja-jp.yml (Czech) * New translations ja-jp.yml (German) * New translations ja-jp.yml (Italian) * New translations ja-jp.yml (Korean) * New translations ja-jp.yml (Polish) * New translations ja-jp.yml (Indonesian) * New translations ja-jp.yml (Thai) * New translations ja-jp.yml (English) * New translations ja-jp.yml (English) * New translations ja-jp.yml (Chinese Simplified) * New translations ja-jp.yml (Chinese Traditional)
Note
General
pnpm
のインストールで固まることがある問題Client
(Based on fix(frontend): フォーカス/タブ移動に関する挙動を調整 taiyme/misskey#226)
(Cherry-picked from improve(frontend): サーバー情報・お問い合わせページを改修 taiyme/misskey#238)
tada
,jelly
,twitch
,shake
,spin
,jump
,bounce
,rainbow
)/about#federation
ページなどで各インスタンスのチャートが表示されなくなっていた問題を修正(Cherry-picked from improve(frontend): hotkeyの改修 taiyme/misskey#234)
(Cherry-picked from https://activitypub.software/TransFem-org/Sharkey/-/merge_requests/574)
(Cherry-picked from 絵文字関連の不具合を修正 MisskeyIO/misskey#672)
/share
ページにおいて絵文字ピッカーを開くことができない問題を修正Server
Feat: レートリミット制限に引っかかったときに
Retry-After
ヘッダーを返すように (feat(backend): reportRetry-After
if client hit rate limit misskey-dev/misskey#13949)Enhance: エンドポイント
clips/update
の必須項目をclipId
のみにEnhance: エンドポイント
admin/roles/update
の必須項目をroleId
のみにEnhance: エンドポイント
pages/update
の必須項目をpageId
のみにEnhance: エンドポイント
gallery/posts/update
の必須項目をpostId
のみにEnhance: エンドポイント
i/webhook/update
の必須項目をwebhookId
のみにEnhance: エンドポイント
admin/ad/update
の必須項目をid
のみにEnhance:
default.yml
内のurl
,db.db
,db.user
,db.pass
を環境変数から読み込めるようにFix: チャート生成時にinstance.suspensionStateに置き換えられたinstance.isSuspendedが参照されてしまう問題を修正
Fix: ユーザーのフィードページのMFMをHTMLに展開するように (fix(backend): フィードのノートのMFMはHTMLにレンダーしてから返す misskey-dev/misskey#14006)
Fix: アンテナ・クリップ・リスト・ウェブフックがロールポリシーの上限より一つ多く作れてしまうのを修正 (Fix(backend): Limit antenna/clip/list/webhook to exact amount misskey-dev/misskey#14036)
Fix: notRespondingSinceが実装される前に不通になったインスタンスが自動的に配信停止にならない (fix: notRespondingSinceが実装される前に不通になったインスタンスが自動的に配信停止にならない misskey-dev/misskey#14059)
Fix: FTT有効時、タイムライン用エンドポイントで
sinceId
にキャッシュ内最古のものより古いものを指定した場合に正しく結果が返ってこない問題を修正Fix: 自分以外のクリップ内のノート個数が見えることがあるのを修正
Fix: 空文字列のリアクションはフォールバックされるように
Fix: リノートにリアクションできないように
Fix: ユーザー名の前後に空白文字列がある場合は省略するように
Fix: プロフィール編集時に名前を空白文字列のみにできる問題を修正
Fix: ユーザ名のサジェスト時に表示される内容と順番を調整(以下の順番になります) フォロー中のユーザが一定期間非アクティブである場合サジェストされなくなる misskey-dev/misskey#14149
また、自分自身のアカウントもサジェストされるようになりました。
Fix: 一般ユーザーから見たユーザーのバッジの一覧に公開されていないものが含まれることがある問題を修正
(Cherry-picked from 公開バッジのみをpackするように MisskeyIO/misskey#652)
Fix: ユーザーのリアクション一覧でミュート/ブロックが機能していなかった問題を修正
Fix: FTT有効時にリモートユーザーのノートがHTLにキャッシュされる問題を修正
Fix: 一部の通知がローカル上のリモートユーザーに対して行われていた問題を修正
Fix: エラーメッセージの誤字を修正 (chore(backend): registed -> registered misskey-dev/misskey#14213)
Fix: ソーシャルタイムラインにローカルタイムラインに表示される自分へのリプライが表示されない問題を修正
Fix: リノートのミュートが適用されるまでに時間がかかることがある問題を修正
(Cherry-picked from Type4ny-Project@e960102)
Fix: Steaming APIが不正なデータを受けた場合の動作が不安定である問題 kill any from streaming API Implementation misskey-dev/misskey#14251
Misskey.js
/drive/files/create
のリクエストに対応(multipart/form-data
に対応)/admin/role/create
のロールポリシーの型を修正