diff --git a/doc/100-General/10-Changelog.md b/doc/100-General/10-Changelog.md index 904782b0..680a3f2e 100644 --- a/doc/100-General/10-Changelog.md +++ b/doc/100-General/10-Changelog.md @@ -11,6 +11,15 @@ Released closed milestones can be found on [GitHub](https://github.com/Icinga/ic [Issues and PRs](https://github.com/Icinga/icinga-powershell-framework/milestone/32) +## 1.12.3 (tbd) + +[Issues and PRs](https://github.com/Icinga/icinga-powershell-framework/milestone/35) + +### Bugfixes + +* [#718](https://github.com/Icinga/icinga-powershell-framework/issues/718) Fixes Icinga repository JSON validator to report the correct state of the validation status, in case the JSON is not valid + + ## 1.12.2 (2024-04-10) [Issues and PRs](https://github.com/Icinga/icinga-powershell-framework/milestone/34) diff --git a/lib/core/repository/Test-IcingaJSONObject.psm1 b/lib/core/repository/Test-IcingaJSONObject.psm1 index d06eb83e..eb01699e 100644 --- a/lib/core/repository/Test-IcingaJSONObject.psm1 +++ b/lib/core/repository/Test-IcingaJSONObject.psm1 @@ -47,5 +47,5 @@ function Test-IcingaJSONObject() } } - return $TRUE; + return $FALSE; }