かっこかり
c0a8c7f93a
enhance(backend): SummalyのUser Agentを改善 ( #17589 )
...
* enhance(backend): SummalyのUser Agentを改善
* Update Changelog
* update summaly
2026-06-20 21:33:15 +09:00
anatawa12
21a4f95bd6
fix: the script contains locale json is prefetched ( #17585 )
...
This commit upgrades rolldown used by vite to 1.1.0 and set
includeDependenciesRecursively instead of maxSize for
i18n code splitting group.
We unexpectedly prefetched the script file includes locale JSON
before this fix because locale inliner did not remove prefetch
for transitive dependency of i18n global variable.
Current locale inliner assumes the file contains i18n global
variable and the file contains i18n global variable are same file
and only removes prefetch for the file for i18n global variable
and leaves dependency files of the file.
However, in the previous fix for rolldown migration regression,
we set `maxSize: 1` for manual chunk of i18n.
This makes the chunk for i18n global variable (@/i18n.js) and
the chunk includes locale JSON (@@/js/locale.js) distinct chunks.
As a result, only prefetch for i18n global is removed and local
JSON remain in the prefetch file name dictionary (__vite__mapDeps).
There is two ways to fix this problem: 1) make rolldown to bundle
i18n related files into one but leave unrelated files separated
module or 2) update locale inliner to remove transitive dependency
of i18n of __vite__mapDeps.
2nd way is prune to rolldown changes, and it's possible by parsing
each .js file to (re)create module graph in inliner, it's complex.
Therefore, this commit fixes this with 1st way with
includeDependenciesRecursively option on `codeSplitting.groups`
newly added in rolldown 1.1.0.
Since latest vite as of writing (8.0.16) strictly depends on
rolldown 1.0.3, we cannot use it normally. We use overrides
to work around this problem. As far as I checked the vite
repository, upgrading rolldown to 1.1.x includes no code changes
except for package.json, so I hope this upgrade is safe.
2026-06-20 08:59:01 +09:00
かっこかり
05dd02a463
deps: update dependencies ( #17575 )
...
* deps: update security dependencies
* deps: update dependencies
* deps(backend): update juice
2026-06-17 12:13:50 +09:00
かっこかり
0b4764c68b
enhance: estree-walkerをoxc-walkerに変更 ( #17556 )
...
* enhance: estree-walkerをoxc-walkerに変更
* fix lint [ci skip]
2026-06-09 12:10:15 +09:00
かっこかり
81b182460e
deps: update dependencies ( #17477 )
...
* deps: update dependencies
* fix archiver types not updated
* spdx
* update archiver types
* update deps
* fix test
2026-06-07 17:25:43 +09:00
anatawa12
67a0ae460d
fix(frontend): locale inliner is not working ( #17543 )
...
* feat: support facade module
* refactor: migrate typings to ESTree from rolldown/utils
* fix: name conflict from function parameter are not detected correctly
* refactor: migrate typings to ESTree from rolldown/utils
* fix: name conflict from function parameter are not detected correctly
* fix: template literal in member expression not supported
* fix: improve identifier conflict
* feat: add error when no localization are applied by locale inliner
* lint: fix lints
* fix: let rolldown to not hoist i18n modules with other modules
* chore: make error if there is unexpected specifiers
* fix license header
2026-06-05 12:36:44 +09:00
かっこかり
6f4f53382e
fix(frontend): CSS light-dark() が適用されない問題を修正 ( #17523 )
...
* fix(frontend): lightningcssのlight-darkのTranspilationを無効に (MisskeyIO#1243)
* fix deps
* Update Changelog
---------
Co-authored-by: まっちゃてぃー。 <56515516+mattyatea@users.noreply.github.com>
2026-06-02 11:47:09 +09:00
かっこかり
e1b580cfd0
deps: update dependencies ( #17461 )
...
* deps: update dependencies
* update deps
* update typeorm
2026-05-22 10:22:24 +09:00
かっこかり
a3227c99ed
deps: update dependencies ( #17400 )
...
* deps: Update Dependencies
* run pnpm dedupe
* update some major packages
* update to pnpm v11
* update systeminformation
* fix indent
* fix: rollback sharp to 0.33
2026-05-14 22:51:57 +09:00
かっこかり
a09a2c2eee
enhance: 絵文字データの参照を自前ライブラリに変更 ( #17381 )
...
* wip
* enhance: 絵文字データの参照を自前ライブラリに変更
* fix
* update to v17.0.2
* fix assets handling
* fix
* update mfm-js
* update emoji library
* Update COPYING [ci skip]
* Update Changelog
* Update Changelog
* fix: 端末の絵文字にフォールバックできるように
2026-05-09 18:35:38 +09:00
かっこかり
b528ff9c59
enhance(frontend): テーマの適用管理を改善 ( #17376 )
...
* wip
* add test
* use themeManager.currentCompiledTheme for obtaining theme variables / reduce getComputedStyle usage
* fix
* fix: better error handling on theme installation
* Update Changelog
* chore: remove frontend-shared builds as it is currently working as a stub package
* fix: broken lockfile
* fix
* fix lint
* fix
2026-05-07 11:42:45 +09:00
かっこかり
45f140aa86
deps: Update dependencies [ci skip] ( #17368 )
...
* update deps
* update deps
* rollback got to v14
* Revert "rollback got to v14"
This reverts commit 780abdf7b6 .
* rollback rolldown to v1.0.0-rc.15
2026-05-03 18:24:53 +09:00
かっこかり
39032c4b1b
fix: update summaly ( #17355 )
...
* fix: update summaly
* Update Changelog
2026-05-03 15:48:22 +09:00
かっこかり
bda98ba1d9
deps: update security dependencies ( #17330 )
...
* deps: update security dependencies
* deps: update some major dependencies
* attempt to fix tsconfig
* attempt to fix tsconfig
* attempt to fix tsconfig
* fix build
2026-04-22 11:46:45 +09:00
かっこかり
c640aeb27a
deps: update security dependencies ( #17318 )
2026-04-16 16:32:17 +09:00
かっこかり
37bfcb604f
enhance(backend): bundle backend using Rolldown ( #17068 )
...
* enhance(backend): bundle backend using rolldown
* fix
* fix [ci skip]
* remove unused build script
* fix
* enhance: 起動からlistenまでかかる時間を減らす (MisskeyIO#1410)
* ✌️
* fix
* update rolldown
* fix(backend): extract static error classes to avoid rolldown design:paramtypes omission
* update rolldown
* Revert "fix(backend): extract static error classes to avoid rolldown design:paramtypes omission"
This reverts commit e2243c9dc3 .
* fix
* perf: avoid generating sourcemap in production
* fix
* fix
* fix
* fix paths
* fix
* fix
* fix
* fix
* fix
* enhance: バックエンドの開発サーバー制御をrolldown側で行うように
* remove nodemon
* Update Changelog
* tweak config
* fix
* fix
* fix
* clean up
---------
Co-authored-by: あわわわとーにゅ <17376330+u1-liquid@users.noreply.github.com>
Co-authored-by: bab <mashirohira@gmail.com>
2026-04-16 12:44:50 +09:00
かっこかり
4d6256e91d
deps: Update dependencies ( #17304 )
...
* update deps
* update dependencies (major)
* fix: migrate meilisearch
* fix: migrate color-convert types
* fix cypress?
* rollback ts v5 as it is not supported by cypress
* fix fake-timers
2026-04-12 00:57:16 +09:00
かっこかり
4750980cef
enhance(frontend): update vite to v8 再 ( #17289 )
...
* Revert "Revert "deps: Update vite to v8" (#17283 )"
This reverts commit a18c909ba3 .
* fix(frontend): popupのりアクティビティがチャンクをまたいで切れる事がある問題を修正
* update vite/rolldown
2026-04-09 14:20:07 +09:00
かっこかり
a18c909ba3
Revert "deps: Update vite to v8" ( #17283 )
...
Revert "deps: Update vite to v8 (#17238 )"
This reverts commit e601fcb729 .
2026-04-06 20:15:57 +09:00
かっこかり
e601fcb729
deps: Update vite to v8 ( #17238 )
...
* deps: Update vite to v8
* fix
* migrate some plugins to rolldown-based
* fix broken lockfile
* wip
* update rolldown
* override rolldown version
* perf
* spdx
* fix
* update vite to 8.0.1
* chore: rewrite rollup-plugin-unwind-css-module-class-name with MagicString
* format
* swap type definitions
* replace using MagicString
* provided magicString
* fix code style
* fix
* fix
* fix
* fix
* fix
---------
Co-authored-by: kakkokari-gtyih <67428053+kakkokari-gtyih@users.noreply.github.com>
* fix: lint fixes
* swap sass with sass-embedded
* fix lint
* fix: インライン化されたVue SFC出力に対してCSS Module定義削除が効かないのを修正
* fix
* fix: バックエンドのCSS読み込みの方法が悪いのを修正
* fix: 使用されないpreloadを削除
* fix lint [ci skip]
* Apply suggestion from @syuilo
* Add comment in pnpm-workspace.yaml [ci skip]
* update vite/rolldown
* remove magic-string
---------
Co-authored-by: cm-ayf <cm.ayf2734@gmail.com>
Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
2026-04-01 17:05:57 +09:00
かっこかり
dbc5fe2454
deps: update dependencies ( #17263 )
...
* deps: update dependencies
* fix?
* fix
* Update AiService.ts
* fix
* update deps
2026-04-01 12:16:36 +09:00
かっこかり
57ed2914d1
deps: update dependencies ( #17252 ) [ci skip]
2026-03-20 20:08:58 +09:00
かっこかり
ac45781ef9
deps: security dependency updates [ci skip] ( #17225 )
2026-03-07 14:35:10 +09:00
かっこかり
676e164634
deps: Security dependency updates ( #17198 )
...
* update deps
* update security deps
2026-02-28 13:56:34 +09:00
かっこかり
22a6935468
deps: update dependencies ( #17184 )
...
* update deps
* fix
2026-02-22 19:06:33 +09:00
かっこかり
b5121dc70e
deps: update dependencies ( #17174 )
...
* deps: update dependencies
* update
* run pnpm dedupe
* update tsgo
* rollback tsgo
2026-02-16 12:02:36 +09:00
かっこかり
fc7655c808
deps: update dependencies [ci skip] ( #17126 )
...
* deps: update dependencies
* update vunerable packages as well
2026-01-24 02:41:10 +09:00
かっこかり
389861f1da
refactor(frontend): fix invalid self-closing tags ( #17103 )
...
* fix(frontend): fix invalid self-closing tags
* apply eslint rules
* fix
* fix
2026-01-16 22:42:08 +09:00
かっこかり
4bc0026900
deps(frontend): update vue-tsc to v3.2.1 ( #17091 )
2026-01-11 15:00:00 +09:00
syuilo
41592eafb3
refactor: make noImplicitAny true ( #17083 )
...
* wip
* Update emojis.emoji.vue
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* Update manager.ts
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* Update analytics.ts
2026-01-09 22:06:40 +09:00
anatawa12
666f78e676
enable and fix no-unused-vars and no-async-promise-executor ( #17070 )
...
* dev: set --no-bail for lint task
* lint: enable no-async-promise-executor lint and fix them
* lint: enable no-unused-vars with allowing _ prefix
* lint: fix semi
2026-01-08 11:49:12 +09:00
かっこかり
589ae8d4c6
fix(deps): update [frontend] update dependencies ( #17062 )
...
* fix(deps): update [frontend] update dependencies
* rollback tsgo to fix type error
* Revert "rollback tsgo to fix type error"
This reverts commit 3a0b94e5b2 .
* rollback vue-tsc to fix type errors (test)
* update vue-tsc to 3.2.0
* update vue-tsc stack to v3.2.1
* rollback vue-tsc to v3.1.8
2026-01-03 18:15:34 +09:00
anatawa12
06657c81d3
feat: use tsgo where capable ( #16984 )
2025-12-22 16:52:05 +09:00
renovate[bot]
260dbd150b
fix(deps): update dependency systeminformation to v5.27.14 [security] [ci skip] ( #17003 )
...
* fix(deps): update dependency systeminformation to v5.27.14 [security]
* update whitelist to force update systeminformation package
* bump other dependencies to fix dep error
---------
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: kakkokari-gtyih <67428053+kakkokari-gtyih@users.noreply.github.com>
Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
2025-12-17 09:36:15 +09:00
かっこかり
0d52145b2b
deps: update deps [ci skip] ( #16997 )
...
* update deps
* update chokidar to v5
* fix type error
* rollback serviceworker types to r74
* fix [ci skip]
2025-12-16 11:42:06 +09:00
かっこかり
d74aded35f
fix: remove unused dependencies ( #16969 )
...
* fix(frontend): remove unused dependencies
* fix(backend): remove unused dependencies
2025-12-12 10:45:45 +09:00
syuilo
8e6fffee68
enhance: use native glob ( #16965 )
...
* enhance: use native glob
* remove tiny-glob
* remove fast-glob
* refactor
* fix: use async glob if possible
---------
Co-authored-by: kakkokari-gtyih <67428053+kakkokari-gtyih@users.noreply.github.com>
2025-12-11 23:08:26 +09:00
かっこかり
73cc30f50f
fix(frontend): ロード時の言語判定結果が保存されない問題を修正 ( #16956 )
...
* fix(frontend): ロード時の言語判定結果が保存されない問題を修正
* Update Changelog
2025-12-08 10:17:13 +09:00
renovate[bot]
b0bffd3842
fix(deps): update [frontend] update dependencies [ci skip] ( #16942 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-12-05 23:10:04 +09:00
かっこかり
f222d7e24d
enhance(backend): pugをやめ、JSXベースのテンプレートに変更 ( #16908 )
...
* enhance(backend): pugをやめ、JSXベースのテンプレートに変更 (to misskey-dev dev branch) (#16889 )
* wip
* wip
* wip
* wip
* fix lint
* attempt to fix test
* fix
* fix
* fix: oauthページの描画がおかしい問題を修正
* typo [ci skip]
* fix
* fix
* fix
* fix
* fix
* refactor
* fix
* fix
* fix broken lockfile
* fix: expose supported languages as global variable
* remove i18n package from root as it is no longer required [ci skip]
* fix
* fix: add i18n package.json to Docker target-builder stage for federation tests (#16909 )
* Initial plan
* fix: add i18n package.json to Docker target-builder stage for federation tests
Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
* fix: followup-test-federation for enh-remove-pug (#16910 )
* fix: followup-test-federation for enh-remove-pug
* Revert "fix: add i18n package.json to Docker target-builder stage for federation tests (#16909 )"
This reverts commit 14313468d3 .
* fix: CSSが読み込まれない場合がある問題を修正
* fix [ci skip]
* fix: propsのデフォルト値をnull合体演算子から論理和演算子に変更(空文字に対処するため)
* remove @types/pug
* enhance: bootloaderを埋め込むように
* fix possible race condition
* remove esbuild
---------
Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com>
Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
Co-authored-by: おさむのひと <46447427+samunohito@users.noreply.github.com>
2025-12-01 18:36:55 +09:00
おさむのひと
fe01a5a28f
refactor: localesをworkspace管理下のパッケージに ( #16895 )
...
* refactor: localesをworkspace管理下のパッケージに
* fix copilot review
* move
* move
* rename
* fix ci
* revert unwanted indent changes
* fix
* fix
* fix
* fix
* 間違えてコミットしていたのを戻す
* 不要
* 追加漏れ
* ymlの場所だけ戻す
* localesの位置を戻したのでこの差分は不要
* 内容的にlocalesにある方が正しい
* i18nパッケージ用のREADME.mdを用意
* fix locale.yml
* fix locale.yml
---------
Co-authored-by: kakkokari-gtyih <67428053+kakkokari-gtyih@users.noreply.github.com>
2025-11-30 13:27:44 +09:00
renovate[bot]
32b5583432
fix(deps): update [frontend] update dependencies [ci skip] ( #16901 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-11-30 11:38:11 +09:00
renovate[bot]
5fbe801d35
fix(deps): update [frontend] update dependencies (major) [ci skip] ( #16866 )
...
* fix(deps): update [frontend] update dependencies
* attempt to fix test
* rollback twemoji parser to v16 [ci skip]
* fix [ci skip]
* rollback twemoji parser to v16
* attempt to fix test
---------
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: kakkokari-gtyih <67428053+kakkokari-gtyih@users.noreply.github.com>
2025-11-30 11:14:34 +09:00
renovate[bot]
105cc4b50a
fix(deps): update [frontend] update dependencies [ci skip] ( #16868 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-11-26 21:40:24 +09:00
renovate[bot]
0fdd88f38e
fix(deps): update [frontend] update dependencies [ci skip] ( #16802 )
...
* fix(deps): update [frontend] update dependencies
* run pnpm dedupe
* [ci skip] run dedupe
---------
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: kakkokari-gtyih <67428053+kakkokari-gtyih@users.noreply.github.com>
2025-11-25 10:45:36 +09:00
renovate[bot]
cf89280fc5
fix(deps): update dependency vite to v7.1.11 [security] ( #16678 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-11-08 19:19:58 +09:00
renovate[bot]
3a65728fb4
fix(deps): update [frontend] update dependencies [ci skip] ( #16769 )
...
* fix(deps): update [frontend] update dependencies
* run ci
---------
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: kakkokari-gtyih <67428053+kakkokari-gtyih@users.noreply.github.com>
2025-11-08 16:22:38 +09:00
syuilo
ef1cdca6f9
refactor(frontend): specify global object
2025-11-07 20:20:13 +09:00
Copilot
46d30f454b
Fix postMessage type error in Web Worker files by adding triple-slash directives ( #16761 )
...
* Initial plan
* Add triple-slash directives to worker files to fix postMessage type error
Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
2025-11-07 20:18:33 +09:00
かっこかり
9e0f18a705
deps: update @types/node to v24 [ci skip] ( #16718 )
...
* update `@types/node` to v24
* fix
2025-10-28 11:34:42 +09:00