diff --git a/automatic/googlechrome/googlechrome.nuspec b/automatic/googlechrome/googlechrome.nuspec index e7cf91ac8d7..38ef56eb9ce 100644 --- a/automatic/googlechrome/googlechrome.nuspec +++ b/automatic/googlechrome/googlechrome.nuspec @@ -3,7 +3,7 @@ GoogleChrome - 120.0.6099.283 + 121.0.6167.160 Google Chrome chocolatey-community Google LLC. diff --git a/automatic/googlechrome/tools/chocolateyInstall.ps1 b/automatic/googlechrome/tools/chocolateyInstall.ps1 index 625b2ede419..47efd69e4da 100644 --- a/automatic/googlechrome/tools/chocolateyInstall.ps1 +++ b/automatic/googlechrome/tools/chocolateyInstall.ps1 @@ -1,7 +1,7 @@ $toolsPath = Split-Path $MyInvocation.MyCommand.Definition . $toolsPath\helpers.ps1 -$version = '120.0.6099.283' +$version = '121.0.6167.160' if ($version -eq (Get-ChromeVersion)) { Write-Host "Google Chrome $version is already installed." return diff --git a/automatic/opera/opera.nuspec b/automatic/opera/opera.nuspec index bfbafb33507..a2dae0dea35 100644 --- a/automatic/opera/opera.nuspec +++ b/automatic/opera/opera.nuspec @@ -3,7 +3,7 @@ Opera - 106.0.4998.70 + 107.0.5045.15 Opera chocolatey-community Opera @@ -28,7 +28,7 @@ For example: `--params '"/NoAutostart /NoDesktopShortcut /NoTaskbarShortcut"'` - **If the package is out of date please check [Version History](#versionhistory) for the latest submitted version. If you have a question, please ask it in [Chocolatey Community Package Discussions](https://github.com/chocolatey-community/chocolatey-packages/discussions) or raise an issue on the [Chocolatey Community Packages Repository](https://github.com/chocolatey-community/chocolatey-packages/issues) if you have problems with the package. Disqus comments will generally not be responded to.** ]]> The Opera web browser makes the Web fast and fun, giving you a better web browser experience on any computer. - https://blogs.opera.com/desktop/changelog-for-106/#b4998.70 + https://blogs.opera.com/desktop/changelog-for-107/#b5045.15 browser opera cross-platform internet admin https://github.com/chocolatey-community/chocolatey-packages/tree/master/automatic/opera diff --git a/automatic/opera/tools/chocolateyInstall.ps1 b/automatic/opera/tools/chocolateyInstall.ps1 index 105688efd17..a0d9d2ae55e 100644 --- a/automatic/opera/tools/chocolateyInstall.ps1 +++ b/automatic/opera/tools/chocolateyInstall.ps1 @@ -11,17 +11,17 @@ $parameters += if ($pp.NoTaskbarShortcut) { " /pintotaskbar=0"; Write-Host "Oper $packageArgs = @{ packageName = $env:ChocolateyPackageName fileType = 'exe' - url = 'https://get.geo.opera.com/pub/opera/desktop/106.0.4998.70/win/Opera_106.0.4998.70_Setup.exe' - url64 = 'https://get.geo.opera.com/pub/opera/desktop/106.0.4998.70/win/Opera_106.0.4998.70_Setup_x64.exe' - checksum = '94911493fe7182edad1c67698536c9b1d2de8592a1454f1e122722cb1ef7955c' - checksum64 = 'ee4a8a9cbe842ebd1edf6d7f7bf2b2c57fb5afff3d7f89a7923d925bd247a1f2' + url = 'https://get.geo.opera.com/pub/opera/desktop/107.0.5045.15/win/Opera_107.0.5045.15_Setup.exe' + url64 = 'https://get.geo.opera.com/pub/opera/desktop/107.0.5045.15/win/Opera_107.0.5045.15_Setup_x64.exe' + checksum = 'b5aa3be833d34531fa9330ab43b8e4254cedd7dc082145dca7c2ec1b24ef8926' + checksum64 = '252bea88f4c47e7a16330150cae78929f553926ab23608323f910a1da14eb56e' checksumType = 'sha256' checksumType64 = 'sha256' silentArgs = '/install /silent /launchopera=0 /setdefaultbrowser=0 /allusers=1' + $parameters validExitCodes = @(0) } -$version = '106.0.4998.70' +$version = '107.0.5045.15' if (!$Env:ChocolateyForce -and (IsVersionAlreadyInstalled $version)) { Write-Output "Opera $version is already installed. Skipping download and installation." }