From 322f067e70d7f6a09956cb6cbbfba4c7d1af274d Mon Sep 17 00:00:00 2001 From: Stanislav Kutasevits Date: Wed, 19 Nov 2025 11:25:09 +0200 Subject: [PATCH 1/4] fix DatafordelerBase missing configuration keys --- CHANGELOG.md | 2 ++ src/Plugin/os2web/DataLookup/DatafordelerBase.php | 10 ++++++++++ 2 files changed, 12 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ce148e..d59bb03 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +* Fixing DatafordelerBase missing configuration keys. + ## [3.0.2] - 2025-10-28 * [PR-27](https://github.com/OS2web/os2web_datalookup/pull/27) diff --git a/src/Plugin/os2web/DataLookup/DatafordelerBase.php b/src/Plugin/os2web/DataLookup/DatafordelerBase.php index 4d39fae..6d7fdce 100644 --- a/src/Plugin/os2web/DataLookup/DatafordelerBase.php +++ b/src/Plugin/os2web/DataLookup/DatafordelerBase.php @@ -37,6 +37,16 @@ public function __construct( $this->init(); } + /** + * {@inheritdoc} + */ + public function defaultConfiguration(): array { + return [ + 'cert_path_live' => '', + 'cert_passphrase_live' => '' + ] + parent::defaultConfiguration(); + } + /** * {@inheritdoc} */ From afbb8fd1806176faae3ff480b7984f470f7e2143 Mon Sep 17 00:00:00 2001 From: Stanislav Kutasevits Date: Wed, 19 Nov 2025 11:27:12 +0200 Subject: [PATCH 2/4] Preparing 3.0.3 --- CHANGELOG.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d59bb03..5be1890 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -* Fixing DatafordelerBase missing configuration keys. +## [3.0.3] - 2025-11-19 + +* [PR-28](https://github.com/OS2web/os2web_datalookup/pull/28) + Fixing DatafordelerBase missing configuration keys. ## [3.0.2] - 2025-10-28 From dc68f67c5044bc365483f3b32055e9fe0a47b8e7 Mon Sep 17 00:00:00 2001 From: Stanislav Kutasevits Date: Wed, 19 Nov 2025 11:28:57 +0200 Subject: [PATCH 3/4] Formatting fix --- src/Plugin/os2web/DataLookup/DatafordelerBase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Plugin/os2web/DataLookup/DatafordelerBase.php b/src/Plugin/os2web/DataLookup/DatafordelerBase.php index 6d7fdce..2b87573 100644 --- a/src/Plugin/os2web/DataLookup/DatafordelerBase.php +++ b/src/Plugin/os2web/DataLookup/DatafordelerBase.php @@ -43,7 +43,7 @@ public function __construct( public function defaultConfiguration(): array { return [ 'cert_path_live' => '', - 'cert_passphrase_live' => '' + 'cert_passphrase_live' => '', ] + parent::defaultConfiguration(); } From 839c83abc98a2dd290d8be9e6ebde0a741f80ba1 Mon Sep 17 00:00:00 2001 From: Stanislav Kutasevits Date: Wed, 19 Nov 2025 11:32:11 +0200 Subject: [PATCH 4/4] Formatting fix --- src/Plugin/os2web/DataLookup/DatafordelerBase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Plugin/os2web/DataLookup/DatafordelerBase.php b/src/Plugin/os2web/DataLookup/DatafordelerBase.php index 2b87573..f89fb96 100644 --- a/src/Plugin/os2web/DataLookup/DatafordelerBase.php +++ b/src/Plugin/os2web/DataLookup/DatafordelerBase.php @@ -44,7 +44,7 @@ public function defaultConfiguration(): array { return [ 'cert_path_live' => '', 'cert_passphrase_live' => '', - ] + parent::defaultConfiguration(); + ] + parent::defaultConfiguration(); } /**