diff --git a/postgresql/postgresql.json b/postgresql/postgresql.json index e2b25d87..9a9fa7dd 100644 --- a/postgresql/postgresql.json +++ b/postgresql/postgresql.json @@ -4,7 +4,7 @@ "9.6": "9.6.24.1", "10.10": "10.10", "11.5": "11.5", - "postgresql": "15.1.1", + "postgresql": "15.2", "postgresql-9.4": "9.4.26", "postgresql-10.10": "10.10", "postgresql-9.5": "9.5.25.1", @@ -126,5 +126,17 @@ "postgresql-14.6": "14.6.2", "14.6": "14.6.2", "postgresql-15.1": "15.1.1", - "15.1": "15.1.1" + "15.1": "15.1.1", + "postgresql-9.3": "9.3.25", + "9.3": "9.3.25", + "postgresql-11.19": "11.19", + "11.19": "11.19", + "postgresql-12.14": "12.14", + "12.14": "12.14", + "postgresql-13.10": "13.10", + "13.10": "13.10", + "postgresql-14.7": "14.7", + "14.7": "14.7", + "postgresql-15.2": "15.2", + "15.2": "15.2" } diff --git a/postgresql/postgresql.nuspec b/postgresql/postgresql.nuspec index b608e35e..3eb9f478 100644 --- a/postgresql/postgresql.nuspec +++ b/postgresql/postgresql.nuspec @@ -1,8 +1,8 @@ - postgresql14 - 14.6.2 + postgresql15 + 15.2 PostgreSQL PostgreSQL Global Development Group majkinetor, cole.mike @@ -88,7 +88,7 @@ cinst postgresql12 --force ``` ]]> PostgreSQL is an object-relational database management system - https://www.postgresql.org/docs/14/static/release.html + https://www.postgresql.org/docs/15/static/release.html Copyright © 1996-2019 The PostgreSQL Global Development Group foss cross-platform postgres postgresql sql relational database admin https://github.com/postgres/postgres diff --git a/postgresql/tools/chocolateyInstall.ps1 b/postgresql/tools/chocolateyInstall.ps1 index e36c5c15..8d8684dd 100644 --- a/postgresql/tools/chocolateyInstall.ps1 +++ b/postgresql/tools/chocolateyInstall.ps1 @@ -19,15 +19,15 @@ if ($pp.Port) { Write-Host "Using port: $($pp.Port)"; $silentArgs.ServerPort = $ $packageArgs = @{ packageName = $Env:ChocolateyPackageName fileType = 'exe' - url64 = 'https://get.enterprisedb.com/postgresql/postgresql-14.6-2-windows-x64.exe' - checksum64 = '566D841ADBBED5DBE899396359D29E0890EC8E240E164BD3AA2BBF5D1DB06052' + url64 = 'https://get.enterprisedb.com/postgresql/postgresql-15.2-1-windows-x64.exe' + checksum64 = 'BE866F4B4FE2C6E6F66814CE487474AF64597ADABB981A9F97499EB968CEE054' checksumType64 = 'sha256' url = '' checksum = '' checksumType32 = 'sha256' silentArgs = ($silentArgs.Keys | % { "--{0} {1}" -f $_.Tolower(), $silentArgs.$_}) -join ' ' validExitCodes = @(0) - softwareName = 'PostgreSQL 14*' + softwareName = 'PostgreSQL 15*' } Install-ChocolateyPackage @packageArgs Write-Host "Installation log: $Env:TEMP\install-postgresql.log" diff --git a/postgresql/tools/chocolateyUninstall.ps1 b/postgresql/tools/chocolateyUninstall.ps1 index 32e80aed..ffb88b69 100644 --- a/postgresql/tools/chocolateyUninstall.ps1 +++ b/postgresql/tools/chocolateyUninstall.ps1 @@ -1,7 +1,7 @@ $ErrorActionPreference = 'Stop' $packageName = $Env:ChocolateyPackageName -$softwareNamePattern = 'PostgreSQL 14*' +$softwareNamePattern = 'PostgreSQL 15*' [array] $key = Get-UninstallRegistryKey $softwareNamePattern if ($key.Count -eq 1) {