Merge pull request #16197 from misskey-dev/develop

Release: 2025.6.3
This commit is contained in:
misskey-release-bot[bot] 2025-06-16 11:13:26 +00:00 committed by GitHub
commit 9b729b3d25
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 9 additions and 4 deletions

View File

@ -1,3 +1,8 @@
## 2025.6.3
### Client
- Fix: キャッシュを削除しないとクライアントが使用できないことがある問題を修正
## 2025.6.2
### Client

View File

@ -1,6 +1,6 @@
{
"name": "misskey",
"version": "2025.6.2",
"version": "2025.6.3",
"codename": "nasubi",
"repository": {
"type": "git",

View File

@ -72,7 +72,7 @@ export class I18n<T extends ILocale> {
console.error(`Unexpected locale key: ${String(p)}`);
return p;
return new Proxy({} as any, new Handler<TTarget[keyof TTarget] & ILocale>());
}
}
@ -141,7 +141,7 @@ export class I18n<T extends ILocale> {
console.error(`Unexpected locale key: ${String(p)}`);
return p;
return new Proxy((() => p) as any, new Handler<TTarget[keyof TTarget] & ILocale>());
}
}

View File

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