Release v2.8.1
This commit is contained in:
commit
6de3297e31
25
CHANGELOG.md
25
CHANGELOG.md
|
@ -4,17 +4,38 @@ Please make sure to always read our [Upgrading](doc/80-Upgrading.md) documentati
|
|||
|
||||
## What's New
|
||||
|
||||
### What's New in Version 2.8.1
|
||||
|
||||
You can find all issues related to this release on the respective [milestone](https://github.com/Icinga/icingaweb2/milestone/61?closed=1).
|
||||
|
||||
#### Case Sensitivity Problems
|
||||
|
||||
A fix in v2.8.0 led to users being not able to login if they got their username's case wrong. A hostgroup name's case
|
||||
has also been incorrectly taken into account despite using a `CI` labelled column in the servicegrid and other lists.
|
||||
|
||||
* Login usernames now case sensitive in 2.8 [#4184](https://github.com/Icinga/icingaweb2/issues/4184)
|
||||
* Case insensitive hostgroup filter in service grid not working [#4178](https://github.com/Icinga/icingaweb2/issues/4178)
|
||||
|
||||
#### Issues With Numbers
|
||||
|
||||
An attempt to avoid misrepresenting environments in the tactical overview had an opposite effect by showing negative
|
||||
numbers. Filtering for timestamps in the event history also showed no results because our filters couldn't cope with
|
||||
plain numbers anymore.
|
||||
|
||||
* Tactical overview showing "-1 pending" hosts [#4174](https://github.com/Icinga/icingaweb2/issues/4174)
|
||||
* Timestamp filters not working correctly in history views [#4182](https://github.com/Icinga/icingaweb2/issues/4182)
|
||||
|
||||
### What's New in Version 2.8.0
|
||||
|
||||
You can find all issues related to this release on our [Roadmap](https://github.com/Icinga/icingaweb2/milestone/60?closed=1).
|
||||
|
||||
#### Icinga DB
|
||||
|
||||
It's happening. Yes. Our latest hot shit is now available for those who are willing to participate in this enormous
|
||||
It's happening. Yes. Our latest achievement is now available for those who are willing to participate in this enormous
|
||||
endeavour. Icinga Web 2 is also a crucial part of it and accompanies the first release of Icinga DB. If you like
|
||||
to participate, don't forget to update Icinga Web 2 as well.
|
||||
|
||||
#### Support For Even More Hot Shit
|
||||
#### Support for PHP 7.4 and MySQL 8
|
||||
|
||||
We also made sure that you won't be disappointed by Icinga Web 2 if you're running PHP 7.4 or trying to access a MySQL
|
||||
database with version 8+. These should pose no issues anymore now. But if you still somehow managed to get issues
|
||||
|
|
|
@ -8,7 +8,7 @@ namespace Icinga\Application;
|
|||
*/
|
||||
class Version
|
||||
{
|
||||
const VERSION = '2.8.0';
|
||||
const VERSION = '2.8.1';
|
||||
|
||||
/**
|
||||
* Get the version of this instance of Icinga Web 2
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Module: doc
|
||||
Version: 2.8.0
|
||||
Version: 2.8.1
|
||||
Description: Documentation module
|
||||
Extracts, shows and exports documentation for Icinga Web 2 and its modules.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
Module: migrate
|
||||
Version: 2.8.0
|
||||
Version: 2.8.1
|
||||
Description: Migrate module
|
||||
This module was introduced with the domain-aware authentication feature in version 2.5.0.
|
||||
It helps you migrating users and user configurations according to a given domain.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
Module: monitoring
|
||||
Version: 2.8.0
|
||||
Version: 2.8.1
|
||||
Description: Icinga monitoring module
|
||||
IDO accessor and UI for your monitoring. This is the initial instalment for a
|
||||
graphical presentation of Icinga environments. The predecessor of Icinga DB.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
Module: setup
|
||||
Version: 2.8.0
|
||||
Version: 2.8.1
|
||||
Description: Setup module
|
||||
Web based wizard for setting up Icinga Web 2 and its modules.
|
||||
This includes the data backends (e.g. relational database, LDAP),
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
Module: test
|
||||
Version: 2.8.0
|
||||
Version: 2.8.1
|
||||
Description: Translation module
|
||||
This module allows developers to run (unit) tests against Icinga Web 2 and
|
||||
any of its modules. Usually you do not need to enable this.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
Module: translation
|
||||
Version: 2.8.0
|
||||
Version: 2.8.1
|
||||
Description: Translation module
|
||||
This module allows developers and translators to translate Icinga Web 2 and
|
||||
its modules for multiple languages. You do not need this module to run an
|
||||
|
|
Loading…
Reference in New Issue