Merge branch 'develop' into feature/channel_muting

This commit is contained in:
syuilo 2025-10-28 10:30:06 +09:00 committed by GitHub
commit a4e640d700
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 615 additions and 49 deletions

View File

@ -5,7 +5,7 @@
"workspaceFolder": "/workspace",
"features": {
"ghcr.io/devcontainers/features/node:1": {
"version": "22.15.0"
"version": "24.10.0"
},
"ghcr.io/devcontainers-extra/features/pnpm:2": {
"version": "10.10.0"

View File

@ -1 +1 @@
22.15.0
24.10.0

View File

@ -3,6 +3,8 @@
### General
- Feat: チャンネルミュート機能の実装 #10649
- チャンネルの概要画面の右上からミュートできます(リンクコピー、共有、設定と同列)
- Enhance: Node.js 24.10.0をサポートするようになりました
- Enhance: DockerのNode.jsが24.10.0に更新されました
### Client
- Fix: 紙吹雪エフェクトがアニメーション設定を考慮せず常に表示される問題を修正

View File

@ -1,6 +1,6 @@
# syntax = docker/dockerfile:1.4
ARG NODE_VERSION=22.15.0-bookworm
ARG NODE_VERSION=24.10.0-bookworm
# build assets & compile TypeScript

View File

@ -85,6 +85,9 @@
"pnpm": {
"overrides": {
"@aiscript-dev/aiscript-languageserver": "-"
}
},
"ignoredBuiltDependencies": [
"@sentry-internal/node-cpu-profiler"
]
}
}

View File

@ -4,7 +4,7 @@
"private": true,
"type": "module",
"engines": {
"node": "^22.15.0"
"node": "^22.15.0 || ^24.10.0"
},
"scripts": {
"start": "node ./built/boot/entry.js",
@ -88,7 +88,7 @@
"@nestjs/testing": "11.1.6",
"@peertube/http-signature": "1.7.0",
"@sentry/node": "8.55.0",
"@sentry/profiling-node": "8.55.0",
"@sentry/profiling-node": "10.20.0",
"@simplewebauthn/server": "12.0.0",
"@sinonjs/fake-timers": "11.3.1",
"@smithy/node-http-handler": "2.5.0",

File diff suppressed because it is too large Load Diff