Skip to content

Commit 6111c26

Browse files
committed
Merge branch 'staging/release/1.4' into main
2 parents 51d1d53 + 9cf33af commit 6111c26

File tree

7 files changed

+19
-13
lines changed

7 files changed

+19
-13
lines changed

CHANGELOG.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
33

4-
## [DEVELOPMENT]
4+
## [1.4.0] - Major Release (Feature / Quality Update)
55

66
- **NOTE:** Ubuntu 16.04 (Xenial) is no longer supported as it has reached EOL (end-of-life) status.
77
- **NOTE:** Apache in "standalone" mode is no longer actively supported and has been removed from installer options. Nginx (Proxy) + Apache2 will remain supported.
88
- **NOTE:** Custom "quick installer apps" will not work anymore due to changes in how we handle quick installer apps. Minimal changes to the Quick installer apps are required! Please check https://github.com/hestiacp/hestia-quick-install for how to migrate!
9+
- **NOTE:** Manual upgrade scripts are available to update Roundcube, Rainloop and PHPmyadmin to the last version they can be found in /usr/local/hestia/install/upgrade/manual/
910

1011
### Features
11-
- Introduced single sign-on support for phpMyAdmin.
1212
- Introduced support for NGINX FastCGI cache.
1313
- Introduced support for SMTP Relay / smarthosts (server-wide or per-domain).
1414
- Introduced the ability to choose which webmail client to use per-domain (Roundcube or Rainloop).
15+
- Added support for Rainloop (Run v-add-sys-rainloop to install it)
1516
- Added B2 Backup Support for Remote Backup Location - thanks **@rez0n**!
1617
- Added template support for osTicket - thanks **@madito**!
1718
- Packages for phpMyAdmin, Roundcube, and Rainloop will be pulled directly from their upstream source instead of APT for new installations.
@@ -30,8 +31,8 @@ All notable changes to this project will be documented in this file.
3031
- Limit access to admin account when other users have the role "Administrator" assigned to them.
3132
- Disable user to login via WebUI / Limit access to WebUI to certain IP address per user.
3233
- Discourage websites to be created under "admin" account and redirect users to create new users.
33-
- Added support for redirecting to www / non www domains (or custom) #427 / #1638
34-
- Log failed login attempts
34+
- Added support for redirecting to www / non www domains (or custom) #427 / #1638.
35+
- Allow users to see failed login attempts on there account.
3536
- Introduced support for ARM based systems. Currently the packages are not available via ATP!
3637
- Force reboot of system after install
3738

@@ -91,7 +92,8 @@ All notable changes to this project will be documented in this file.
9192
- Improved how we handle custom themes
9293
- Refactored HMTL / PHP code WebUI
9394
- Updated ClamAV configuration
94-
95+
- Fixed issue where file manger key got the wrong permissions
96+
- Update version Laveral @mariojgt
9597

9698
## [1.3.5] - Service Release
9799
### Features

README.md

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

33
[Hestia Control Panel](https://www.hestiacp.com/)
44
==================================================
5-
**Latest stable release:** Version 1.3.5 | [View Changelog](https://github.com/hestiacp/hestiacp/blob/release/CHANGELOG.md)<br>
5+
**Latest stable release:** Version 1.4.0 | [View Changelog](https://github.com/hestiacp/hestiacp/blob/release/CHANGELOG.md)<br>
66

77
**Web:** [www.hestiacp.com](https://www.hestiacp.com/)<br>
88
**Documentation:** [docs.hestiacp.com](https://docs.hestiacp.com/)<br>
@@ -21,16 +21,16 @@ Features and Services
2121
* Apache2 and NGINX with PHP-FPM
2222
* Multiple PHP versions (5.6 - 8.0, 7.4 as default)
2323
* DNS Server (Bind) with clustering capabilities
24-
* POP/IMAP/SMTP mail services with Anti-Virus, Anti-Spam, and Webmail (ClamAV, SpamAssassin, and Roundcube)
24+
* POP/IMAP/SMTP mail services with Anti-Virus, Anti-Spam, and Webmail (ClamAV, SpamAssassin, Roundcube, Rainloop)
2525
* MariaDB or PostgreSQL databases
2626
* Let's Encrypt SSL support with wildcard certificates
2727
* Firewall with brute-force attack detection and IP lists (iptables, fail2ban, and ipset).
2828

2929
Supported platforms and operating systems
3030
----------------------------
3131
* **CPU Architecture:** AMD64 (x86_64 Intel/AMD)
32-
* **Debian:** 10, 9
33-
* **Ubuntu:** 20.04 LTS, 18.04 LTS, or 16.04 LTS
32+
* **Debian:** 10 or 9
33+
* **Ubuntu:** 20.04 LTS or 18.04 LTS
3434
* **NOTE:** Hestia Control Panel must be installed on top of a fresh operating system installation to ensure proper functionality.
3535

3636
Installing Hestia Control Panel

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.4.0~beta'
26+
HESTIA_INSTALL_VER='1.4.0'
2727
pma_v='5.1.0'
2828
rc_v="1.4.11"
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.4.0~beta'
26+
HESTIA_INSTALL_VER='1.4.0'
2727
pma_v='5.1.0'
2828
rc_v="1.4.11"
2929
multiphp_v=("5.6" "7.0" "7.1" "7.2" "7.3" "7.4" "8.0")

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

web/templates/pages/edit_server.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,9 @@
502502
<br><br>
503503
</td>
504504
</tr>
505-
<?php if ($_SESSION['POLICY_SYSTEM_ENABLE_BACON'] === 'true') {?>
505+
<?php if ($_SESSION['POLICY_SYSTEM_ENABLE_BACON'] === 'true' && 1 != 1) {
506+
//disable for 1.4.0 release due some bugs
507+
?>
506508
<tr>
507509
<td class="vst-text">
508510
<?=_('phpMyAdmin Single Sign On');?> <span class="hint">(Preview)</span>

web/templates/pages/list_server_preview.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
</div>
2525
</div>
2626
<!-- Start of item element-->
27+
<!--
2728
<div class="l-unit header animated fadeIn">
2829
<div class="l-unit__col l-unit__col--right">
2930
<div class="clearfix l-unit__stat-col--left super-compact text-center">
@@ -34,6 +35,7 @@
3435
<div class="clearfix l-unit__stat-col--left wide-2">In final development stages.</div>
3536
</div>
3637
</div>
38+
-->
3739
<!-- End of item element-->
3840
<!-- Start of item element-->
3941
<div class="l-unit header animated fadeIn">

0 commit comments

Comments
 (0)