Skip to content

Commit 1afe140

Browse files
authored
Release 1.7.2 (hestiacp#3445)
* Add user agent to curl request new lets encrypt account * Prepare 1.7.2 release * Update changelog
1 parent 069fb91 commit 1afe140

File tree

7 files changed

+29
-6
lines changed

7 files changed

+29
-6
lines changed

CHANGELOG.md

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

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

5+
## [1.7.2] - Service release
6+
7+
### Note
8+
9+
- Hestia 1.7.2 fixes an issue with certificate downloading introduced by a new feature with [LetsEncrypt](https://community.letsencrypt.org/t/enabling-asynchronous-order-finalization/193522/7) and will go live on the 24th April 2023. Breaking existing setups!
10+
11+
### Bugfixes
12+
13+
- Fixed an issue php after default php version change (#3145 #3414)
14+
- Fixed importing Add Domains v-import-cpanel (#3242 @adion-gorani)
15+
- Fixed and issue with DNSSSEC check if DNSEC is available (#3430)
16+
- Fixed an issue with v-add-web-domain-redirection (#3438 #3440)
17+
- Remove leading and trailing spaces on a domain (#3439 #3440)
18+
- Fixed an issue with domain.com:/public_html in v-backup-users (#3434)
19+
- Fix and issue with custom webmail clients (#3419 #3420)
20+
- Refine :focus styles (#3432)
21+
- Replace jQuery UI tabs with vanilla JS (#3413)
22+
- Reduce amount of animation styles (#3418)
23+
- Minor UI updates (#3425)
24+
- Fixed an issue with v-suspend-dns-record still loading after being disabled (#3441 @setiseta)
25+
- Replace jQuery UI dialogs with <dialog> (#3401)
26+
- Fixed an issue SSL not found + php error on login page. (#3404)
27+
528
## [1.7.1] - Service release
629

730
### Bugfixes

bin/v-add-letsencrypt-user

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ query_le_v2() {
5050
post_data=$post_data'"payload":"'"$payload_"'",'
5151
post_data=$post_data'"signature":"'"$signature_"'"}'
5252

53-
curl -s -i -d "$post_data" "$1" -H "$content"
53+
curl --user-agent "HestiaCP" -s -i -d "$post_data" "$1" -H "$content"
5454
}
5555

5656
#----------------------------------------------------------#

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.2~alpha'
35+
HESTIA_INSTALL_VER='1.7.2'
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.2~alpha'
35+
HESTIA_INSTALL_VER='1.7.2'
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.2~alpha",
4+
"version": "1.7.2",
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.2~alpha
4+
Version: 1.7.2
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.2
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)