Skip to content

Commit

Permalink
Update manifest to 3.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gdbarron committed Jul 18, 2022
1 parent cb403ee commit 2a2e0cb
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 3.4.0
- Add `New-ServiceNowChangeTask`, [#103](https://github.com/Snow-Shell/servicenow-powershell/issues/103)
- Add GraphQL support including `New-ServiceNowSession -GraphQL` and `Invoke-ServiceNowGraphQL`, the latter is a WIP
- Update custom variable format with `Get-ServiceNowRecord -IncludeCustomVariable`. The new format adds each custom variable as an object property as opposed to an array of hashtables. Old: `$response.CustomVariable.where{$_.name -eq 'mycustvar'}.value`, New: `$response.CustomVariable.mycustvar.value`. Access the new format with `-IncludeCustomVariable -New`

## 3.3.0
- Add docker image with each new build and [publish to dockerhub](https://hub.docker.com/repository/docker/gdbarron/servicenow-module). Add the below environment variables to `Get-ServiceNowAuth` for use with docker image, but could be used outside of it as well.
- SNOW_SERVER: the ServiceNow instance, eg. instance.service-now.com
Expand Down Expand Up @@ -158,3 +163,4 @@ Be able to reference types from this config per table, removing the need to have




7 changes: 4 additions & 3 deletions ServiceNow/ServiceNow.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Generated by: Sam Martin Rick Arroues Greg Brownstein
#
# Generated on: 06/21/2022
# Generated on: 07/18/2022
#

@{
Expand All @@ -12,7 +12,7 @@
RootModule = 'ServiceNow.psm1'

# Version number of this module.
ModuleVersion = '3.4'
ModuleVersion = '3.4.0'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down Expand Up @@ -82,7 +82,8 @@ FunctionsToExport = 'Get-ServiceNowRecordInterim', 'New-ServiceNowConfigurationI
'Remove-ServiceNowAttachment', 'Remove-ServiceNowRecord',
'Update-ServiceNowChangeRequest', 'Update-ServiceNowIncident',
'Update-ServiceNowRequestedItem', 'Update-ServiceNowRecord',
'Export-ServiceNowRecord', 'Invoke-ServiceNowGraphQL', 'New-ServiceNowChangeTask'
'Export-ServiceNowRecord', 'Invoke-ServiceNowGraphQL',
'New-ServiceNowChangeTask'

# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
CmdletsToExport = @()
Expand Down

0 comments on commit 2a2e0cb

Please sign in to comment.