Skip to content

Commit d82e349

Browse files
authored
v3.2.3
1 parent 6db958e commit d82e349

File tree

4 files changed

+17
-4
lines changed

4 files changed

+17
-4
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,19 @@ For Misskey v13 production and later RC (since 13.0.0-rc.10)
33

44
The English version is available at https://github.com/joinmisskey/bash-install/releases .
55

6+
## v3.2.3
7+
Misskey v2023.11.0からNode.jsの最低バージョンがv22.11.0になりました。
8+
9+
systemd方式を選択された方は、次のコマンドを実行し、Node.jsをアップデートしてください。
10+
11+
```
12+
sudo rm /usr/share/keyrings/nodesource.gpg;
13+
curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | sudo gpg --dearmor -o /usr/share/keyrings/nodesource.gpg;
14+
NODE_MAJOR=22; echo "deb [signed-by=/usr/share/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_MAJOR.x nodistro main" | sudo tee /etc/apt/sources.list.d/nodesource.list;
15+
sudo apt update;
16+
sudo apt install -y nodejs;
17+
```
18+
619
## v3.2.2
720
- nginxのアップロードの上限を80mから250mにしました。
821
- アップデートスクリプトで、`git pull`の前に`git checkout -- .`するようにしました。

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.2.2
1+
# Misskey install shell script v3.2.3
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.2.2
1+
# Misskey install shell script v3.2.3
22

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

ubuntu.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
# DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1919
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2020
#
21-
version="3.2.1";
22-
NODE_MAJOR="20";
21+
version="3.2.3";
22+
NODE_MAJOR="22";
2323

2424
tput setaf 4;
2525
echo "";

0 commit comments

Comments
 (0)