Skip to content

Commit 658e74f

Browse files
authored
Staging/1.7.1 (hestiacp#3405)
* Update changelog * Update versions * Update translations * Fix redirect for system user
1 parent 7e020c7 commit 658e74f

File tree

12 files changed

+29
-5
lines changed

12 files changed

+29
-5
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,26 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [1.7.1] - Service release
6+
7+
### Bugfixes
8+
9+
- Fixed an issue with wildcard overruling webmail.domain.com config in Apache2 (#3400 #1631)
10+
- Removed delete button edit user page (#3997)
11+
- Fixed an issue with serial not increasing (#3396)
12+
- Fixed an issue with new hestia-zone sync and servers behind NAT or with multiple IPs (#3388 #3396)
13+
- Remove option to enable DNSSEC when DNSSEC is not supported (#3372 #3396)
14+
- Fix toolbar items on locales with long words (#3380 #3395)
15+
- Only count \*.tar files in rotate routine (#3393 #3385)
16+
- Fixed broken upgrade_mariadb.sh (#3391 @myrevery)
17+
- Improve add_firewall_ipset.php (#3390 @myrevery)
18+
- Update Path change of IPset blacklist.sh (#3389 @myrevery)
19+
- Improve upgrade script Cloudflare ips (#3388 @myrevery)
20+
- Update supported message hst-install.sh (#3377 @shizualand)
21+
- Fixed an issue with adding own ssl certificated to website config (#3374 #3371)
22+
- Fixed javascript logic edit mail domains (#3373)
23+
- Add required attribute to login forms (#3376)
24+
525
## [1.7.0] - Feature / Major release
626

727
### Note

install/hst-install-debian.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ HESTIA_COMMON_DIR="$HESTIA/install/common"
3232
VERBOSE='no'
3333

3434
# Define software versions
35-
HESTIA_INSTALL_VER='1.7.1~alpha'
35+
HESTIA_INSTALL_VER='1.7.1'
3636
# Dependencies
3737
multiphp_v=("5.6" "7.0" "7.1" "7.2" "7.3" "7.4" "8.0" "8.1" "8.2")
3838
fpm_v="8.1"

install/hst-install-ubuntu.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ HESTIA_COMMON_DIR="$HESTIA/install/common"
3232
VERBOSE='no'
3333

3434
# Define software versions
35-
HESTIA_INSTALL_VER='1.7.1~alpha'
35+
HESTIA_INSTALL_VER='1.7.1'
3636
# Dependencies
3737
multiphp_v=("5.6" "7.0" "7.1" "7.2" "7.3" "7.4" "8.0" "8.1" "8.2")
3838
fpm_v="8.1"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "hestia",
33
"private": true,
4-
"version": "1.7.1~alpha",
4+
"version": "1.7.1",
55
"description": "An open-source Linux web server control panel.",
66
"repository": "https://github.com/hestiacp/hestiacp",
77
"license": "GPL-3.0-or-later",

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.7.1~alpha
4+
Version: 1.7.1
55
Section: admin
66
Maintainer: HestiaCP <info@hestiacp.com>
77
Homepage: https://www.hestiacp.com

web/delete/log/index.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,11 @@
2222
} else {
2323
// Set correct page reload target
2424
if ($_SESSION["userContext"] === "admin" && !empty($_GET["user"])) {
25-
header("Location: /list/log/?user=$user&token=$token");
25+
if ($_GET["user"] != "system") {
26+
header("Location: /list/log/?user=$user&token=$token");
27+
} else {
28+
header("Location: /list/log/?user=system&token=$token");
29+
}
2630
} else {
2731
header("Location: /list/log/");
2832
}
59 Bytes
Binary file not shown.
53 Bytes
Binary file not shown.
53 Bytes
Binary file not shown.
67 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)