Skip to content

Commit 2a2e0cb

Browse files
committed
Update manifest to 3.4.0
1 parent cb403ee commit 2a2e0cb

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 3.4.0
2+
- Add `New-ServiceNowChangeTask`, [#103](https://github.com/Snow-Shell/servicenow-powershell/issues/103)
3+
- Add GraphQL support including `New-ServiceNowSession -GraphQL` and `Invoke-ServiceNowGraphQL`, the latter is a WIP
4+
- 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`
5+
16
## 3.3.0
27
- 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.
38
- SNOW_SERVER: the ServiceNow instance, eg. instance.service-now.com
@@ -158,3 +163,4 @@ Be able to reference types from this config per table, removing the need to have
158163

159164

160165

166+

ServiceNow/ServiceNow.psd1

+4-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Generated by: Sam Martin Rick Arroues Greg Brownstein
55
#
6-
# Generated on: 06/21/2022
6+
# Generated on: 07/18/2022
77
#
88

99
@{
@@ -12,7 +12,7 @@
1212
RootModule = 'ServiceNow.psm1'
1313

1414
# Version number of this module.
15-
ModuleVersion = '3.4'
15+
ModuleVersion = '3.4.0'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()
@@ -82,7 +82,8 @@ FunctionsToExport = 'Get-ServiceNowRecordInterim', 'New-ServiceNowConfigurationI
8282
'Remove-ServiceNowAttachment', 'Remove-ServiceNowRecord',
8383
'Update-ServiceNowChangeRequest', 'Update-ServiceNowIncident',
8484
'Update-ServiceNowRequestedItem', 'Update-ServiceNowRecord',
85-
'Export-ServiceNowRecord', 'Invoke-ServiceNowGraphQL', 'New-ServiceNowChangeTask'
85+
'Export-ServiceNowRecord', 'Invoke-ServiceNowGraphQL',
86+
'New-ServiceNowChangeTask'
8687

8788
# 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.
8889
CmdletsToExport = @()

0 commit comments

Comments
 (0)