Skip to content

Commit ceea65b

Browse files
committed
Merge tag '2024.5.0-io.4' into bun
2 parents 5ae293a + 410b36b commit ceea65b

File tree

100 files changed

+4103
-3429
lines changed

Some content is hidden

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

100 files changed

+4103
-3429
lines changed

.config/docker_example.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -195,4 +195,4 @@ signToActivityPubGet: true
195195
#maxFileSize: 262144000
196196

197197
# Value of Content-Security-Policy header
198-
#contentSecurityPolicy: "script-src 'self' 'unsafe-eval' https://challenges.cloudflare.com https://hcaptcha.com https://*.hcaptcha.com https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://www.recaptcha.net/recaptcha/; base-uri 'self'; object-src 'self';"
198+
#contentSecurityPolicy: "script-src 'self' 'unsafe-eval' https://challenges.cloudflare.com https://hcaptcha.com https://*.hcaptcha.com https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://www.recaptcha.net/recaptcha/ https://www.googletagmanager.com/; base-uri 'self'; object-src 'self';"

.config/example.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ redis:
118118
# ┌───────────────────────────┐
119119
#───┘ MeiliSearch configuration └─────────────────────────────
120120

121-
# You can set scope to local (default value) or global
121+
# You can set scope to local (default value) or global
122122
# (include notes from remote).
123123

124124
#meilisearch:
@@ -214,7 +214,7 @@ proxyRemoteFiles: true
214214
signToActivityPubGet: true
215215

216216
# For security reasons, uploading attachments from the intranet is prohibited,
217-
# but exceptions can be made from the following settings. Default value is "undefined".
217+
# but exceptions can be made from the following settings. Default value is "undefined".
218218
# Read changelog to learn more (Improvements of 12.90.0 (2021/09/04)).
219219
#allowedPrivateNetworks: [
220220
# '127.0.0.1/32'
@@ -227,4 +227,4 @@ signToActivityPubGet: true
227227
#pidFile: /tmp/misskey.pid
228228

229229
# Value of Content-Security-Policy header
230-
#contentSecurityPolicy: "script-src 'self' 'unsafe-eval' https://challenges.cloudflare.com https://hcaptcha.com https://*.hcaptcha.com https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://www.recaptcha.net/recaptcha/; base-uri 'self'; object-src 'self';"
230+
#contentSecurityPolicy: "script-src 'self' 'unsafe-eval' https://challenges.cloudflare.com https://hcaptcha.com https://*.hcaptcha.com https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://www.recaptcha.net/recaptcha/ https://www.googletagmanager.com/; base-uri 'self'; object-src 'self';"

.github/workflows/api-misskey-js.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- run: corepack enable
2121

2222
- name: Setup Node.js
23-
uses: actions/setup-node@v4.0.4
23+
uses: actions/setup-node@v4.1.0
2424
with:
2525
node-version-file: '.node-version'
2626
cache: 'pnpm'

.github/workflows/lint.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- uses: pnpm/action-setup@v4
3333
with:
3434
run_install: false
35-
- uses: actions/setup-node@v4.0.4
35+
- uses: actions/setup-node@v4.1.0
3636
with:
3737
node-version-file: '.node-version'
3838
cache: 'pnpm'
@@ -58,7 +58,7 @@ jobs:
5858
- uses: pnpm/action-setup@v4
5959
with:
6060
run_install: false
61-
- uses: actions/setup-node@v4.0.4
61+
- uses: actions/setup-node@v4.1.0
6262
with:
6363
node-version-file: '.node-version'
6464
cache: 'pnpm'
@@ -83,7 +83,7 @@ jobs:
8383
- uses: pnpm/action-setup@v4
8484
with:
8585
run_install: false
86-
- uses: actions/setup-node@v4.0.4
86+
- uses: actions/setup-node@v4.1.0
8787
with:
8888
node-version-file: '.node-version'
8989
cache: 'pnpm'

.github/workflows/test-backend.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
- name: Install FFmpeg
6262
uses: FedericoCarboni/setup-ffmpeg@v3
6363
- name: Use Node.js ${{ matrix.node-version }}
64-
uses: actions/setup-node@v4.0.4
64+
uses: actions/setup-node@v4.1.0
6565
with:
6666
node-version: ${{ matrix.node-version }}
6767
cache: 'pnpm'
@@ -126,7 +126,7 @@ jobs:
126126
with:
127127
run_install: false
128128
- name: Use Node.js ${{ matrix.node-version }}
129-
uses: actions/setup-node@v4.0.4
129+
uses: actions/setup-node@v4.1.0
130130
with:
131131
node-version: ${{ matrix.node-version }}
132132
cache: 'pnpm'

.github/workflows/test-frontend.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
with:
4141
run_install: false
4242
- name: Use Node.js ${{ matrix.node-version }}
43-
uses: actions/setup-node@v4.0.4
43+
uses: actions/setup-node@v4.1.0
4444
with:
4545
node-version: ${{ matrix.node-version }}
4646
cache: 'pnpm'

.github/workflows/test-misskey-js.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- run: corepack enable
3434

3535
- name: Setup Node.js ${{ matrix.node-version }}
36-
uses: actions/setup-node@v4.0.4
36+
uses: actions/setup-node@v4.1.0
3737
with:
3838
node-version: ${{ matrix.node-version }}
3939
cache: 'pnpm'

.github/workflows/test-production.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
with:
3131
run_install: false
3232
- name: Use Node.js ${{ matrix.node-version }}
33-
uses: actions/setup-node@v4.0.4
33+
uses: actions/setup-node@v4.1.0
3434
with:
3535
node-version: ${{ matrix.node-version }}
3636
cache: 'pnpm'

