diff --git a/.mailmap b/.mailmap index fbf56bf29..450797d0d 100644 --- a/.mailmap +++ b/.mailmap @@ -2,7 +2,10 @@ Alexander A. Klimov Feu Mourek Florian Strohmaier Florian Strohmaier +Jonada Hoxha <90179003+jhoxhaa@users.noreply.github.com> +Jonada Hoxha Jonada Ravi Kumar Kempapura Srinivasa <33730024+raviks789@users.noreply.github.com> +Ravi Kumar Kempapura Srinivasa Sukhwinder Dhillon <54990055+sukhwinder33445@users.noreply.github.com> Sukhwinder Dhillon Yonas Habteab diff --git a/AUTHORS b/AUTHORS index e3cc5d2e4..e6cc23020 100644 --- a/AUTHORS +++ b/AUTHORS @@ -3,11 +3,15 @@ Eric Lippmann Feu Mourek Florian Strohmaier Johannes Meyer +Jonada Hoxha Loei Petrus Marogi Marius Hein Noah Hilverling Patrick Dolinic Ravi Kumar Kempapura Srinivasa +stupiddr Sukhwinder Dhillon +Timm Ortloff +Tobias Tiederle VerboEse Yonas Habteab diff --git a/CHANGELOG.md b/CHANGELOG.md index 394f1cf9a..a89d52abc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,11 @@ Please make sure to always read our [Upgrading](https://icinga.com/docs/icinga-db-web/latest/doc/05-Upgrading/) documentation before switching to a new version. +## 1.1.0 (2023-09-28) + +Included changes can be found on the milestone: https://github.com/Icinga/icingadb-web/milestone/2?closed=1 +And a detailed description about the most important ones on our blog: https://icinga.com/blog/2023/09/28/releasing-icinga-db-web-v1-1/ + ## 1.0.2 (2022-11-04) You can find all issues related to this release on the respective [Milestone](https://github.com/Icinga/icingadb-web/milestone/4?closed=1). diff --git a/doc/02-Installation.md.d/From-Source.md b/doc/02-Installation.md.d/From-Source.md index 9a393501b..b430d16a0 100644 --- a/doc/02-Installation.md.d/From-Source.md +++ b/doc/02-Installation.md.d/From-Source.md @@ -11,7 +11,7 @@ Make sure you use `icingadb` as the module name. The following requirements must * The following PHP modules must be installed: `cURL`, `dom`, `json`, `libxml` * [Icinga DB](https://github.com/Icinga/icingadb) * [Icinga Web 2](https://github.com/Icinga/icingaweb2) (≥2.9) -* [Icinga PHP Library (ipl)](https://github.com/Icinga/icinga-php-library) (≥0.10) -* [Icinga PHP Thirdparty](https://github.com/Icinga/icinga-php-thirdparty) (≥0.11) +* [Icinga PHP Library (ipl)](https://github.com/Icinga/icinga-php-library) (≥0.13) +* [Icinga PHP Thirdparty](https://github.com/Icinga/icinga-php-thirdparty) (≥0.12) diff --git a/doc/05-Upgrading.md b/doc/05-Upgrading.md index 7bb3efdd9..97f92a47a 100644 --- a/doc/05-Upgrading.md +++ b/doc/05-Upgrading.md @@ -3,6 +3,19 @@ Specific version upgrades are described below. Please note that version upgrades are incremental. If you are upgrading across multiple versions, make sure to follow the steps for each of them. +## Upgrading to Icinga DB Web v1.1 + +**Breaking Changes** + +We've extended our filter syntax to include new signs for *like* and *unlike* comparisons. These are `~` and `!~`, +respectively. The *equal* (`=`) and *unequal* (`!=`) operators won't perform any wildcard matching anymore due to +this. If you have dashboards, navigation items or bookmarks that attempt to perform wildcard matching with *equal*/ +*unequal* comparisons, the migration widget in the top right will toggle and suggest you an automatically transformed +alternative. If you have restrictions set up which do this, you'll have to manually adjust them and replace `=` with +`~` and `!=` with `!~`. + +Please note that due to our release process, this change already affects installations of Icinga DB Web v1.0.x. + ## Upgrading to Icinga DB Web v1.0 **Requirements** diff --git a/module.info b/module.info index e81510734..5bdaf8be7 100644 --- a/module.info +++ b/module.info @@ -1,6 +1,6 @@ Module: icingadb -Version: 1.0.2 +Version: 1.1.0 Requires: - Libraries: icinga-php-library (>=0.10.0), icinga-php-thirdparty (>=0.11.0) + Libraries: icinga-php-library (>=0.13.0), icinga-php-thirdparty (>=0.12.0) Description: Icinga DB Web UI for Icinga DB – Provides a graphical interface to your Icinga monitoring