Bump deps for ntlm-auth and PSScriptAnalyzer (#55269)

pull/55243/head
Jordan Borean 6 years ago committed by GitHub
parent 65dcb4242a
commit 04cae4134f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -48,7 +48,7 @@ Function Exit-Json($obj)
} }
if (-not $obj.ContainsKey('changed')) { if (-not $obj.ContainsKey('changed')) {
Set-Attr $obj "changed" $false Set-Attr -obj $obj -name "changed" -value $false
} }
Write-Output $obj | ConvertTo-Json -Compress -Depth 99 Write-Output $obj | ConvertTo-Json -Compress -Depth 99
@ -79,11 +79,11 @@ Function Fail-Json($obj, $message = $null)
} }
# Still using Set-Attr for PSObject compatibility # Still using Set-Attr for PSObject compatibility
Set-Attr $obj "msg" $message Set-Attr -obj $obj -name "msg" -value $message
Set-Attr $obj "failed" $true Set-Attr -obj $obj -name "failed" -value $true
if (-not $obj.ContainsKey('changed')) { if (-not $obj.ContainsKey('changed')) {
Set-Attr $obj "changed" $false Set-Attr -obj $obj -name "changed" -value $false
} }
Write-Output $obj | ConvertTo-Json -Compress -Depth 99 Write-Output $obj | ConvertTo-Json -Compress -Depth 99

@ -191,7 +191,15 @@ function Present($path, $regexp, $line, $insertafter, $insertbefore, $create, $b
$result.backup = $result.backup_file $result.backup = $result.backup_file
} }
$after = WriteLines $lines $path $linesep $encodingobj $validate $check_mode; $writelines_params = @{
outlines = $lines
path = $path
linesep = $linesep
encodingobj = $encodingobj
validate = $validate
check_mode = $check_mode
}
$after = WriteLines @writelines_params;
if ($diff_support) { if ($diff_support) {
$result.diff.after = $after; $result.diff.after = $after;
@ -273,7 +281,15 @@ function Absent($path, $regexp, $line, $backup, $validate, $encodingobj, $linese
$result.backup = $result.backup_file $result.backup = $result.backup_file
} }
$after = WriteLines $left $path $linesep $encodingobj $validate $check_mode; $writelines_params = @{
outlines = $left
path = $path
linesep = $linesep
encodingobj = $encodingobj
validate = $validate
check_mode = $check_mode
}
$after = WriteLines @writelines_params;
if ($diff_support) { if ($diff_support) {
$result.diff.after = $after; $result.diff.after = $after;
@ -395,7 +411,22 @@ If ($state -eq "present") {
$insertafter = "EOF"; $insertafter = "EOF";
} }
Present $path $regexp $line $insertafter $insertbefore $create $backup $backrefs $validate $encodingobj $linesep $check_mode $diff_support; $present_params = @{
path = $path
regexp = $regexp
line = $line
insertafter = $insertafter
insertbefore = $insertbefore
create = $create
backup = $backup
backrefs = $backrefs
validate = $validate
encodingobj = $encodingobj
linesep = $linesep
check_mode = $check_mode
diff_support = $diff_support
}
Present @present_params;
} }
ElseIf ($state -eq "absent") { ElseIf ($state -eq "absent") {
@ -404,5 +435,16 @@ ElseIf ($state -eq "absent") {
Fail-Json @{} "one of line= or regexp= is required with state=absent"; Fail-Json @{} "one of line= or regexp= is required with state=absent";
} }
Absent $path $regexp $line $backup $validate $encodingobj $linesep $check_mode $diff_support; $absent_params = @{
path = $path
regexp = $regexp
line = $line
backup = $backup
validate = $validate
encodingobj = $encodingobj
linesep = $linesep
check_mode = $check_mode
diff_support = $diff_support
}
Absent @absent_params;
} }

