Skip to content

v2.4 - New CI

Choose a tag to compare

@gdbarron gdbarron released this 08 Jun 00:50
· 125 commits to master since this release
b19aab3

2.4

  • Add New-ServiceNowConfigurationItem, #109
  • Add grouping operators -and and -group as well as comparison operators -startwith and -endswith to Get-ServiceNowRecord -Filter to keep with the -operator standard
  • Add tab ahead/completion for the -Table property in Get-ServiceNowRecord. This will allow you to cycle through the different tables the module is aware of. The values are the 'common' names, not table names so it's easier to understand for beginners. You can also provide any other table name ad hoc.
  • Add Change Task to formatter and tab ahead
  • Fix null index error when executing New-ServiceNowQuery without providing a value for -Sort
  • Fix #136 to account for PS v7.x Invoke-WebRequest response headers all being arrays

2.3.2

  • Added ability to pipe to Add-ServiceNowAttachment and Get-ServiceNowAttachmentDetail. For example, New-ServiceNowIncident @params -PassThru | Add-ServiceNowAttachment -File MyFile.txt. This will create an incident and add an attachment in one step.

2.3.1

  • Fix query operator -notin and -notlike which had a missing space
  • Move verbose logging message in Invoke-ServiceNowRestMethod for number of records so it always shows. This is helpful when you change a filter and can see how many records would be returned without actually returning them.