Skip to content

Commit 0fd090f

Browse files
committed
2024.11.0-alpha.2
General: - Fix: 공지사항 작성 시 이미지 URL 입력란을 빈칸으로 변경할 수 없음 (misskey-dev#14976) Client: - Enhance: 사이드바를 쉽게 전개 및 접을 수 있도록 (misskey-dev#14981) - Enhance: 리노트 메뉴에 '리노트 상세' 추가 - Fix: TypeScript의 타입 체크 대상 파일을 한정하여 빌드를 고속화하도록 (Cherry-picked from https://activitypub.software/TransFem-org/Sharkey/-/merge_requests/725) Server: - Fix: sharedInbox가 없는 Actor에 연결된 리모트 유저를 조회할 수 없음 - Fix: Aproving request from GtS appears with some delay
1 parent e16f251 commit 0fd090f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+833
-204
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,8 @@ misskey-assets
6868
# Vite temporary files
6969
vite.config.js.timestamp-*
7070
vite.config.ts.timestamp-*
71+
vite.config.local-dev.js.timestamp-*
72+
vite.config.local-dev.ts.timestamp-*
7173

7274
# blender backups
7375
*.blend1

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,13 @@
22

33
### Note
44
- Node.js 20.xは非推奨になりました。Node.js 22.x (LTS)の利用を推奨します。
5+
- なお、Node.js 23.xは対応していません。
56
- DockerのNode.jsが22.11.0に更新されました
67

78
### General
89
- Feat: コンテンツの表示にログインを必須にできるように
910
- Feat: 過去のノートを非公開化/フォロワーのみ表示可能にできるように
11+
- Fix: お知らせ作成時に画像URL入力欄を空欄に変更できないのを修正 ( #14976 )
1012
- Enhance: 依存関係の更新
1113
- Enhance: l10nの更新
1214

@@ -26,6 +28,8 @@
2628
- Enhance: ノート詳細画面にロールのバッジを表示
2729
- Enhance: 過去に送信したフォローリクエストを確認できるように
2830
(Based on https://activitypub.software/TransFem-org/Sharkey/-/merge_requests/663)
31+
- Enhance: サイドバーを簡単に展開・折りたたみできるように ( #14981 )
32+
- Enhance: リノートメニューに「リノートの詳細」を追加
2933
- Fix: 通知の範囲指定の設定項目が必要ない通知設定でも範囲指定の設定がでている問題を修正
3034
- Fix: Turnstileが失敗・期限切れした際にも成功扱いとなってしまう問題を修正
3135
(Cherry-picked from https://github.com/MisskeyIO/misskey/pull/768)
@@ -37,13 +41,17 @@
3741
- Fix: メールアドレス登録有効化時の「完了」ダイアログボックスの表示条件を修正
3842
- Fix: 画面幅が狭い環境でデザインが崩れる問題を修正
3943
(Cherry-picked from https://github.com/MisskeyIO/misskey/pull/815)
44+
- Fix: TypeScriptの型チェック対象ファイルを限定してビルドを高速化するように
45+
(Cherry-picked from https://activitypub.software/TransFem-org/Sharkey/-/merge_requests/725)
4046

4147
### Server
4248
- Enhance: DockerのNode.jsを22.11.0に更新
4349
- Enhance: 起動前の疎通チェックで、DBとメイン以外のRedisの疎通確認も行うように
4450
(Based on https://activitypub.software/TransFem-org/Sharkey/-/merge_requests/588)
4551
(Cherry-picked from https://activitypub.software/TransFem-org/Sharkey/-/merge_requests/715)
4652
- Enhance: リモートユーザーの照会をオリジナルにリダイレクトするように
53+
- Fix: sharedInboxが無いActorに紐づくリモートユーザーを照会できない
54+
- Fix: Aproving request from GtS appears with some delay
4755
- Fix: フォロワーへのメッセージの絵文字をemojisに含めるように
4856
- Fix: Nested proxy requestsを検出した際にブロックするように
4957
[ghsa-gq5q-c77c-v236](https://github.com/misskey-dev/misskey/security/advisories/ghsa-gq5q-c77c-v236)

CONTRIBUTING.md

+16
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,22 @@ Be willing to comment on the good points and not just the things you want fixed
101101
- Are there any omissions or gaps?
102102
- Does it check for anomalies?
103103

104+
## Security Advisory
105+
### For reporter
106+
Thank you for your reporting!
107+
108+
If you can also create a patch to fix the vulnerability, please create a PR on the private fork.
109+
110+
> [!note]
111+
> There is a GitHub bug that prevents merging if a PR not following the develop branch of upstream, so please keep follow the develop branch.
112+
113+
### For misskey-dev member
114+
修正PRがdevelopに追従されていないとマージできないので、マージできなかったら
115+
116+
> Could you merge or rebase onto upstream develop branch?
117+
118+
などと伝える。
119+
104120
## Deploy
105121
The `/deploy` command by issue comment can be used to deploy the contents of a PR to the preview environment.
106122
```

SECURITY.md

+7
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,10 @@ This will allow us to assess the risk, and make a fix available before we add a
66
bug report to the GitHub repository.
77

88
Thanks for helping make Misskey safe for everyone.
9+
10+
## When create a patch
11+
12+
If you can also create a patch to fix the vulnerability, please create a PR on the private fork.
13+
14+
> [!note]
15+
> There is a GitHub bug that prevents merging if a PR not following the develop branch of upstream, so please keep follow the develop branch.

locales/ar-SA.yml

-1
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,6 @@ enableLocalTimeline: "تفعيل الخيط المحلي"
343343
enableGlobalTimeline: "تفعيل الخيط الزمني الشامل"
344344
disablingTimelinesInfo: "سيتمكن المديرون والمشرفون من الوصول إلى كل الخيوط الزمنية حتى وإن لم تفعّل."
345345
registration: "إنشاء حساب"
346-
enableRegistration: "تفعيل إنشاء الحسابات الجديدة"
347346
invite: "دعوة"
348347
driveCapacityPerLocalAccount: "حصة التخزين لكل مستخدم محلي"
349348
driveCapacityPerRemoteAccount: "حصة التخزين لكل مستخدم بعيد"

locales/bn-BD.yml

-1
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,6 @@ enableLocalTimeline: "স্থানীয় টাইমলাইন চাল
339339
enableGlobalTimeline: "গ্লোবাল টাইমলাইন চালু করুন"
340340
disablingTimelinesInfo: "আপনি এই টাইমলাইনগুলি বন্ধ করলেও প্রশাসক এবং মডারেটররা এই টাইমলাইনগুলি ব্যাবহার করতে পারবে"
341341
registration: "নিবন্ধন"
342-
enableRegistration: "নতুন ব্যাবহারকারী নিবন্ধন চালু করুন"
343342
invite: "আমন্ত্রণ"
344343
driveCapacityPerLocalAccount: "প্রত্যেক স্থানীয় ব্যাবহারকারীর জন্য ড্রাইভের জায়গা"
345344
driveCapacityPerRemoteAccount: "প্রত্যেক রিমোট ব্যাবহারকারীর জন্য ড্রাইভের জায়গা"

locales/ca-ES.yml

+6
Original file line numberDiff line numberDiff line change
@@ -1300,6 +1300,7 @@ thisContentsAreMarkedAsSigninRequiredByAuthor: "L'autor requereix l'inici de ses
13001300
lockdown: "Bloquejat"
13011301
pleaseSelectAccount: "Seleccionar un compte"
13021302
availableRoles: "Roles disponibles "
1303+
acknowledgeNotesAndEnable: "Activa'l després de comprendre els possibles perills."
13031304
_accountSettings:
13041305
requireSigninToViewContents: "És obligatori l'inici de sessió per poder veure el contingut"
13051306
requireSigninToViewContentsDescription1: "Es requereix l'inici de sessió per poder veure totes les notes i el contingut que has creat. Amb això esperem evitar que els rastrejadors recopilin informació."
@@ -1456,6 +1457,8 @@ _serverSettings:
14561457
reactionsBufferingDescription: "Quan s'activa aquesta opció millora bastant el rendiment en recuperar les línies de temps reduint la càrrega de la base. Com a contrapunt, augmentarà l'ús de memòria de Redís. Desactiva aquesta opció en cas de tenir un servidor amb poca memòria o si tens problemes d'inestabilitat."
14571458
inquiryUrl: "URL de consulta "
14581459
inquiryUrlDescription: "Escriu adreça URL per al formulari de consulta per al mantenidor del servidor o una pàgina web amb el contacte d'informació."
1460+
openRegistration: "Registres oberts"
1461+
openRegistrationWarning: "Obrir els registres és arriscat. Es recomana obrir-los només si el servidor és monitorat constantment i per respondre immediatament davant qualsevol problema."
14591462
thisSettingWillAutomaticallyOffWhenModeratorsInactive: "Si no es detecta activitat per part del moderador durant un període de temps, aquesta opció es desactiva automàticament per evitar el correu brossa."
14601463
_accountMigration:
14611464
moveFrom: "Migrar un altre compte a aquest"
@@ -2738,3 +2741,6 @@ _selfXssPrevention:
27382741
description1: "Si posa alguna cosa al seu compte, un usuari malintencionat podria segrestar-la o robar-li les dades."
27392742
description2: "Si no entens que estàs fent %cpara ara mateix i tanca la finestra."
27402743
description3: "Per obtenir més informació. {link}"
2744+
_followRequest:
2745+
recieved: "Sol·licituds rebudes"
2746+
sent: "Sol·licituds enviades"

locales/cs-CZ.yml

-1
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,6 @@ enableLocalTimeline: "Povolit lokální čas"
348348
enableGlobalTimeline: "Povolit globální čas"
349349
disablingTimelinesInfo: "Administrátoři a Moderátoři budou mít stálý přístup ke všem časovým osám i přes to že nejsou zapnuté."
350350
registration: "Registrace"
351-
enableRegistration: "Povolit registraci novým uživatelům"
352351
invite: "Pozvat"
353352
driveCapacityPerLocalAccount: "Kapacita disku na lokálního uživatele"
354353
driveCapacityPerRemoteAccount: "Kapacita disku na vzdáleného uživatele"

0 commit comments

Comments
 (0)