From aa49fb27cd6f8f2636061a0f19916ec7e246555e Mon Sep 17 00:00:00 2001 From: Mathijs de Ruiter <33999622+EUCTechTopics@users.noreply.github.com> Date: Thu, 10 Apr 2025 14:13:16 +0200 Subject: [PATCH 1/2] Added 'present' to noValueOperators (#40) --- PSIdentityNow/Private/Test-IDNWFilter.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PSIdentityNow/Private/Test-IDNWFilter.ps1 b/PSIdentityNow/Private/Test-IDNWFilter.ps1 index f5e2d29..2710d5b 100644 --- a/PSIdentityNow/Private/Test-IDNWFilter.ps1 +++ b/PSIdentityNow/Private/Test-IDNWFilter.ps1 @@ -29,7 +29,7 @@ function Test-IDNWFilter { $operator = $Filter['operator'].ToLower() # Operators that don't require a 'value' - $noValueOperators = @('pr', 'isnull') + $noValueOperators = @('pr', 'present', 'isnull') if ($operator -in $noValueOperators) { if ($Filter.ContainsKey('value') -and $null -ne $Filter['value']) { From 78c87dc60df625be3887591fc9144c40d17c0118 Mon Sep 17 00:00:00 2001 From: Mathijs de Ruiter <33999622+EUCTechTopics@users.noreply.github.com> Date: Thu, 10 Apr 2025 14:27:35 +0200 Subject: [PATCH 2/2] Version 0.5.1 (#41) --- CHANGELOG.md | 8 ++++++++ PSIdentityNow/PSIdentityNow.psd1 | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e795461..480d8d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) +## [0.5.1] - 2025-04-10 + +### Fixed + +- Added 'present' to noValueOperators in Test-IDNWFilter ([#40](https://github.com/EUCTechTopics/PSIdentityNow/pull/40)) + +[0.5.1]: https://github.com/EUCTechTopics/PSIdentityNow/releases/tag/v0.5.1 + ## [0.5.0] - 2025-03-12 ### Changed diff --git a/PSIdentityNow/PSIdentityNow.psd1 b/PSIdentityNow/PSIdentityNow.psd1 index 924b115..f02e9c9 100644 --- a/PSIdentityNow/PSIdentityNow.psd1 +++ b/PSIdentityNow/PSIdentityNow.psd1 @@ -12,7 +12,7 @@ RootModule = 'PSIdentityNow.psm1' # Version number of this module. - ModuleVersion = '0.5.0' + ModuleVersion = '0.5.1' # Supported PSEditions CompatiblePSEditions = 'Core'