.github/workflows/validate-api-json.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
with:
3333
run_install: false
3434
- name: Use Node.js ${{ matrix.node-version }}
35-
uses: actions/setup-node@v4.0.4
35+
uses: actions/setup-node@v4.1.0
3636
with:
3737
node-version: ${{ matrix.node-version }}
3838
cache: 'pnpm'

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,8 @@
8787
- Fix: `/i/notifications``includeTypes``excludeTypes`を指定しているとき、通知が存在するのに空配列を返すことがある問題を修正
8888
- Fix: 複数idを指定する`users/show`が関係ないユーザを返すことがある問題を修正
8989
- Fix: `/tags``/user-tags` が検索エンジンにインデックスされないように
90+
- Fix: もともとセンシティブではないと連合されていたファイルがセンシティブとして連合された場合にセンシティブとしてそのファイルを扱うように
91+
- センシティブとして連合したファイルは非センシティブとして連合されてもセンシティブとして扱われます
9092

9193
## 2024.3.1
9294

locales/en-US.yml

+44
Original file line numberDiff line numberDiff line change
@@ -1269,10 +1269,51 @@ keepOriginalFilenameDescription: "If you turn off this setting, files names will
12691269
noDescription: "There is not the explanation"
12701270
alwaysConfirmFollow: "Always confirm when following"
12711271
inquiry: "Contact"
1272+
tryAgain: "Please try again later"
1273+
confirmWhenRevealingSensitiveMedia: "Confirm when revealing sensitive media"
1274+
sensitiveMediaRevealConfirm: "This might be a sensitive media. Are you sure to reveal?"
1275+
createdLists: "Created lists"
1276+
createdAntennas: "Created antennas"
1277+
fromX: "From {x}"
1278+
genEmbedCode: "Generate embed code"
1279+
noteOfThisUser: "Notes by this user"
1280+
clipNoteLimitExceeded: "No more notes can be added to this clip."
1281+
performance: "Performance"
1282+
modified: "Modified"
1283+
discard: "Discard"
1284+
thereAreNChanges: "There are {n} change(s)"
1285+
signinWithPasskey: "Sign in with Passkey"
1286+
unknownWebAuthnKey: "Unknown Passkey"
1287+
passkeyVerificationFailed: "Passkey verification has failed."
1288+
passkeyVerificationSucceededButPasswordlessLoginDisabled: "Passkey verification has succeeded but password-less login is disabled."
1289+
messageToFollower: "Message to followers"
1290+
target: "Target"
1291+
testCaptchaWarning: "This function is intended for CAPTCHA testing purposes.\n<strong>Do not use in a production environment.</strong>"
1292+
prohibitedWordsForNameOfUser: "Prohibited words for user names"
1293+
prohibitedWordsForNameOfUserDescription: "If any of the strings in this list are included in the user's name, the name will be denied. Users with moderator privileges are not affected by this restriction."
1294+
yourNameContainsProhibitedWords: "Your name contains prohibited words"
1295+
yourNameContainsProhibitedWordsDescription: "If you wish to use this name, please contact your server administrator."
1296+
thisContentsAreMarkedAsSigninRequiredByAuthor: "Set by the author to require login to view"
1297+
lockdown: "Lockdown"
1298+
pleaseSelectAccount: "Select an account"
12721299
here: "here"
12731300
mutualLink: "Mutual Link"
12741301
saveThisFile: "Save this file to Drive"
12751302
changeUserName: "Change name"
1303+
gtagConsentCustomize: "Data Collection and Privacy Settings"
1304+
gtagConsentCustomizeDescription: "You can customize the scope of data collected by {host}.\nHowever, you cannot disable the collection of security-related information such as authentication features, fraud prevention, and other user protections."
1305+
gtagConsentAnalytics: "Collection of Statistical Information"
1306+
gtagConsentAnalyticsDescription: "Enable the storage (cookies, etc.) of analytics-related information such as site visit duration."
1307+
gtagConsentFunctionality: "Collection of Feature and Setting Usage"
1308+
gtagConsentFunctionalityDescription: "Enable the storage of information that supports website or app features, such as language settings."
1309+
gtagConsentPersonalization: "Collection of Personalized Information"
1310+
gtagConsentPersonalizationDescription: "Enable the storage of personalization-related information such as recommended posts."
1311+
helpUsImproveUserExperience: "To build the future of Misskey,\nplease help us by agreeing to data collection!"
1312+
pleaseConsentToTracking: "{host} may collect information that may include personal data such as your IP address, usage data, and device information during your use, based on our [Privacy Policy]({privacyPolicyUrl}), for the purpose of providing and operating the service and improving the user experience.\n\nThe collected data will be used for future feature development, operational policy decisions, and identifying areas for service improvement."
1313+
consentEssential: "Allow Essential Items"
1314+
consentAll: "Allow All Items"
1315+
consentSelected: "Allow Selected Items"
1316+
12761317
_bubbleGame:
12771318
howToPlay: "How to play"
12781319
hold: "Hold"
@@ -2170,8 +2211,11 @@ _auth:
21702211
permissionAsk: "This application requests the following permissions"
21712212
pleaseGoBack: "Please go back to the application"
21722213
callback: "Returning to the application"
2214+
accepted: "Access granted"
21732215
denied: "Access denied"
2216+
scopeUser: "Operate as the following user"
21742217
pleaseLogin: "Please log in to authorize applications."
2218+
byClickingYouWillBeRedirectedToThisUrl: "When access is granted, you will automatically be redirected to the following URL"
21752219
_antennaSources:
21762220
all: "All notes"
21772221
homeTimeline: "Notes from followed users"

0 commit comments

Comments
 (0)