misskey-dev / misskey

🌎 A completely free and open interplanetary microblogging platform 🚀
https://misskey-hub.net/
GNU Affero General Public License v3.0
9.95k stars 1.35k forks source link

Release: 2024.10.1 #14741

Open github-actions[bot] opened 3 days ago

github-actions[bot] commented 3 days ago

Note

General

Client

Server

Server

github-actions[bot] commented 3 days ago

このPRによるapi.jsonの差分

差分はこちら ```diff --- base +++ head @@ -1,7 +1,7 @@ { "openapi": "3.1.0", "info": { - "version": "2024.10.0", + "version": "2024.10.1-beta.3", "title": "Misskey API" }, "externalDocs": { @@ -90,6 +90,9 @@ "null" ] }, + "enableTestcaptcha": { + "type": "boolean" + }, "swPublickey": { "type": [ "string", @@ -196,6 +199,12 @@ "type": "string" } }, + "prohibitedWordsForNameOfUser": { + "type": "array", + "items": { + "type": "string" + } + }, "bannedEmailDomains": { "type": "array", "items": { @@ -386,6 +395,9 @@ "enableChartsForFederatedInstances": { "type": "boolean" }, + "enableStatsForFederatedInstances": { + "type": "boolean" + }, "enableServerMachineStats": { "type": "boolean" }, @@ -582,6 +594,7 @@ "recaptchaSiteKey", "enableTurnstile", "turnstileSiteKey", + "enableTestcaptcha", "swPublickey", "mascotImageUrl", "bannerUrl", @@ -600,6 +613,7 @@ "blockedHosts", "sensitiveWords", "prohibitedWords", + "prohibitedWordsForNameOfUser", "preservedUsernames", "hcaptchaSecretKey", "mcaptchaSecretKey", @@ -638,6 +652,7 @@ "truemailAuthKey", "enableChartsForRemoteUser", "enableChartsForFederatedInstances", + "enableStatsForFederatedInstances", "enableServerMachineStats", "enableIdenticonGeneration", "manifestJsonOverride", @@ -13789,6 +13804,15 @@ "type": "string" } }, + "prohibitedWordsForNameOfUser": { + "type": [ + "array", + "null" + ], + "items": { + "type": "string" + } + }, "themeColor": { "type": [ "string", @@ -13961,6 +13985,9 @@ "null" ] }, + "enableTestcaptcha": { + "type": "boolean" + }, "sensitiveMediaDetection": { "type": "string", "enum": [ @@ -14206,6 +14233,9 @@ "enableChartsForFederatedInstances": { "type": "boolean" }, + "enableStatsForFederatedInstances": { + "type": "boolean" + }, "enableServerMachineStats": { "type": "boolean" }, @@ -16388,7 +16418,9 @@ "enum": [ "abuseReport", "abuseReportResolved", - "userCreated" + "userCreated", + "inactiveModeratorsWarning", + "inactiveModeratorsInvitationOnlyChanged" ] } }, @@ -16716,7 +16748,9 @@ "enum": [ "abuseReport", "abuseReportResolved", - "userCreated" + "userCreated", + "inactiveModeratorsWarning", + "inactiveModeratorsInvitationOnlyChanged" ] } } @@ -17058,7 +17092,9 @@ "enum": [ "abuseReport", "abuseReportResolved", - "userCreated" + "userCreated", + "inactiveModeratorsWarning", + "inactiveModeratorsInvitationOnlyChanged" ] } }, @@ -17238,7 +17274,9 @@ "enum": [ "abuseReport", "abuseReportResolved", - "userCreated" + "userCreated", + "inactiveModeratorsWarning", + "inactiveModeratorsInvitationOnlyChanged" ] }, "override": { @@ -51061,6 +51099,16 @@ } } }, + "YOUR_NAME_CONTAINS_PROHIBITED_WORDS": { + "value": { + "error": { + "message": "Your new name contains prohibited words.", + "code": "YOUR_NAME_CONTAINS_PROHIBITED_WORDS", + "id": "0b3f9f6a-2f4d-4b1f-9fb4-49d3a2fd7191", + "httpStatusCode": 422 + } + } + }, "INVALID_PARAM": { "value": { "error": { @@ -81952,6 +82000,9 @@ "null" ] }, + "enableTestcaptcha": { + "type": "boolean" + }, "swPublickey": { "type": [ "string", @@ -82136,6 +82187,7 @@ "recaptchaSiteKey", "enableTurnstile", "turnstileSiteKey", + "enableTestcaptcha", "swPublickey", "mascotImageUrl", "bannerUrl", @@ -82286,7 +82338,9 @@ "enum": [ "abuseReport", "abuseReportResolved", - "userCreated" + "userCreated", + "inactiveModeratorsWarning", + "inactiveModeratorsInvitationOnlyChanged" ] } }, ``` [Get diff files from Workflow Page](https://github.com/misskey-dev/misskey/actions/runs/11314043419)
codecov[bot] commented 3 days ago

Codecov Report

Attention: Patch coverage is 28.95257% with 719 lines in your changes missing coverage. Please review.

Project coverage is 39.63%. Comparing base (a304185) to head (d376aab). Report is 2 commits behind head on master.

Files with missing lines Patch % Lines
...es/frontend/src/components/MkSignupDialog.form.vue 0.00% 69 Missing :warning:
...ackages/frontend/src/components/MkNoteDetailed.vue 0.00% 19 Missing :warning:
packages/frontend/src/components/MkFolder.vue 0.00% 17 Missing :warning:
packages/frontend/src/pages/page.vue 0.00% 15 Missing :warning:
packages/frontend/src/pages/drive.file.info.vue 0.00% 11 Missing :warning:
packages/frontend/src/components/MkRadio.vue 0.00% 10 Missing :warning:
packages/frontend/src/pages/admin-user.vue 0.00% 10 Missing :warning:
packages/frontend/src/pages/reversi/index.vue 0.00% 10 Missing :warning:
packages/frontend/src/pages/settings/accounts.vue 0.00% 9 Missing :warning:
.../frontend/src/components/MkChannelFollowButton.vue 0.00% 8 Missing :warning:
... and 176 more
Additional details and impacted files ```diff @@ Coverage Diff @@ ## master #14741 +/- ## ========================================== + Coverage 39.56% 39.63% +0.06% ========================================== Files 1553 1553 Lines 195039 195038 -1 Branches 3609 3609 ========================================== + Hits 77174 77300 +126 + Misses 117262 117136 -126 + Partials 603 602 -1 ```

:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.

syuilo commented 3 days ago

リリースするぞ

syuilo commented 3 days ago

するぞ

syuilo commented 3 days ago

ご確認を募集しています