From 3f92b59033b6fe821099b0e7d7b42587bf46c6cd Mon Sep 17 00:00:00 2001 From: Sebastian Bernauer Date: Tue, 21 Apr 2026 10:55:18 +0200 Subject: [PATCH] docs: Add changelog entry for generic database connections --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 050631da..5837b644 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,12 @@ All notable changes to this project will be documented in this file. - BREAKING: `configOverrides` now only accepts the supported config file names `hive-site.xml` and `security.properties`. Previously arbitrary keys were silently accepted but ignored ([#695]). - Document Helm deployed RBAC permissions and remove unnecessary permissions ([#693]). - Bump `stackable-operator` to 0.110.0 and `kube` to 3.1.0 ([#695]). +- BREAKING: Implement generic database connection. + This means you need to replace your simple database connection string with a typed struct. + This struct is consistent between different CRDs, so that you can easily copy/paste it between stacklets. + Read on the [Hive database documentation](https://docs.stackable.tech/home/nightly/hive/usage-guide/database-driver) for details ([#674]). +[#674]: https://github.com/stackabletech/hive-operator/pull/674 [#693]: https://github.com/stackabletech/hive-operator/pull/693 [#695]: https://github.com/stackabletech/hive-operator/pull/695