Skip to content

Commit 193c2c3

Browse files
jaapmarcusKristan Kenney
andauthored
Staging/1.8.2 (hestiacp#3805)
* v1.8.2 (beta release) * Update translations * Update changelog * Update readme.md * Update supported version getting started * Update changelog * Update versions --------- Co-authored-by: Kristan Kenney <git@kristankenney.ca>
1 parent e763066 commit 193c2c3

File tree

15 files changed

+38
-18
lines changed

15 files changed

+38
-18
lines changed

CHANGELOG.md

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

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

5-
## [1.8.1] - Service releae
6-
7-
- Fixed Debian 10 not working with ip adresses check
5+
## [1.8.2] - Service release
6+
7+
- Added more files to default proxy extensions (#3768)
8+
- Increased width of menu bar dropdowns on mobile (#3765)
9+
- Increased HSTS max-age to 31536000 (#3762)
10+
- Add prompt to `v-update-sys-hestia-git` to install NodeJS if not present (#3779)
11+
- Fixed an issue where `v-update-sys-ip` was not run on boot on Debian systems
12+
- Fixed an issue where the system hostname would lose its FQDN format on reboot when using Proxmox VE containers
13+
- Fixed an issue ith `v-generate-ssl-cert` (#3783)
14+
- Fixed an issue where the port was missing in welcome email (#3784)
15+
- Fixed an issue with the `is_mail_new` function (#3785)
16+
- Fixed an issue where the "Save" button would appear before warning was dismissed when attempting to add a domain or database as admin (#3786)
17+
- Fixed an issue where MySQL 8 could not be installed on Ubuntu (#3788)
18+
- Fixed an issue with TLS connections when using ProFTPD (#3790)
19+
- Fixed an issue where vlan or virtual NIC connections would fail the adapter validity check when adding an IP address (#3797)
20+
- Fixed several PHP 500 errors and warnings in the Control Panel backend (#3789)
21+
- Fixed an issue with v-change-dns-domain-ip and DNS cluster (#3803)
22+
- Update Multiple Quick install apps (#3800 and #3801)
23+
- Updated language translations
24+
25+
## [1.8.1] - Service release
26+
27+
- Fixed Debian 10 not working with IP addresses check
828
- Fixed Exim4 update config via patch was unreliable added few safety checks and add notice if failed.
929
- Fixed hestia-nginx not loading with custom port
1030

README.md

Lines changed: 1 addition & 1 deletion
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.8.1 | <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.8.2 | <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> |

docs/docs/introduction/getting-started.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ Hestia must be installed on top of a fresh operating system installation to ensu
1313
If on a VPS/KVM, and there is already an admin account, either delete that default admin ID, or use `--force` to continue with the installation. See custom installation below for further details.
1414
:::
1515

16-
| | Minimum | Recommended |
17-
| -------------------- | ----------------------------------------- | ------------------------------------ |
18-
| **CPU** | 1 core, 64-bit | 4 cores |
19-
| **Memory** | 1 GB (no SpamAssassin and ClamAV) | 4 GB |
20-
| **Disk** | 10 GB HDD | 40 GB SSD |
21-
| **Operating System** | Debian 10, 11 <br>Ubuntu 20.04, 22.04 LTS | Latest Debian <br> Latest Ubuntu LTS |
16+
| | Minimum | Recommended |
17+
| -------------------- | ---------------------------------------------- | ------------------------------------ |
18+
| **CPU** | 1 core, 64-bit | 4 cores |
19+
| **Memory** | 1 GB (no SpamAssassin and ClamAV) | 4 GB |
20+
| **Disk** | 10 GB HDD | 40 GB SSD |
21+
| **Operating System** | Debian 10, 11 or 12<br>Ubuntu 20.04, 22.04 LTS | Latest Debian <br> Latest Ubuntu LTS |
2222

2323
::: warning
2424
Hestia only runs on AMD64 / x86_64 and ARM64 / aarch64 processors. It also requires a 64bit operating system!
@@ -27,7 +27,7 @@ We currently do not support i386 or ARM7-based processors.
2727

2828
### Supported operating systems
2929

30-
- Debian 10 or 11
30+
- Debian 10, 11 or 12
3131
- Ubuntu 20.04 or 22.04
3232

3333
::: warning

install/hst-install-debian.sh

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

3333
# Define software versions
34-
HESTIA_INSTALL_VER='1.8.2~alpha'
34+
HESTIA_INSTALL_VER='1.8.2'
3535
# Dependencies
3636
multiphp_v=("5.6" "7.0" "7.1" "7.2" "7.3" "7.4" "8.0" "8.1" "8.2")
3737
fpm_v="8.1"

install/hst-install-ubuntu.sh

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

3333
# Define software versions
34-
HESTIA_INSTALL_VER='1.8.2~alpha'
34+
HESTIA_INSTALL_VER='1.8.2'
3535
# Dependencies
3636
multiphp_v=("5.6" "7.0" "7.1" "7.2" "7.3" "7.4" "8.0" "8.1" "8.2")
3737
fpm_v="8.1"

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.8.2~alpha",
4+
"version": "1.8.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.8.2~alpha
4+
Version: 1.8.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
%global _hardened_build 1
33

44
Name: hestia
5-
Version: 1.8.2~alpha
5+
Version: 1.8.2
66
Release: 1%{dist}
77
Summary: Hestia Control Panel
88
Group: System Environment/Base
2.51 KB
Binary file not shown.

0 commit comments

Comments
 (0)