You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/100-General/10-Changelog.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,6 +16,7 @@ Released closed milestones can be found on [GitHub](https://github.com/Icinga/ic
16
16
*[#729](https://github.com/Icinga/icinga-powershell-framework/issues/729) Fixes `Update-Icinga` to print an error in case a component is not installed, instead of silently continue
17
17
*[#734](https://github.com/Icinga/icinga-powershell-framework/issues/734) Fixes a scenario on which a JEA service could become orphaned while manually stopping the Icinga for Windows service, without gracefully shutting down JEA
18
18
*[#735](https://github.com/Icinga/icinga-powershell-framework/pull/735) Fixes an issue with filter for EventLog events, which did not properly handle multiple event id includes, causing empty results
19
+
*[#745](https://github.com/Icinga/icinga-powershell-framework/pull/745) Fixes an issue for service provider with service names not interpreted correctly in case it contains `[]`
Copy file name to clipboardExpand all lines: lib/icinga/exception/Icinga_IcingaExceptionEnums.psm1
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,8 @@
31
31
CimClassNameUnknown='The provided class name you try to fetch with Get-CimInstance is not known on this system.';
32
32
WmiObjectClassUnknown='The provided class name you try to fetch with Get-WmiObject is not known on this system.';
33
33
MSSQLCredentialHandling='The connection to MSSQL was not possible because your login credential was not correct.';
34
-
MSSQLCommandMissing='Failed to build a SQL query'
34
+
MSSQLCommandMissing='Failed to build a SQL query';
35
+
RegexError='A request was not handled properly because a provided regex could not be interpreted. Please validate your regex and try again. In case you are trying to access a ressource containing [], you will have to escape each symbol by using `. Example: myservice`[`]';
0 commit comments