1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-07-26 10:15:10 +02:00
Commit Graph

4503 Commits

Author SHA1 Message Date
syuilo
b1a1717fdc Merge branch 'develop' into room 2026-07-03 15:40:38 +09:00
かっこかり
97e54a1ee8 fix(frontend): APIキーを指定するいくつかのフォームでautocompleteが発動する問題を修正 (#17655) 2026-07-03 14:58:58 +09:00
かっこかり
1eedf04d9a fix(frontend): デバイスサイズをスマートフォンに固定している場合はページヘッダーのアイコンを常に表示するように (#17590)
* fix(frontend): デバイスサイズをスマートフォンに固定している場合はページヘッダーのアイコンを常に表示するように

* Update Changelog

* Update Changelog

* fix

---------

Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
2026-07-02 22:36:57 +09:00
greymoth
7e29f04287 fix(chat): don't send message while the IME is composing (#17646)
Co-authored-by: greymoth <246701683+greymoth-jp@users.noreply.github.com>
2026-07-01 10:06:16 +09:00
かっこかり
4daa1ffe05 chore(deps): 未使用依存パッケージを削除 (#17641)
chore(deps): 未使用依存パッケージを削除 (tiramiss-community/endolphin#20)

Co-authored-by: おさむのひと <46447427+samunohito@users.noreply.github.com>
2026-06-29 23:08:09 +09:00
かっこかり
4f993cef1b enhance: Set default Node.js version to v26 (#17623)
* enhance: Set default Node.js version to v26

* fix

* Update Changelog

* fix types

* drop node v22

* update changelog

* fix test

* update

* fix test

* fix test

* Revert "drop node v22"

This reverts commit bb4e011628.

* fix changelog

* attempt to fix test

* attempt to fix test

* fix: update re2 that supports node 26

* attempt to fix test

* attempt to fix test

* run pnpm dedupe

* restore 2fa e2e

* refactor

* attempt to fix test

* attempt to fix test

* run pnpm dedupe

* attempt to fix test
2026-06-28 00:06:49 +09:00
かっこかり
554339aaa1 deps: update dependencies (#17631)
* deps: update deps

* Update Changelog

* update dependencies (major)

* fix: broken lockfile on changelog-checker

* update vite

* update minimum working node version to 22.22.0

* update minimum working node version to 22.22.2

* fix types

* refactor: avoid using default import

* Revert "refactor: avoid using default import"

This reverts commit 5784df2ff0.

---------

Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
2026-06-27 22:04:08 +09:00
syuilo
8af257929d enhance(frontend): drop pref migration (#17379)
clean pref migration
2026-06-26 20:35:37 +09:00
かっこかり
1068c6424f feat: コントロールパネルから二要素認証を解除できるように (#17614)
* enhance: コントロールパネルから二要素認証を解除できるように

* Update Changelog

---------

Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
2026-06-26 19:33:25 +09:00
おさむのひと
669889f749 chore: センシティブ判定を外部サービス扱いにする (#17570)
* chore: センシティブ判定を外部サービス扱いにする

* fix review

* regenerate

* fix review

* fix review

* regenerate

* fix CHANGELOG.md

* fix review

* add comment

---------

Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
2026-06-26 17:47:00 +09:00
syuilo
e12f97b1d8 enhance(dev): improve Frontend Bundle Report 2026-06-24 15:01:37 +09:00
syuilo
266a3c473b enhance(dev): improve frontend bundle report (#17600)
* wip

* Update package.json

* wip

* Update pnpm-lock.yaml

* wip

* Update frontend-bundle-visualizer-report.mjs

* Update frontend-bundle-visualizer-report.mjs

* Update frontend-bundle-visualizer-report.mjs

* Update frontend-bundle-visualizer-report.mjs

* Update frontend-bundle-visualizer-report.mjs

* Update frontend-bundle-visualizer-report.mjs

* Update frontend-bundle-visualizer-report.mjs

* Update frontend-bundle-visualizer-report.mjs

* refactor

* Update frontend-js-size.yml

* refactor

* Update package.json
2026-06-22 19:41:03 +09:00
かっこかり
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
syuilo
1903607659 thumbs 2026-06-17 16:55:13 +09:00
syuilo
7d750668c0 thumbs 2026-06-17 16:51:17 +09:00
syuilo
db6708bfbd Merge branch 'develop' into room 2026-06-17 16:42:41 +09:00
Tatsuya_yd
e117456815 fix(frontend): ノートの下書きをリセットする際、未アップロードのファイルについては添付予定が解除されない問題を修正 (#17568)
* fix(frontend): ノートの下書きをリセットする際、未アップロードのファイルについては添付予定が解除されない問題を修正(#17486)

* fix(frontend): useUploader側にresetメソッドを追加し、そちらを呼び出す形に修正

* 現在のdisposeをresetにリネームして`items.value = [];`を追加する形に修正

* tweak

---------

Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
2026-06-17 14:26:45 +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
syuilo
bb06278e97 wip 2026-06-15 20:13:43 +09:00
syuilo
3fd8becdc5 typo 2026-06-15 18:51:26 +09:00
syuilo
de94c15c8f typo 2026-06-15 18:50:05 +09:00
syuilo
68719db32f typo 2026-06-15 18:49:26 +09:00
syuilo
1e4539a168 typo 2026-06-15 18:48:21 +09:00
syuilo
ef6c5dfc95 typo 2026-06-15 18:47:33 +09:00
syuilo
4fc9e38e0d typo 2026-06-15 18:46:54 +09:00
syuilo
60f60b6bac Merge branch 'develop' into room 2026-06-15 18:42:48 +09:00
syuilo
7bd8f8148b fix(frontend): 画像アップロード時、フレームのキャプション付与が正しく行われないことがある問題を修正
Fix #17518
2026-06-15 17:50:02 +09:00
syuilo
253dd052f8 refactoe 2026-06-15 16:22:57 +09:00
syuilo
c1eb67a4ce typo 2026-06-15 16:18:20 +09:00
syuilo
a26d78d573 stickyPlaneId 2026-06-15 16:16:33 +09:00
syuilo
bde03b8259 wip 2026-06-14 17:21:05 +09:00
syuilo
600dae3d68 wip 2026-06-13 15:59:23 +09:00
syuilo
ab9d6947ae 🎨 2026-06-13 12:31:35 +09:00
syuilo
56da1e5084 🎨 2026-06-13 11:35:24 +09:00
syuilo
63d314750f Update room.core.vue 2026-06-12 18:43:02 +09:00
syuilo
1e10b67476 herbarium 2026-06-12 17:42:11 +09:00
syuilo
cf2139d515 wip 2026-06-12 13:39:41 +09:00
syuilo
3d2941bd8f wip 2026-06-12 12:30:39 +09:00
syuilo
c06eef6b58 username label 2026-06-11 21:27:32 +09:00
syuilo
319826fe76 Merge branch 'develop' into room 2026-06-11 20:12:32 +09:00
syuilo
54cfa4a13e Update README.md 2026-06-11 18:35:54 +09:00
syuilo
d9cac0fa56 🎨 2026-06-11 14:47:22 +09:00
syuilo
2e51cde16e 🎨 2026-06-11 11:58:43 +09:00
syuilo
98ac383b44 🎨 2026-06-11 11:25:32 +09:00
syuilo
e1290584f2 kakejiku 2026-06-10 20:51:41 +09:00
syuilo
47a5f0cdd9 image rotation 2026-06-10 18:50:20 +09:00
syuilo
961d611cd4 bolt 2026-06-10 15:50:47 +09:00
syuilo
2bc10ccc34 lavaLamp 2026-06-10 13:58:20 +09:00
syuilo
39c6baf6f2 room light 2026-06-09 18:50:46 +09:00