Merge pull request #1053 from Icinga/release-1.5.1
Some checks failed
Compliance / compliance (push) Has been cancelled
Build and Publish Container Image / build-and-publish-container-image (push) Has been cancelled
Go / build-test (macos-latest) (push) Has been cancelled
Go / build-test (ubuntu-latest) (push) Has been cancelled
Go / lint (push) Has been cancelled
Go / vet (push) Has been cancelled
Go / fmt (push) Has been cancelled
Go / modtidy (push) Has been cancelled
Go / vendor-diff (push) Has been cancelled
Integration Tests / MySQL (push) Has been cancelled
Integration Tests / PostgreSQL (push) Has been cancelled
SQL / MySQL 5.5 (push) Has been cancelled
SQL / MySQL 5.6 (push) Has been cancelled
SQL / MariaDB 10.1 (push) Has been cancelled
SQL / MariaDB 10.2 (push) Has been cancelled
SQL / MariaDB 10.3 (push) Has been cancelled
SQL / MariaDB 10.4 (push) Has been cancelled
SQL / MariaDB 10.5 (push) Has been cancelled
SQL / MariaDB 10.6 (push) Has been cancelled
SQL / MariaDB 10.7 (push) Has been cancelled
SQL / MariaDB latest (push) Has been cancelled
SQL / MySQL 5.7 (push) Has been cancelled
SQL / MySQL 8 (push) Has been cancelled
SQL / MySQL latest (push) Has been cancelled
SQL / PostgreSQL 10 (push) Has been cancelled
SQL / PostgreSQL 11 (push) Has been cancelled
SQL / PostgreSQL 12 (push) Has been cancelled
SQL / PostgreSQL 13 (push) Has been cancelled
SQL / PostgreSQL 9.6 (push) Has been cancelled
SQL / PostgreSQL latest (push) Has been cancelled
Sync For-Container.md to Docker Hub / sync (push) Has been cancelled

Release Icinga DB Version 1.5.1
This commit is contained in:
Alvar 2025-12-15 14:18:08 +00:00 committed by GitHub
commit 7a66f3ad8b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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$")