Skip to content

Commit 97cabed

Browse files
authored
Release 1.7.3 (hestiacp#3477)
* Update Changelog / versions * Update changelog * Update readme * Update changelog * Fix small bug in Install.md * Use https:// instead
1 parent 7ae9a02 commit 97cabed

File tree

8 files changed

+43
-9
lines changed

8 files changed

+43
-9
lines changed

CHANGELOG.md

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

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

5+
## [1.7.3] - Service release
6+
7+
### Features
8+
9+
- Re-implement RRD charts in Chart.js (#3452)
10+
- Add JS/CSS build script (#3471)
11+
12+
### Dependencies
13+
14+
- Update hestia-php to 8.2.5
15+
- Update hestia-nginx to 1.23.4
16+
17+
### Bugfixes
18+
19+
- Fix: named command warning (#3447 #neto737)
20+
- Fix: Include Cloudflare IPS during install (#3449 #3448)
21+
- Fix: Bug in upgrade_phppgadmin preventing folder from being created when not exists (#3450)
22+
- Add warnings to php-fpm templates (#3450)
23+
- Exim: Never show HELO for authenticated users (#3462 @myvesta)
24+
- Misleading title "Error" on popup notification when creating manual backup (#3460 #3461)
25+
- Fix: Do not add a trailing . on DNSKEY #3458
26+
- Fix toolbar spacing on mobile in some scenarios e.g. Backups page (#3460)
27+
- Fix: Users can not create a new DNS domain (#3451)
28+
- Fix: Error message containing html are encode twice (#3473)
29+
- Fix button width regression (#3474)
30+
- Remove opacity from modal background (#3460)
31+
- Refactor add/remove name server javascript ($3468)
32+
- Refactor "Unlimited" inputs (#3464)
33+
- Refactor password strength JS (#3459)
34+
535
## [1.7.2] - Service release
636

737
### Note

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<h2 align="center">Lightweight and powerful control panel for the modern web</h2>
66

7-
<p align="center"><strong>Latest stable release:</strong> Version 1.7.0 | <a href="https://github.com/hestiacp/hestiacp/blob/release/CHANGELOG.md">View Changelog</a></p>
7+
<p align="center"><strong>Latest stable release:</strong> Version 1.7.3 | <a href="https://github.com/hestiacp/hestiacp/blob/release/CHANGELOG.md">View Changelog</a></p>
88

99
<p align="center">
1010
<a href="https://www.hestiacp.com/">HestiaCP.com</a> |
@@ -97,7 +97,7 @@ You may specify a number of various flags during installation to only install th
9797
bash hst-install.sh -h
9898
```
9999

100-
Alternatively, @gabizz has made available a command-line script generator at <https://gabizz.github.io/hestiacp-scriptline-generator/> which allows you to easily generate the installation command via GUI.
100+
Alternatively, You can use <https://hestiacp.com/install.html> which allows you to easily generate the installation command via GUI.
101101

102102
## How to upgrade an existing installation
103103

docs/.vitepress/theme/components/InstallOptions.vue

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,15 @@ export default {
5454
if (e.target.checked) {
5555
let conflicts = e.target.getAttribute("conflicts");
5656
if (conflicts) {
57-
document.getElementById(conflicts).checked = false;
57+
if (document.getElementById(conflicts).checked) {
58+
document.getElementById(conflicts).click();
59+
}
5860
}
5961
let depends = e.target.getAttribute("depends");
6062
if (depends) {
61-
document.getElementById(depends).checked = true;
63+
if (!document.getElementById(depends).checked) {
64+
document.getElementById(depends).click();
65+
}
6266
}
6367
}
6468
},

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.3~alpha'
35+
HESTIA_INSTALL_VER='1.7.3'
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.3~alpha'
35+
HESTIA_INSTALL_VER='1.7.3'
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.3~alpha",
4+
"version": "1.7.3",
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.3~alpha
4+
Version: 1.7.3
55
Section: admin
66
Maintainer: HestiaCP <info@hestiacp.com>
77
Homepage: https://www.hestiacp.com

src/rpm/hestia/hestia.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Name: hestia
44
Version: 1.7.3
5-
Release: 1~alpha%{dist}
5+
Release: 1%{dist}
66
Summary: Hestia Control Panel
77
Group: System Environment/Base
88
License: GPLv3

0 commit comments

Comments
 (0)