Release Icinga DB Version 1.5.1

This commit is contained in:
Alvar Penning 2025-12-15 14:38:04 +01:00
parent bf202a124f
commit dd12facfa4
No known key found for this signature in database
2 changed files with 17 additions and 1 deletions

View file

@ -1,5 +1,21 @@
# Icinga DB Changelog
## 1.5.1 (2025-12-15)
This Icinga DB release addresses the issue of leaking SQL prepared statements when Icinga DB is configured as a source for Icinga Notifications.
Each time the custom variables for an Icinga Notifications event were fetched, a new prepared statement was executed by the database.
Unfortunately, this prepared statement was not closed, resulting in an increasing number of open prepared statements until the database refuses to create any more.
This effectively blocked both Icinga DB and potentially the entire database management system.
This bug does not affect those who are not using the Icinga Notifications source.
Additionally, dependencies were updated.
* Close Prepared Statement in Icinga Notifications Source. #1051
* Use `icinga/icinga2:edge` container image for testing. #1048
* Update dependencies. [11 times](https://github.com/Icinga/icingadb/pulls?q=is%3Apr+milestone%3A1.5.1+label%3Adependencies)
## 1.5.0 (2025-11-18)
The focus of this Icinga DB release is an integration with [Icinga Notifications](https://icinga.com/docs/icinga-notifications/latest/),

View file

@ -7,4 +7,4 @@ import (
// Version contains version and Git commit information.
//
// The placeholders are replaced on `git archive` using the `export-subst` attribute.
var Version = version.Version("1.5.0", "$Format:%(describe)$", "$Format:%H$")
var Version = version.Version("1.5.1", "$Format:%(describe)$", "$Format:%H$")