From 2d57965bcacc303deb78c68770157b3e17a63962 Mon Sep 17 00:00:00 2001 From: Alvar Penning Date: Wed, 5 Mar 2025 09:04:08 +0100 Subject: [PATCH 1/2] Update AUTHORS > $ git log --use-mailmap --format='format:%aN <%aE>' v1.0.0..HEAD \ > | grep -v '^dependabot' >> AUTHORS > $ sort -uo AUTHORS AUTHORS --- AUTHORS | 1 + 1 file changed, 1 insertion(+) diff --git a/AUTHORS b/AUTHORS index 5f2666a9c..7ef61a530 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,5 +1,6 @@ Alexander A. Klimov Alvar Penning +Blerim Sheqa Eric Lippmann Feu Mourek Henrik Triem From bacf81197cfa66c61c007f6665ced5fd12162052 Mon Sep 17 00:00:00 2001 From: Alvar Penning Date: Thu, 27 Mar 2025 10:46:25 +0100 Subject: [PATCH 2/2] Release Icinga DB Version 1.3.0 --- CHANGELOG.md | 14 ++++++++++++++ internal/version.go | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 65002ca2d..276cf5099 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Icinga DB Changelog +## 1.3.0 (2025-03-XX) + +This is a maintenance release, integrating the container setup directly into Icinga DB. + +Most importantly, first-class support for configuring Icinga DB completely via environment variables has been added alongside YAML. +In addition, an optional automatic database schema import has been added, allowing an empty SQL database to be populated. +With these two features, the [docker-icingadb](https://github.com/Icinga/docker-icingadb) repository can now be sunsetted, integrating the `Containerfile` directly into the main repository. + +The following changes have been made. + +* Support loading configuration from both YAML files and environment variables. #831 +* Allow database schema import via command line argument flag. #901 +* Resolve SQL errors with reserved names in `icingadb-migrate` on older PostgreSQL versions. #885 + ## 1.2.1 (2024-12-18) This is a maintenance release that addresses HA issues and includes a number of other fixes. diff --git a/internal/version.go b/internal/version.go index c6be6755e..8fd9656cb 100644 --- a/internal/version.go +++ b/internal/version.go @@ -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.2.1", "$Format:%(describe)$", "$Format:%H$") +var Version = version.Version("1.3.0", "$Format:%(describe)$", "$Format:%H$")