Skip to content

Commit 3c7be16

Browse files
committed
Merge branch 'staging/1.5.0' into main
2 parents 32500b1 + 155de5b commit 3c7be16

File tree

27 files changed

+78
-61
lines changed

27 files changed

+78
-61
lines changed

CHANGELOG.md

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,29 @@ All notable changes to this project will be documented in this file.
55

66
## Features
77

8-
- Add support for Dovecote Sieve #2163
8+
- Add support for Dovecote Sieve #2163 (@2163)
99
- Improve HELO based system and use RDNS lookup instead our old system
10+
- Set default php version for new installs to PHP8.0
1011

1112
### Bugfixes
1213

1314
- Disable /reset/ endpoint when POLICY_SYSTEM_PASSWORD_RESET = no
15+
- Add rate limit forgot password
1416
- Prevent SOA count up after v-change-dns-records with no changes are made
1517
- Fix #1296 Logrotate does not rotate logs any more on Ubuntu 20.04 and Debian 11
1618
- Run shellcheck to improve code quality
1719
- Improve ssh port detection for filemanager. Allowing users to create /etc/ssh/sshd.conf.d/custom.conf with custom port.
20+
- Fix an bug in v-add-letsencrypt-host due to changes of Lets Encrypt causing issues with rate limiting
21+
- Improve Update process Hestia and allow versions to decide a a rebuild is required
22+
- Add Download SSL certificate function for self generated ssl cerrtificates #2181
23+
- Block access to .user.ini for Nginx + Apache2 #2179
24+
- Add support for download B2 backup to local server to allow for restore #2199
25+
- Update permissions /var/kog/roundcube on older installations #2173
26+
- Update translations
27+
28+
### Dependencies
29+
30+
- Update Roundcube to 1.5.0 https://roundcube.net/news/2021/10/18/roundcube-1.5.0-released
1831

1932
### Security
2033

@@ -34,8 +47,6 @@ All notable changes to this project will be documented in this file.
3447

3548
- Fix bug with .json not loading on Apache2 due to rule in /etc/apache2/conf.d/phpmyadmin.conf
3649

37-
### Bugfixes
38-
3950
## [1.4.15] - Service release
4051

4152
## Features

install/hst-install-debian.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ HESTIA_INSTALL_DIR="$HESTIA/install/deb"
2323
VERBOSE='no'
2424

2525
# Define software versions
26-
HESTIA_INSTALL_VER='1.5.0~alpha'
26+
HESTIA_INSTALL_VER='1.5.0~beta'
2727
pma_v='5.1.1'
2828
rc_v="1.5.0"
2929
multiphp_v=("5.6" "7.0" "7.1" "7.2" "7.3" "7.4" "8.0")

install/hst-install-ubuntu.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ HESTIA_INSTALL_DIR="$HESTIA/install/deb"
2323
VERBOSE='no'
2424

2525
# Define software versions
26-
HESTIA_INSTALL_VER='1.5.0~alpha'
26+
HESTIA_INSTALL_VER='1.5.0~beta'
2727
pma_v='5.1.1'
2828
rc_v="1.5.0"
2929
multiphp_v=("5.6" "7.0" "7.1" "7.2" "7.3" "7.4" "8.0")
Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
# Hestia Control Panel upgrade script for target version 1.4.18
3+
# Hestia Control Panel upgrade script for target version 1.5.0
44

55
#######################################################################################
66
####### Place additional commands below. #######
@@ -15,6 +15,13 @@
1515
####### You can use \n within the string to create new lines. #######
1616
#######################################################################################
1717

18+
upgrade_config_set_value 'UPGRADE_UPDATE_WEB_TEMPLATES' 'true'
19+
upgrade_config_set_value 'UPGRADE_UPDATE_DNS_TEMPLATES' 'true'
20+
upgrade_config_set_value 'UPGRADE_UPDATE_MAIL_TEMPLATES' 'true'
21+
upgrade_config_set_value 'UPGRADE_REBUILD_USERS' 'true'
22+
upgrade_config_set_value 'UPGRADE_UPDATE_FILEMANAGER_CONFIG' 'true'
23+
24+
1825
if [ -n "$DB_PMA_ALIAS" ]; then
1926
$HESTIA/bin/v-change-sys-db-alias 'pma' "$DB_PMA_ALIAS"
2027
fi
@@ -39,9 +46,11 @@ fi
3946
if [ -L "/var/log/hestia" ]; then
4047
echo "[ ! ] Move /usr/local/hestia/log/* to /var/log/hestia/"
4148
rm /var/log/hestia
42-
cp $HESTIA/log/* /var/log/hestia
43-
rm -rf $HESTIA/log/
44-
ln -s /var/log/hestia $HESTIA/log
49+
mkdir -p /var/log/hestia
50+
cp /usr/local/hestia/log/* /var/log/hestia/
51+
rm -rf /usr/local/hestia/log
52+
ln -s /var/log/hestia /usr/local/hestia/log
53+
touch /var/log/hestia/auth.log /var/log/hestia/error.log /var/log/hestia/system.log /var/log/hestia/nginx-error.log /var/log/hestia/nginx-access.log
4554
fi
4655

4756
if [ -d "/var/log/roundcube" ]; then

src/deb/hestia/control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Source: hestia
22
Package: hestia
33
Priority: optional
4-
Version: 1.5.0~alpha
4+
Version: 1.5.0~beta
55
Section: admin
66
Maintainer: HestiaCP <info@hestiacp.com>
77
Homepage: https://www.hestiacp.com
-54 Bytes
Binary file not shown.
14.4 KB
Binary file not shown.
-50 Bytes
Binary file not shown.
-50 Bytes
Binary file not shown.
70 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)