Merge branch 'develop' into misskey-dev/feature/#19895

This commit is contained in:
鴇峰 朔華 2024-11-30 16:54:08 +09:00 committed by GitHub
commit 9775ac3b21
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 8 additions and 5 deletions

View file

@ -1,4 +1,4 @@
## Unreleased ## 2024.11.1
### Note ### Note
- 登録時メールアドレスドメインのブラックリストの判定方式が後方一致から完全一致に変更されました。サブドメインごとブロックする場合は先頭に`.`を付けることで後方一致になります。 - 登録時メールアドレスドメインのブラックリストの判定方式が後方一致から完全一致に変更されました。サブドメインごとブロックする場合は先頭に`.`を付けることで後方一致になります。
@ -14,6 +14,8 @@
### Server ### Server
- Fix: ユーザーのプロフィール画面をアドレス入力などで直接表示した際に概要タブの描画に失敗する問題の修正( #15032 ) - Fix: ユーザーのプロフィール画面をアドレス入力などで直接表示した際に概要タブの描画に失敗する問題の修正( #15032 )
- Fix: 起動前の疎通チェックが機能しなくなっていた問題を修正
(Cherry-picked from https://activitypub.software/TransFem-org/Sharkey/-/merge_requests/737)
- Enhance: 登録時メールアドレスドメインのブラックリストの判定方式を改善 - Enhance: 登録時メールアドレスドメインのブラックリストの判定方式を改善
- Enhance: 登録時メールアドレスドメインのホワイトリストを追加 - Enhance: 登録時メールアドレスドメインのホワイトリストを追加
- Enhance: Active Email Validationでブロックされたドメインを自動でブラックリストに追加するオプションを追加 - Enhance: Active Email Validationでブロックされたドメインを自動でブラックリストに追加するオプションを追加

View file

@ -1,6 +1,6 @@
{ {
"name": "misskey", "name": "misskey",
"version": "2024.11.0", "version": "2024.11.1-alpha.0",
"codename": "nasubi", "codename": "nasubi",
"repository": { "repository": {
"type": "git", "type": "git",

View file

@ -53,4 +53,4 @@ const promises = Array
connectToPostgres() connectToPostgres()
]); ]);
await Promise.allSettled(promises); await Promise.all(promises);

View file

@ -28,7 +28,7 @@ export class S3Service {
? `${meta.objectStorageUseSSL ? 'https' : 'http'}://${meta.objectStorageEndpoint}` ? `${meta.objectStorageUseSSL ? 'https' : 'http'}://${meta.objectStorageEndpoint}`
: `${meta.objectStorageUseSSL ? 'https' : 'http'}://example.net`; // dummy url to select http(s) agent : `${meta.objectStorageUseSSL ? 'https' : 'http'}://example.net`; // dummy url to select http(s) agent
const agent = this.httpRequestService.getAgentByUrl(new URL(u), !meta.objectStorageUseProxy); const agent = this.httpRequestService.getAgentByUrl(new URL(u), !meta.objectStorageUseProxy, true);
const handlerOption: NodeHttpHandlerOptions = {}; const handlerOption: NodeHttpHandlerOptions = {};
if (meta.objectStorageUseSSL) { if (meta.objectStorageUseSSL) {
handlerOption.httpsAgent = agent as https.Agent; handlerOption.httpsAgent = agent as https.Agent;

View file

@ -384,6 +384,7 @@ const patrons = [
'こまつぶり', 'こまつぶり',
'まゆつな空高', 'まゆつな空高',
'asata', 'asata',
'ruru',
]; ];
const thereIsTreasure = ref($i && !claimedAchievements.includes('foundTreasure')); const thereIsTreasure = ref($i && !claimedAchievements.includes('foundTreasure'));

View file

@ -1,7 +1,7 @@
{ {
"type": "module", "type": "module",
"name": "misskey-js", "name": "misskey-js",
"version": "2024.11.0", "version": "2024.11.1-alpha.0",
"description": "Misskey SDK for JavaScript", "description": "Misskey SDK for JavaScript",
"license": "MIT", "license": "MIT",
"main": "./built/index.js", "main": "./built/index.js",