Skip to content

Commit d388ddb

Browse files
authored
v3.1.0
1 parent c036730 commit d388ddb

File tree

4 files changed

+25
-3
lines changed

4 files changed

+25
-3
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,28 @@
11
# v3
22
For Misskey v13 production and later RC (since 13.0.0-rc.10)
33

4+
## v3.1.0
5+
Node.js v20をインストールするように変更しました。
6+
7+
アップデート前にNode.jsのアップデートを行う必要があります。
8+
9+
まず、次のコマンドでv20をインストールします。
10+
11+
```
12+
curl -sL https://deb.nodesource.com/setup_20.x | sudo -E bash -
13+
sudo apt install -y nodejs
14+
```
15+
16+
次に、Misskeyをインストールしたディレクトリに移動し、npmモジュールの更新作業を行います。
17+
18+
```
19+
sudo -su misskey
20+
cd misskey
21+
pnpm i --frozen-lockfile --force
22+
```
23+
24+
あとは、通常通りアップデートスクリプトを実行します。
25+
426
## v3.0.0
527
- pnpmを使用するようになったため追従
628
特にマイグレーションは必要ありません。アップデートスクリプトを更新してご利用ください。

README.en.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Misskey install shell script v3.0.0
1+
# Misskey install shell script v3.1.0
22
Install Misskey with one shell script!
33

44
You can install misskey on an Ubuntu server just by answering some questions.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Misskey install shell script v3.0.0
1+
# Misskey install shell script v3.1.0
22

33
Misskeyを簡単にインストールするためのシェルスクリプトができました!
44

ubuntu.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -547,7 +547,7 @@ if [ $method == "systemd" ]; then
547547
tput setaf 3;
548548
echo "Process: prepare node.js;"
549549
tput setaf 7;
550-
curl -sL https://deb.nodesource.com/setup_18.x | sudo -E bash -;
550+
curl -sL https://deb.nodesource.com/setup_20.x | sudo -E bash -;
551551
else
552552
tput setaf 3;
553553
echo "Process: prepare docker;"

0 commit comments

Comments
 (0)