@ -23,7 +23,7 @@ function Copy-Xml($dest, $src, $xmlorig) {
foreach ($childnode in $src.get_ChildNodes()) { foreach ($childnode in $src.get_ChildNodes()) {
if ($childnode.get_NodeType() -eq "Element") { if ($childnode.get_NodeType() -eq "Element") {
$newnode = $xmlorig.CreateElement($childnode.get_Name(), $xmlorig.get_DocumentElement().get_NamespaceURI()) $newnode = $xmlorig.CreateElement($childnode.get_Name(), $xmlorig.get_DocumentElement().get_NamespaceURI())
Copy-Xml $newnode $childnode $xmlorig Copy-Xml -dest $newnode -src $childnode -xmlorig $xmlorig
$dest.AppendChild($newnode) | Out-Null $dest.AppendChild($newnode) | Out-Null
} elseif ($childnode.get_NodeType() -eq "Text") { } elseif ($childnode.get_NodeType() -eq "Text") {
$dest.set_InnerText($childnode.get_InnerText()) $dest.set_InnerText($childnode.get_InnerText())
@ -126,7 +126,7 @@ if ($type -eq "element") {
} }
$child = $xmlorig.CreateElement($xmlchild.get_DocumentElement().get_Name(), $xmlorig.get_DocumentElement().get_NamespaceURI()) $child = $xmlorig.CreateElement($xmlchild.get_DocumentElement().get_Name(), $xmlorig.get_DocumentElement().get_NamespaceURI())
Copy-Xml $child $xmlchild.DocumentElement $xmlorig Copy-Xml -dest $child -src $xmlchild.DocumentElement -xmlorig $xmlorig
$node = $xmlorig.SelectSingleNode($xpath, $namespaceMgr) $node = $xmlorig.SelectSingleNode($xpath, $namespaceMgr)
if ($node.get_NodeType() -eq "Document") { if ($node.get_NodeType() -eq "Document") {

@ -101,13 +101,15 @@ class PslintTest(SanitySingleVersion):
'Information', 'Information',
'Warning', 'Warning',
'Error', 'Error',
'ParseError',
] ]
cwd = os.getcwd() + '/' cwd = os.getcwd() + '/'
# replace unicode smart quotes with ascii versions # replace unicode smart quotes and ellipsis with ascii versions
stdout = re.sub(u'[\u2018\u2019]', "'", stdout) stdout = re.sub(u'[\u2018\u2019]', "'", stdout)
stdout = re.sub(u'[\u201c\u201d]', '"', stdout) stdout = re.sub(u'[\u201c\u201d]', '"', stdout)
stdout = re.sub(u'[\u2026]', '...', stdout)
messages = json.loads(stdout) messages = json.loads(stdout)

@ -15,7 +15,7 @@ pytest < 3.3.0 ; python_version < '2.7' # pytest 3.3.0 drops support for python
pytest < 5.0.0 ; python_version == '2.7' # pytest 5.0.0 and later will no longer support python 2.7 pytest < 5.0.0 ; python_version == '2.7' # pytest 5.0.0 and later will no longer support python 2.7
pytest-forked < 1.0.2 ; python_version < '2.7' # pytest-forked 1.0.2 and later require python 2.7 or later pytest-forked < 1.0.2 ; python_version < '2.7' # pytest-forked 1.0.2 and later require python 2.7 or later
pytest-forked >= 1.0.2 ; python_version >= '2.7' # pytest-forked before 1.0.2 does not work with pytest 4.2.0+ (which requires python 2.7+) pytest-forked >= 1.0.2 ; python_version >= '2.7' # pytest-forked before 1.0.2 does not work with pytest 4.2.0+ (which requires python 2.7+)
ntlm-auth >= 1.0.6 # message encryption support ntlm-auth >= 1.3.0 # message encryption support using cryptography
requests < 2.20.0 ; python_version < '2.7' # requests 2.20.0 drops support for python 2.6 requests < 2.20.0 ; python_version < '2.7' # requests 2.20.0 drops support for python 2.6
requests-ntlm >= 1.1.0 # message encryption support requests-ntlm >= 1.1.0 # message encryption support
requests-credssp >= 0.1.0 # message encryption support requests-credssp >= 0.1.0 # message encryption support

@ -5,7 +5,7 @@ Set-StrictMode -Version 2.0
$ErrorActionPreference = "Stop" $ErrorActionPreference = "Stop"
Set-PSRepository -Name PSGallery -InstallationPolicy Trusted Set-PSRepository -Name PSGallery -InstallationPolicy Trusted
Install-Module -Name PSScriptAnalyzer -RequiredVersion 1.17.1 -Scope CurrentUser Install-Module -Name PSScriptAnalyzer -RequiredVersion 1.18.0 -Scope CurrentUser
# Installed the PSCustomUseLiteralPath rule # Installed the PSCustomUseLiteralPath rule
Install-Module -Name PSSA-PSCustomUseLiteralPath -RequiredVersion 0.1.1 -Scope CurrentUser Install-Module -Name PSSA-PSCustomUseLiteralPath -RequiredVersion 0.1.1 -Scope CurrentUser

@ -6,6 +6,12 @@ Set-StrictMode -Version 2.0
$ErrorActionPreference = "Stop" $ErrorActionPreference = "Stop"
$WarningPreference = "Stop" $WarningPreference = "Stop"
# Until https://github.com/PowerShell/PSScriptAnalyzer/issues/1217 is fixed we need to import Pester if it's
# available.
if (Get-Module -Name Pester -ListAvailable -ErrorAction SilentlyContinue) {
Import-Module -Name Pester
}
$LiteralPathRule = Import-Module -Name PSSA-PSCustomUseLiteralPath -PassThru $LiteralPathRule = Import-Module -Name PSSA-PSCustomUseLiteralPath -PassThru
$LiteralPathRulePath = Join-Path -Path $LiteralPathRule.ModuleBase -ChildPath $LiteralPathRule.RootModule $LiteralPathRulePath = Join-Path -Path $LiteralPathRule.ModuleBase -ChildPath $LiteralPathRule.RootModule

Loading…
Cancel
Save