Kisaragi
|
9d0f7eeb9c
|
docs: ActivityPub層の変更を含む場合にやるべきことを明文化 (#14812)
|
2024-10-21 15:12:28 +09:00 |
|
Kisaragi
|
a722ea8ccd
|
fix(backend): 連合限定先が間違って連合しない先に代入されているのを修正 (#14662)
* fix(backend): 連合限定先が間違って連合しない先に代入されているのを修正
* build: fix property typo
|
2024-10-03 17:05:14 +09:00 |
|
Kisaragi
|
9dc058189e
|
fix(frontend): データセーバーを有効にしているときにメンションのアイコンがアニメーションしないように (#14674)
|
2024-10-03 15:08:45 +09:00 |
|
Kisaragi
|
23a07c2706
|
ci: fix syntax error (#14602)
|
2024-09-24 09:50:18 +09:00 |
|
Kisaragi
|
9cd784cdee
|
ci: api.jsonの差分がない時は折りたたみを生成しないようにする (#14598)
|
2024-09-21 18:19:09 +09:00 |
|
 Kisaragiandsyuilo
|
6b2072f4b1
|
fix(backend/antenna): キーワードが与えられなかった場合のエラーをApiErrorとして投げる (#14491)
* fix(backend/antenna): report validation failure as ApiError on update
* test(backend/antenna): reflect change in previous commit
* fix(backend/antenna): report validation failure as ApiError on create
* test(backend/antenna): reflect change in previous commit
* test(backend/antenna): semi
* test(backend/antenna): bring being spread parameters first in object literal
* chore: add CHANGELOG entry
---------
Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
|
2024-09-15 15:13:46 +09:00 |
|
Kisaragi
|
255c8bd1b9
|
fix: 投稿フォームの字数上限計算を実際の投稿内容に合わせる (#14466)
|
2024-08-26 15:55:38 +09:00 |
|
 KisaragiandMarie
|
8959ff89d0
|
chore: reflect actual policy about Committers' rights (#14267)
* Update CONTRIBUTING.md
* member -> commiter
* apply suggestions
Co-authored-by: Marie <robloxfilmcam@gmail.com>
* Update CONTRIBUTING.md
---------
Co-authored-by: Marie <robloxfilmcam@gmail.com>
|
2024-07-25 17:12:06 +09:00 |
|
Kisaragi
|
615e60f25c
|
chore: modernize issue template (#14263)
|
2024-07-19 09:52:39 +09:00 |
|
 
|
e716c201c6
|
docs: 開発環境のセットアップ手順を詳細にする (#14235)
* docs: mentioning Devcontainer
fix #13753
* revise
* revise 2
* Apply suggestions from code review
per https://github.com/misskey-dev/misskey/pull/14235#discussion_r1680883942
Co-authored-by: anatawa12 <anatawa12@icloud.com>
* 下の方にあったDevcontainerのセクションをマージ
* revise 3
* Update CONTRIBUTING.md
https://github.com/misskey-dev/misskey/pull/14235#discussion_r1680928026
Co-authored-by: おさむのひと <46447427+samunohito@users.noreply.github.com>
* mention Meilisearch
* Update CONTRIBUTING.md
---------
Co-authored-by: anatawa12 <anatawa12@icloud.com>
Co-authored-by: おさむのひと <46447427+samunohito@users.noreply.github.com>
|
2024-07-18 08:57:02 +09:00 |
|
Kisaragi
|
ce39c3a2fb
|
chore(backend): registed -> registered (#14213)
* chore(backend): registed -> registered
* Update CHANGELOG.md
|
2024-07-15 14:58:48 +09:00 |
|
Kisaragi
|
f0b9d70720
|
ci: cache eslint (#14204)
* ci: cache eslint
* dummy commit to trigger
* fix syntax error
|
2024-07-14 21:30:57 +09:00 |
|
Kisaragi
|
09d30fef5b
|
ci: ワークフローが更新されたときにもワークフローが起動するようにする (#14207)
* ci: include themselves in `on.push.paths`
command: find .github/workflows -type f \( -name '*.yaml' -or -name '*.yml' \) | xargs -I {} yq_4.44.2-linux_x86-64 'select(.on.push.paths != null) | .[0] | map("{}")[0]' {} | xargs -I {} ~/.local/bin/yq_4.44.2-linux_x86-64 -i '.on.push.paths += ["{}"]' {}
* ci: include themselves in `on.pull_request.paths`
command: find .github/workflows -type f \( -name '*.yaml' -or -name '*.yml' \) | xargs -I {} yq_4.44.2-linux_x86-64 'select(.on.pull_request.paths != null) | .[0] | map("{}")[0]' {} | xargs -I {} ~/.local/bin/yq_4.44.2-linux_x86-64 -i '.on.pull_request.paths += ["{}"]' {}
|
2024-07-14 17:27:27 +09:00 |
|
Kisaragi
|
76181385d2
|
refactor(misskey-js): enable exactOptionalPropertyTypes (#14203)
* refactor(misskey-js): enable exactOptionalPropertyTypes
* refactor(misskey-js): fix error where is appeared by enabling
|
2024-07-14 15:52:43 +09:00 |
|
 Kisaragiandanatawa12
|
31e82fc29a
|
test(backend): kill many any in backend test (partial) (#14054)
* kill any on utils:api
* kill any on timeline test
* use optional chain to kill TS2532 on timeline test
変更前: 該当ノートが見つからなければundefinedに対するプロパティアクセスとしてテストがクラッシュ
変更後: 該当ノートが見つからなければoptional chainがundefinedとして評価されるが、strictEqualの右辺がnon-nullableなためアサーションに失敗しテストがクラッシュ
* kill `as any` for ApMfmService
* kill argument any for api-visibility
* kill argument any across a few tests
* do not return value that has yielded from `await`-ing `Promise<void>`
* force cast
* runtime non-null assertion to coerce
* rewrite `assert.notEqual(expr, null)` to `assert.ok(expr)`
こうすることでassertion type扱いになり、non-nullableになる
* change return type of `failedApiCall` to `void`
戻り値がどこにも使われていない
* split bindings for exports.ts
型が合わなくて文句を言ってくるので適切に分割
* runtime non-null assertion
* runtime non-null assertion
* 何故かうまく行かないので、とりあえずXORしてみる
* Revert "何故かうまく行かないので、とりあえずXORしてみる"
This reverts commit 48cf32c930.
* castAsErrorで安全ではないキャストを隠蔽
* 型アサーションの追加
* 型アサーションの追加
* 型アサーションの追加
* voidで値を返さない
* castAsError
* assert.ok => kill nullability
* もはや明示的な型の指定は必要ない
* castAsError
* castAsError
* 型アサーションの追加
* nullableを一旦抑止
* 変数を分離して型エラーを排除
* 不要なプロパティを削除する処理を隠蔽してanyを排除
* Repository type
* simple type
* assert.ok => kill nullability
* revert `as any` drop
reverts fe95c05b3f partialy
* test: fix invalid assertion
partially revert b99b7b5392
* test: 52d8a54fc7 により型が合うようになった部分の`as any`を除去
* format
* test: apply https://github.com/misskey-dev/misskey/pull/14054#discussion_r1672369526 (part 1)
* test: use non-null assertion to suppress too many error
* Update packages/backend/test/utils.ts
Co-authored-by: anatawa12 <anatawa12@icloud.com>
---------
Co-authored-by: anatawa12 <anatawa12@icloud.com>
|
2024-07-14 09:33:16 +09:00 |
|
Kisaragi
|
9fcae7d9b2
|
refactor(sw): enable noImplicitAny (#14191)
|
2024-07-13 16:59:08 +09:00 |
|
Kisaragi
|
52d8a54fc7
|
feat(misskey-js): POST admin/roles/createの型を具象化 (#14167)
* feat(misskey-js): `POST admin/roles/create`の型を具象化
* fix
* docs: CHANGELOG.md
* test(misskey-js): admin/roles/createの型が合うことを表明
* test(misskey-js): single quote
* test(misskey-js): 無を読もうとして爆発するのを修正
* test(misskey-js): fix comment
|
2024-07-10 20:40:04 +09:00 |
|
Kisaragi
|
eafae79869
|
test(backend): goodbye, Lenna (#14111)
|
2024-07-02 14:29:44 +09:00 |
|
Kisaragi
|
9368eb3038
|
refactor: say bye to the weird groupBy friends (#13975)
* refactor(frontend): say bye to the weird groupBy friends
* refactor(backend): say bye to the weird groupBy friends
|
2024-06-22 19:40:55 +09:00 |
|
Kisaragi
|
faeab96e01
|
ci: add quote (#13990)
|
2024-06-22 14:55:24 +09:00 |
|
 Kisaragiandsyuilo
|
ac12ab8629
|
fix(backend): フィードのノートのMFMはHTMLにレンダーしてから返す (#14006)
* fix(backend): フィードのノートのMFMはHTMLにレンダーしてから返す (test wip)
* chore: beforeEachを使う?
* fix: プレーンテキストにフォールバックしてMFMが含まれていないか調べる方針を実装
* fix: application/jsonだとパースされるのでその作用をキャンセル
* build: fix lint error
* docs: update CHANGELOG.md
---------
Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
|
2024-06-22 12:51:02 +09:00 |
|
Kisaragi
|
a88579ca98
|
docs: add changelog entry (follow-up of #14036) (#14037)
|
2024-06-18 12:44:30 +09:00 |
|
Kisaragi
|
9bddb81efc
|
chore: issueを起票する前にGitHub Discussionsにも誘導する (#13991)
|
2024-06-15 08:43:11 +09:00 |
|
Kisaragi
|
c51347d78b
|
docs: update changelog (follow-up of #13949) (#13971)
|
2024-06-13 11:09:03 +09:00 |
|
Kisaragi
|
dc3629e732
|
feat(backend): report Retry-After if client hit rate limit (#13949)
* feat(backend): report `Retry-After` if client hit rate limit
* refactor(backend): fix lint error
|
2024-06-13 10:56:26 +09:00 |
|
Kisaragi
|
ff3a38a7f5
|
fix(frontend): 追加情報のラベルを投稿者のサーバーの絵文字で表示する (#13968)
* fix(frontend): 追加情報のラベルを投稿者のサーバーの絵文字で表示する
* docs: update changelog
|
2024-06-12 10:52:22 +09:00 |
|
Kisaragi
|
cf670e8a3d
|
refactor(backend): avoid as any on CustomEmojiService.ts (#13903)
|
2024-05-29 07:12:50 +09:00 |
|
Kisaragi
|
e57ce4fa0f
|
chore(backend): rename local variable (#13904)
much -> matched
|
2024-05-29 07:12:20 +09:00 |
|
 Kisaragiandsyuilo
|
44cafbb9f2
|
refactor: avoid as any[] on FetchInstanceMetadataService.ts (#13905)
* refactor: avoid `as any[]` on FetchInstanceMetadataService.ts
* apply suggestion
Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
---------
Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
|
2024-05-29 07:11:29 +09:00 |
|
 Kisaragiandかっこかり
|
934f9f80bd
|
docs: 「Feat: 個別のお知らせにリンクで飛べるように」のcherry-pick元を指定 (#13891)
* docs: 「Feat: 個別のお知らせにリンクで飛べるように」のcherry-pick元を指定
cc misskey-dev#13885
* Update CHANGELOG.md
Co-authored-by: Kisaragi <48310258+KisaragiEffective@users.noreply.github.com>
---------
Co-authored-by: かっこかり <67428053+kakkokari-gtyih@users.noreply.github.com>
|
2024-05-27 21:25:07 +09:00 |
|
Kisaragi
|
c530a46e54
|
enhance(backend): ドライブのファイルがNSFWかどうか個別に連合されるように (#13756)
* fix(backend): ノートのattachmentにおいて、attach.sensitiveが元から存在する場合はそれを尊重する
* docs: update changelog (per misskey-dev#13756)
* feat(backend,apub): renderDocumentがsensitiveを連合するようにする
per https://github.com/misskey-dev/misskey/issues/13755#issuecomment-2081303014
* chore(backend): 追加したコメントを削除
* docs: changelogをより丁寧にする
* docs: changelogの項目名をPRに合わせる
* docs: tweak
apply suggestion from mei23
|
2024-05-01 17:13:20 +09:00 |
|
Kisaragi
|
147e8f1e3e
|
feat(backend): likeOnlyなどでハートにフォールバックする際異体字セレクタがない方に揃える (#13299)
* feat(backend): likeOnlyなどでハートにフォールバックする際異体字セレクタがない方に揃える
close #13298
* Update ReactionService.ts
* chore(backend): prefer single quote for string literal
|
2024-02-16 14:25:48 +09:00 |
|
Kisaragi
|
50817df59c
|
Update CHANGELOG.md (#13282)
#13281 に対応していることを強調
|
2024-02-13 05:10:22 +09:00 |
|
 
|
b95e25004f
|
refactor(msjs): avoid any (part 1) (#13247)
* refactor(msjs): avoid any
* run api extractor
---------
Co-authored-by: かっこかり <67428053+kakkokari-gtyih@users.noreply.github.com>
Co-authored-by: kakkokari-gtyih <daisho7308+f@gmail.com>
|
2024-02-12 11:38:16 +09:00 |
|
Kisaragi
|
93e711d8a9
|
chore(frontend): reword possible typo (#13182)
|
2024-02-06 17:17:52 +09:00 |
|
Kisaragi
|
47a10f6a6d
|
refactor(frontend): give local variable to explicit type annotation to avoid TS7043 (#12495)
* refactor: give local variable to explicit type annotation to avoid TS7043
* chore: fix lint error
|
2023-11-30 14:46:16 +09:00 |
|
Kisaragi
|
d58ec4e65b
|
docs(changelog): GHSA-3f39-6537-3cgc について追記 (#12482)
|
2023-11-27 21:37:37 +09:00 |
|
 
|
83d0f819be
|
refactor(backend): validateNoteの引数の型を強くし、anyを除去 (#10325)
* refactor(backend): validateNoteの引数の型を推論する
* fix(backend): アサーションの内容から推論してエラーの内容を期待されるであろう式へと変更する
* refactor
Co-authored-by: Acid-Chicken <root@acid-chicken.com>
---------
Co-authored-by: tamaina <tamaina@hotmail.co.jp>
Co-authored-by: Acid-Chicken <root@acid-chicken.com>
|
2023-04-14 16:27:55 +09:00 |
|
Kisaragi
|
191233143f
|
refactor(frontend): 引数の型を強くし、関数内部のas anyを除去 (#10315)
|
2023-03-13 20:04:14 +09:00 |
|
Kisaragi
|
0ac1fc846b
|
refactor(backend): 必要ないas anyを消去 (#10293)
|
2023-03-11 08:51:37 +09:00 |
|
Kisaragi
|
a81ebc5966
|
chore(backend): fix typo in warning message (#10284)
|
2023-03-10 13:21:23 +09:00 |
|