Merge pull request #10112 from misskey-dev/develop

Release: 13.8.1
This commit is contained in:
syuilo 2023-02-26 20:57:13 +09:00 committed by GitHub
commit 647ce174b3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 20 additions and 4 deletions

View file

@ -1,10 +1,19 @@
# Summary ## Summary
This is a release PR. This is a release PR.
For more information on the release instructions, please see: For more information on the release instructions, please see:
https://github.com/misskey-dev/misskey/blob/develop/CONTRIBUTING.md#release https://github.com/misskey-dev/misskey/blob/develop/CONTRIBUTING.md#release
# Checklist ## For reviewers
- CHANGELOGに抜け漏れは無いか
- バージョンの上げ方は適切か
- 他にこのリリースに含めなければならない変更は無いか
- 全体的な変更内容を俯瞰し問題は無いか
- レビューされていないコミットがある場合は、それが問題ないか
などを確認し、リリースする準備が整っていると思われる場合は approve してください。
## Checklist
- [ ] package.jsonのバージョンが正しく更新されている - [ ] package.jsonのバージョンが正しく更新されている
- [ ] CHANGELOGが過不足無く更新されている - [ ] CHANGELOGが過不足無く更新されている
- [ ] CIが全て通っている - [ ] CIが全て通っている

View file

@ -9,6 +9,12 @@
You should also include the user name that made the change. You should also include the user name that made the change.
--> -->
## 13.8.1 (2023/02/26)
### Bugfixes
- モバイルでドロワーメニューが表示されない問題を修正
## 13.8.0 (2023/02/26) ## 13.8.0 (2023/02/26)
### Improvements ### Improvements
@ -28,6 +34,7 @@ You should also include the user name that made the change.
- fix(client): Android ChromeでPWAとしてインストールできない問題を修正 - fix(client): Android ChromeでPWAとしてインストールできない問題を修正
- 未知のユーザーが deleteActor されたら処理をスキップする - 未知のユーザーが deleteActor されたら処理をスキップする
- fix(server): notes/createで、fileIdsと見つかったファイルの数が異なる場合はエラーにする - fix(server): notes/createで、fileIdsと見つかったファイルの数が異なる場合はエラーにする
- fix(server): notes/createのバリデーションが機能していないのを修正
- fix(server): エラーのスタックトレースは返さないように - fix(server): エラーのスタックトレースは返さないように
## 13.7.5 (2023/02/24) ## 13.7.5 (2023/02/24)

View file

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

View file

@ -125,7 +125,7 @@ function onBgClick() {
} }
if (type === 'drawer') { if (type === 'drawer') {
maxHeight = (window.innerHeight - SCROLLBAR_THICKNESS) / 1.5; maxHeight = window.innerHeight / 1.5;
} }
const keymap = { const keymap = {