Skip to content

Commit b3fc819

Browse files
committed
Update manifest to 3.1.4
1 parent 10ddb01 commit b3fc819

File tree

2 files changed

+79
-27
lines changed

2 files changed

+79
-27
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 3.1.4
2+
- Add email type to custom variables, [#173](https://github.com/Snow-Shell/servicenow-powershell/issues/173)
3+
4+
15
## 3.1.3
26
- Fix [#167](https://github.com/Snow-Shell/servicenow-powershell/issues/167), fix ServiceNowTable not being populated on Linux due to file name case
37

@@ -106,3 +110,4 @@ Be able to reference types from this config per table, removing the need to have
106110
- Add Get-ServiceNowAttachment
107111
- Add Get-ServiceNowAttachmentDetail
108112
- Add Remove-ServiceNowAttachment
113+

ServiceNow/ServiceNow.psd1

Lines changed: 74 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,27 @@
1-
1+
#
2+
# Module manifest for module 'ServiceNow'
3+
#
4+
# Generated by: Sam Martin Rick Arroues Greg Brownstein
5+
#
6+
# Generated on: 01/18/2022
7+
#
8+
29
@{
310

411
# Script module or binary module file associated with this manifest.
512
RootModule = 'ServiceNow.psm1'
613

714
# Version number of this module.
8-
ModuleVersion = '3.1.3'
15+
ModuleVersion = '3.1.4'
16+
17+
# Supported PSEditions
18+
# CompatiblePSEditions = @()
919

1020
# ID used to uniquely identify this module
1121
GUID = 'b90d67da-f8d0-4406-ad74-89d169cd0633'
1222

1323
# Author of this module
14-
Author = 'Sam Martin', 'Rick Arroues', 'Greg Brownstein'
24+
Author = 'Sam Martin Rick Arroues Greg Brownstein'
1525

1626
# Company or vendor of this module
1727
CompanyName = 'None'
@@ -22,23 +32,23 @@ Copyright = '(c) 2015-2021 Snow-Shell. All rights reserved.'
2232
# Description of the functionality provided by this module
2333
Description = 'Automate against ServiceNow service and asset management. This module can be used standalone or with Azure Automation.'
2434

25-
# Minimum version of the Windows PowerShell engine required by this module
26-
# PowerShellVersion = '3.0'
35+
# Minimum version of the PowerShell engine required by this module
36+
# PowerShellVersion = ''
2737

28-
# Name of the Windows PowerShell host required by this module
38+
# Name of the PowerShell host required by this module
2939
# PowerShellHostName = ''
3040

31-
# Minimum version of the Windows PowerShell host required by this module
41+
# Minimum version of the PowerShell host required by this module
3242
# PowerShellHostVersion = ''
3343

34-
# Minimum version of Microsoft .NET Framework required by this module
44+
# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
3545
# DotNetFrameworkVersion = ''
3646

37-
# Minimum version of the common language runtime (CLR) required by this module
38-
# CLRVersion = ''
47+
# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
48+
# ClrVersion = ''
3949

4050
# Processor architecture (None, X86, Amd64) required by this module
41-
# ProcessorArchitecture = 'None'
51+
# ProcessorArchitecture = ''
4252

4353
# Modules that must be imported into the global environment prior to importing this module
4454
# RequiredModules = @()
@@ -53,20 +63,42 @@ Description = 'Automate against ServiceNow service and asset management. This m
5363
# TypesToProcess = @()
5464

5565
# Format files (.ps1xml) to be loaded when importing this module
56-
FormatsToProcess = @('ServiceNow.format.ps1xml')
66+
FormatsToProcess = 'ServiceNow.format.ps1xml'
5767

5868
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
5969
NestedModules = @()
6070

61-
# Functions to export from this module
62-
FunctionsToExport = @('Get-ServiceNowRecordInterim','New-ServiceNowConfigurationItem','Get-ServiceNowRecord','New-ServiceNowSession','Add-ServiceNowAttachment','Get-ServiceNowAttachment','Export-ServiceNowAttachment','Get-ServiceNowChangeRequest','Get-ServiceNowConfigurationItem','Get-ServiceNowIncident','Get-ServiceNowRequest','Get-ServiceNowRequestedItem','Get-ServiceNowTable','Get-ServiceNowTableEntry','Get-ServiceNowUser','Get-ServiceNowUserGroup','New-ServiceNowChangeRequest','New-ServiceNowIncident','New-ServiceNowQuery','New-ServiceNowRecord','Remove-ServiceNowAttachment','Remove-ServiceNowRecord','Update-ServiceNowChangeRequest','Update-ServiceNowIncident','Update-ServiceNowRequestedItem','Update-ServiceNowRecord')
63-
64-
# Variables to export from this module
65-
VariablesToExport = @('ServiceNowSession', 'ServiceNowOperator', 'ServiceNowTable')
66-
67-
AliasesToExport = @('gsnr','Get-ServiceNowIncident','Get-ServiceNowChangeRequest', 'Get-ServiceNowConfigurationItem', 'Get-ServiceNowRequest', 'Get-ServiceNowRequestedItem', 'Get-ServiceNowUser', 'Get-ServiceNowUserGroup','Update-ServiceNowNumber')
68-
69-
# List of all modules packaged with this module
71+
# Functions 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 functions to export.
72+
FunctionsToExport = 'Get-ServiceNowRecordInterim', 'New-ServiceNowConfigurationItem',
73+
'Get-ServiceNowRecord', 'New-ServiceNowSession',
74+
'Add-ServiceNowAttachment', 'Get-ServiceNowAttachment',
75+
'Export-ServiceNowAttachment', 'Get-ServiceNowChangeRequest',
76+
'Get-ServiceNowConfigurationItem', 'Get-ServiceNowIncident',
77+
'Get-ServiceNowRequest', 'Get-ServiceNowRequestedItem',
78+
'Get-ServiceNowTable', 'Get-ServiceNowTableEntry',
79+
'Get-ServiceNowUser', 'Get-ServiceNowUserGroup',
80+
'New-ServiceNowChangeRequest', 'New-ServiceNowIncident',
81+
'New-ServiceNowQuery', 'New-ServiceNowRecord',
82+
'Remove-ServiceNowAttachment', 'Remove-ServiceNowRecord',
83+
'Update-ServiceNowChangeRequest', 'Update-ServiceNowIncident',
84+
'Update-ServiceNowRequestedItem', 'Update-ServiceNowRecord'
85+
86+
# 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.
87+
CmdletsToExport = @()
88+
89+
# Variables to export from this module
90+
VariablesToExport = 'ServiceNowSession', 'ServiceNowOperator', 'ServiceNowTable'
91+
92+
# Aliases 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 aliases to export.
93+
AliasesToExport = 'gsnr', 'Get-ServiceNowIncident', 'Get-ServiceNowChangeRequest',
94+
'Get-ServiceNowConfigurationItem', 'Get-ServiceNowRequest',
95+
'Get-ServiceNowRequestedItem', 'Get-ServiceNowUser',
96+
'Get-ServiceNowUserGroup', 'Update-ServiceNowNumber'
97+
98+
# DSC resources to export from this module
99+
# DscResourcesToExport = @()
100+
101+
# List of all modules packaged with this module
70102
# ModuleList = @()
71103

72104
# List of all files packaged with this module
@@ -78,23 +110,38 @@ PrivateData = @{
78110
PSData = @{
79111

80112
# Tags applied to this module. These help with module discovery in online galleries.
81-
Tags = @('Azure','Automation','ServiceNow','PSModule')
113+
Tags = 'Azure','Automation','ServiceNow','PSModule'
82114

83115
# A URL to the license for this module.
84-
LicenseUri = 'https://github.com/Snow-Shell/servicenow-powershell/blob/master/LICENSE'
116+
LicenseUri = 'https://github.com/Snow-Shell/servicenow-powershell/blob/master/LICENSE'
85117

86118
# A URL to the main website for this project.
87-
ProjectUri = 'https://github.com/Snow-Shell/servicenow-powershell'
119+
ProjectUri = 'https://github.com/Snow-Shell/servicenow-powershell'
120+
121+
# A URL to an icon representing this module.
122+
# IconUri = ''
123+
124+
# ReleaseNotes of this module
125+
ReleaseNotes = 'https://github.com/Snow-Shell/servicenow-powershell/blob/master/CHANGELOG.md'
126+
127+
# Prerelease string of this module
128+
# Prerelease = ''
129+
130+
# Flag to indicate whether the module requires explicit user acceptance for install/update/save
131+
# RequireLicenseAcceptance = $false
132+
133+
# External dependent modules of this module
134+
# ExternalModuleDependencies = @()
88135

89-
ReleaseNotes = 'https://github.com/Snow-Shell/servicenow-powershell/blob/master/CHANGELOG.md'
90136
} # End of PSData hashtable
91137

92-
} # End of PrivateData hashtable
138+
} # End of PrivateData hashtable
93139

94140
# HelpInfo URI of this module
95-
# HelpInfoURI = 'https://github.com/Snow-Shell/servicenow-powershell'
141+
# HelpInfoURI = ''
96142

97143
# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
98144
# DefaultCommandPrefix = ''
99145

100146
}
147+

0 commit comments

Comments
 (0)