Skip to content

Commit 0070c80

Browse files
authored
Release v2.12.5 (#5391)
2 parents 8c5ffa1 + 5f60211 commit 0070c80

File tree

11 files changed

+47
-11
lines changed

11 files changed

+47
-11
lines changed

.mailmap

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ Florian Strohmaier <[email protected]> <[email protected]>
1717
Florian Strohmaier <[email protected]> <[email protected]>
1818
1919
Jannis Moßhammer <[email protected]>
20+
2021
2122
2223
@@ -42,5 +43,6 @@ Thomas Gelf <[email protected]> <[email protected]>
4243
4344
4445
Ravi Kumar Kempapura Srinivasa <[email protected]> <[email protected]>
46+
Ravi Kumar Kempapura Srinivasa <[email protected]> <[email protected]>
4547
Sukhwinder Dhillon <[email protected]> <[email protected]>
4648
Sukhwinder Dhillon <[email protected]> <[email protected]>

AUTHORS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,12 @@ Ian Shearin <[email protected]>
5454
5555
Janne Heß <[email protected]>
5656
Jannis Moßhammer <[email protected]>
57+
Jan Schuppik <[email protected]>
5758
Jennifer Mourek <[email protected]>
5859
Jiri Pejchal <[email protected]>
5960
Joe Doherty <[email protected]>
6061
Johannes Meyer <[email protected]>
62+
Johannes Rauh <[email protected]>
6163
Joonas Kylmälä <[email protected]>
6264
Jorge Vallecillo <[email protected]>
6365
@@ -73,6 +75,7 @@ Marc DeTrano <[email protected]>
7375
Marcel Weinberg <[email protected]>
7476
Marcus Cobden <[email protected]>
7577
Marian Rainer-Harbach <[email protected]>
78+
7679
Mario Rimann <[email protected]>
7780
Marius Hein <[email protected]>
7881
Markus Frosch <[email protected]>
@@ -125,6 +128,7 @@ Rune Darrud <[email protected]>
125128
Russell Kubik <[email protected]>
126129
Sander Ferdinand <[email protected]>
127130
sant-swedge <[email protected]>
131+
128132
Simone Orsi <[email protected]>
129133
130134
Sukhwinder Dhillon <[email protected]>

CHANGELOG.md

Lines changed: 33 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,36 @@ Please make sure to always read our [Upgrading](doc/80-Upgrading.md) documentati
44

55
## What's New
66

7+
### What's New in Version 2.12.5
8+
9+
You can find all issues related to this release on our [Roadmap](https://github.com/Icinga/icingaweb2/milestone/85?closed=1).
10+
11+
#### PHP 8.4 Support
12+
13+
We're again a little behind schedule, but now we support PHP 8.4! This means that installations on Ubuntu 25.04 and
14+
Fedora 42+ can now install Icinga Web without worrying about PHP related incompatibilities. Icinga packages will be
15+
available in the next few days.
16+
17+
#### Good Things Take Time
18+
19+
There's only a single (notable) recent issue that is fixed with this release. All the others are a bit older.
20+
21+
* External URLs set up as dashlets are not *embedded* the same as navigation items [#5346](https://github.com/Icinga/icingaweb2/issues/5346)
22+
23+
But the team sat together a few weeks ago and fixed a bug here and there. And of course, also in Icinga Web!
24+
25+
* Users who are not allowed to change the theme, cannot change the theme mode either [#5385](https://github.com/Icinga/icingaweb2/issues/5385)
26+
* Filtering for older-than events with relative time does not work [#5263](https://github.com/Icinga/icingaweb2/issues/5263)
27+
* External logout not working from the navigation dashboard [#5000](https://github.com/Icinga/icingaweb2/issues/5000)
28+
* Empty values are NULL in CSV exports [#5350](https://github.com/Icinga/icingaweb2/issues/5350)
29+
30+
#### Breaking, Somewhat
31+
32+
This is mainly for developers.
33+
34+
With the support of PHP 8.4, we introduced a new environment variable, `ICINGAWEB_ENVIRONMENT`. Unless set to `dev`,
35+
Icinga Web will not show nor log deprecation notices anymore.
36+
737
### What's New in Version 2.12.4
838

939
This is a hotfix release which fixes the following issue:
@@ -14,7 +44,7 @@ Database login broken after upgrade [#5343](https://github.com/Icinga/icingaweb2
1444

1545
**Notice:** This is a security release. It is recommended to upgrade _immediately_.
1646

17-
You can find all issues related to this release on our Roadmap.
47+
You can find all issues related to this release on our [Roadmap](https://github.com/Icinga/icingaweb2/milestone/83?closed=1).
1848

1949
#### Vulnerabilities, Closed
2050

@@ -47,7 +77,7 @@ noticed since v2.12.2, sorry that it took so long :)
4777

4878
### What's New in Version 2.12.2
4979

50-
You can find all issues related to this release on our Roadmap.
80+
You can find all issues related to this release on our [Roadmap](https://github.com/Icinga/icingaweb2/milestone/81?closed=1).
5181

5282
#### General Fixes
5383

@@ -103,7 +133,7 @@ but it’s now slightly improved.
103133

104134
### What's New in Version 2.12.1
105135

106-
You can find all issues related to this release on our Roadmap.
136+
You can find all issues related to this release on our [Roadmap](https://github.com/Icinga/icingaweb2/milestone/80?closed=1).
107137

108138
#### PHP 8.3 Support
109139

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v2.12.4
1+
v2.12.5

library/Icinga/Application/Version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*/
99
class Version
1010
{
11-
const VERSION = '2.12.4';
11+
const VERSION = '2.12.5';
1212

1313
/**
1414
* Get the version of this instance of Icinga Web 2

modules/doc/module.info

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
Module: doc
2-
Version: 2.12.4
2+
Version: 2.12.5
33
Description: Documentation module
44
Extracts, shows and exports documentation for Icinga Web 2 and its modules.

modules/migrate/module.info

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Module: migrate
2-
Version: 2.12.4
2+
Version: 2.12.5
33
Description: Migrate module
44
This module was introduced with the domain-aware authentication feature in version 2.5.0.
55
It helps you migrating users and user configurations according to a given domain.

modules/monitoring/module.info

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Module: monitoring
2-
Version: 2.12.4
2+
Version: 2.12.5
33
Description: Icinga monitoring module
44
IDO accessor and UI for your monitoring. This is the initial instalment for a
55
graphical presentation of Icinga environments. The predecessor of Icinga DB.

modules/setup/module.info

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Module: setup
2-
Version: 2.12.4
2+
Version: 2.12.5
33
Description: Setup module
44
Web based wizard for setting up Icinga Web 2 and its modules.
55
This includes the data backends (e.g. relational database, LDAP),

modules/test/module.info

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Module: test
2-
Version: 2.12.4
2+
Version: 2.12.5
33
Description: Translation module
44
This module allows developers to run (unit) tests against Icinga Web 2 and
55
any of its modules. Usually you do not need to enable this.

0 commit comments

Comments
 (0)