Skip to content

Commit

Permalink
AU: 7 updated - dropbox Firefox nodejs nodejs.install openshift-cli p…
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey Community committed May 28, 2024
1 parent db7334b commit 899d957
Show file tree
Hide file tree
Showing 19 changed files with 240 additions and 240 deletions.
2 changes: 1 addition & 1 deletion automatic/dropbox/dropbox.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"beta": "200.3.7099-beta",
"stable": "199.4.6287"
"stable": "200.4.7134"
}
2 changes: 1 addition & 1 deletion automatic/dropbox/dropbox.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>dropbox</id>
<version>200.3.7099-beta</version>
<version>200.4.7134</version>
<title>Dropbox</title>
<authors>Dropbox</authors>
<owners>chocolatey-community,ferventcoder,the-running-dev</owners>
Expand Down
10 changes: 5 additions & 5 deletions automatic/dropbox/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ if (!$PSScriptRoot) {
}
. "$PSScriptRoot\helper.ps1"

$version = '200.3.7099'
$version = '200.4.7134'

if (!(IsVersionAlreadyInstalled $version)) {
$stop_dropbox = if (Get-Process -Name Dropbox -ErrorAction SilentlyContinue) { $false } else { $true }
Expand All @@ -13,10 +13,10 @@ if (!(IsVersionAlreadyInstalled $version)) {
$packageArgs = @{
packageName = $env:ChocolateyPackageName
softwareName = "Dropbox"
url = 'https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20200.3.7099%20Offline%20Installer.x86.exe'
url64 = 'https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20200.3.7099%20Offline%20Installer.x64.exe'
checksum = 'de910a596eee40bbf6af67091f9c20ecb37573e4391eb48547785e1f28e5de43'
checksum64 = 'f463985d11a49d63077d6a4898f0f2521abafccdc4a10fe5f1cf9dcf3e1f66b5'
url = 'https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20200.4.7134%20Offline%20Installer.x86.exe'
url64 = 'https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20200.4.7134%20Offline%20Installer.x64.exe'
checksum = '9dfb86b94e4605a8ab158f6cf0187e03ce24755cae8371a33e4af76c01f631f3'
checksum64 = '01b28250d95e3dba41bddacf5b4faadbbdd8966bb423a6c7789a1335303dfb8b'
fileType = 'exe'
checksumType = 'sha256'
checksumType64 = 'sha256'
Expand Down
2 changes: 1 addition & 1 deletion automatic/firefox/firefox.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"latest": "126.0",
"latest": "126.0.1",
"esr": "115.11.0"
}
4 changes: 2 additions & 2 deletions automatic/firefox/firefox.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<!-- Do not remove this test for UTF-8: if “Ω” doesn’t appear as greek uppercase omega letter enclosed in quotation marks, you should use an editor that supports UTF-8, not this one. -->
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<version>126.0</version>
<version>126.0.1</version>
<authors>Mozilla</authors>
<projectUrl>https://www.mozilla.org/en-US/firefox/new/</projectUrl>
<projectSourceUrl>https://hg.mozilla.org/mozilla-central/</projectSourceUrl>
Expand Down Expand Up @@ -63,7 +63,7 @@ Command-line options for installer configuration. See the [official page](https:
]]></description>
<summary>Bringing together all kinds of awesomeness to make browsing better for you</summary>
<tags>browser mozilla firefox admin foss cross-platform</tags>
<releaseNotes>https://www.mozilla.org/en-US/firefox/126.0/releasenotes/</releaseNotes>
<releaseNotes>https://www.mozilla.org/en-US/firefox/126.0.1/releasenotes/</releaseNotes>
<packageSourceUrl>https://github.com/chocolatey-community/chocolatey-packages/tree/master/automatic/firefox</packageSourceUrl>
<dependencies>
<dependency id="chocolatey-core.extension" version="1.3.3" />
Expand Down
408 changes: 204 additions & 204 deletions automatic/firefox/tools/LanguageChecksums.csv

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions automatic/firefox/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ $softwareName = 'Mozilla Firefox'

$pp = Get-PackageParameters

$alreadyInstalled = (AlreadyInstalled -product $softwareName -version '126.0')
$alreadyInstalled = (AlreadyInstalled -product $softwareName -version '126.0.1')

if (Get-32bitOnlyInstalled -product $softwareName) {
Write-Output $(
Expand Down Expand Up @@ -62,15 +62,15 @@ else {
softwareName = "$softwareName*"
Checksum = $checksums.Win32
ChecksumType = 'sha512'
Url = "https://download.mozilla.org/?product=firefox-126.0-ssl&os=win&lang=${locale}"
Url = "https://download.mozilla.org/?product=firefox-126.0.1-ssl&os=win&lang=${locale}"
silentArgs = "$sa /S"
validExitCodes = @(0)
}

if (!(Get-32bitOnlyInstalled($softwareName)) -and (Get-OSArchitectureWidth 64)) {
$packageArgs.Checksum64 = $checksums.Win64
$packageArgs.ChecksumType64 = 'sha512'
$packageArgs.Url64 = "https://download.mozilla.org/?product=firefox-126.0-ssl&os=win64&lang=${locale}"
$packageArgs.Url64 = "https://download.mozilla.org/?product=firefox-126.0.1-ssl&os=win64&lang=${locale}"
}

Install-ChocolateyPackage @packageArgs
Expand Down
8 changes: 4 additions & 4 deletions automatic/nodejs.install/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ in verifying that this package's contents are trustworthy.
The installer has been downloaded from GitHub and can be verified like this:

1. Download the following installers:
32-Bit: <https://nodejs.org/dist/v18.20.3/node-v18.20.3-x86.msi>
64-Bit: <https://nodejs.org/dist/v18.20.3/node-v18.20.3-x64.msi>
32-Bit: <https://nodejs.org/dist/v20.14.0/node-v20.14.0-x86.msi>
64-Bit: <https://nodejs.org/dist/v20.14.0/node-v20.14.0-x64.msi>
2. You can use one of the following methods to obtain the checksum
- Use powershell function 'Get-Filehash'
- Use chocolatey utility 'checksum.exe'

checksum type: sha256
checksum32: DCBC42E359CA40093FFC960267CC45E2F73DADBD6065CEB396F9EEEACD0F2D8D
checksum64: 073A9A13C5B29C5A5B2CC4DDB0B52A53C569E9871FD377BB706A0A7B608168E4
checksum32: 148FFFE0E2B68EB9BA5105D596B5302DDA436FC1FCA5E0E1BBD2994E729ECA4A
checksum64: 4235F05B99AE5DABADB5C10C124A0F7F7D4223E52DF0857E4C4462B13F19C40E

File 'LICENSE.txt' is obtained from <https://github.com/nodejs/node/blob/03023fa7ae060c082a014f792d5d1f481a599460/LICENSE>
2 changes: 1 addition & 1 deletion automatic/nodejs.install/nodejs.install.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"17": "17.9.1",
"18": "18.20.3",
"19": "19.9.0",
"20": "20.13.1",
"20": "20.14.0",
"21": "21.7.3",
"22": "22.2.0"
}
2 changes: 1 addition & 1 deletion automatic/nodejs.install/nodejs.install.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>nodejs.install</id>
<title>Node JS (Install)</title>
<version>18.20.3</version>
<version>20.14.0</version>
<authors>Node.js Foundation</authors>
<owners>chocolatey-community, Rob Reynolds</owners>
<summary>Node JS - Evented I/O for v8 JavaScript.</summary>
Expand Down
4 changes: 2 additions & 2 deletions automatic/nodejs.install/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

$toolsPath = Split-Path $MyInvocation.MyCommand.Definition

$filePath32 = "$toolsPath\node-v18.20.3-x86.msi"
$filePath64 = "$toolsPath\node-v18.20.3-x64.msi"
$filePath32 = "$toolsPath\node-v20.14.0-x86.msi"
$filePath64 = "$toolsPath\node-v20.14.0-x64.msi"
$installFile = if ((Get-OSArchitectureWidth 64) -and $env:chocolateyForceX86 -ne 'true') {
Write-Host "Installing 64 bit version"; $filePath64 }
else { Write-Host "Installing 32 bit version"; $filePath32 }
Expand Down
2 changes: 1 addition & 1 deletion automatic/nodejs/nodejs.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"17": "17.9.1",
"18": "18.20.3",
"19": "19.9.0",
"20": "20.13.1",
"20": "20.14.0",
"21": "21.7.3",
"22": "22.2.0"
}
4 changes: 2 additions & 2 deletions automatic/nodejs/nodejs.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>nodejs</id>
<title>Node JS</title>
<version>18.20.3</version>
<version>20.14.0</version>
<authors>Node.js Foundation</authors>
<owners>chocolatey-community, Rob Reynolds</owners>
<summary>Node JS - Evented I/O for v8 JavaScript.</summary>
Expand All @@ -30,7 +30,7 @@ This package runs the official Node JS installer, resulting in Node.exe and NPM
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<iconUrl>https://cdn.jsdelivr.net/gh/chocolatey-community/chocolatey-packages@ba5adf020e09cd0e51107206ef3ec390035a6e90/icons/nodejs.png</iconUrl>
<dependencies>
<dependency id="nodejs.install" version="[18.20.3]" />
<dependency id="nodejs.install" version="[20.14.0]" />
</dependencies>
</metadata>
<files>
Expand Down
6 changes: 3 additions & 3 deletions automatic/openshift-cli/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.

The embedded software have been downloaded from the listed download
location on <https://mirror.openshift.com/pub/openshift-v4/clients/ocp/4.15.13>
location on <https://mirror.openshift.com/pub/openshift-v4/clients/ocp/4.15.14>
and can be verified by doing the following:

1. Download the following:
software: <https://mirror.openshift.com/pub/openshift-v4/clients/ocp/4.15.13/openshift-client-windows-4.15.13.zip>
software: <https://mirror.openshift.com/pub/openshift-v4/clients/ocp/4.15.14/openshift-client-windows-4.15.14.zip>

2. Get the checksum using one of the following methods:
- Using powershell function 'Get-FileHash'
Expand All @@ -17,6 +17,6 @@ and can be verified by doing the following:
3. The checksums should match the following:

checksum type:
checksum: A623ADF49A8A92DA0C38A8A80CDCA5913162885E4E9121A89D00C10B0D12E46B
checksum: 4A91140CCBFE5E9B7F446EFF5486BCE4A26C3F62690E1B941FB858E541570141

The file 'LICENSE.txt' has been obtained from <https://github.com/openshift/origin/blob/6366485d06c43fd526899510f02582484da25519/LICENSE>
4 changes: 2 additions & 2 deletions automatic/openshift-cli/openshift-cli.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>openshift-cli</id>
<version>4.15.13</version>
<version>4.15.14</version>
<packageSourceUrl>https://github.com/chocolatey-community/chocolatey-packages/tree/master/automatic/openshift-cli</packageSourceUrl>
<owners>chocolatey-community,Andrei Bejenaru</owners>
<title>OpenShift Command Line Interface (CLI)</title>
Expand Down Expand Up @@ -45,7 +45,7 @@ Origin is the upstream community project that powers OpenShift. Built around a c
* Windows support is limited to 64bit systems.
* **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.**
]]></description>
<releaseNotes>https://mirror.openshift.com/pub/openshift-v4/clients/ocp/4.15.13</releaseNotes>
<releaseNotes>https://mirror.openshift.com/pub/openshift-v4/clients/ocp/4.15.14</releaseNotes>
</metadata>
<files>
<file src="tools\**" target="tools" />
Expand Down
2 changes: 1 addition & 1 deletion automatic/palemoon/palemoon.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>palemoon</id>
<title>Pale Moon browser</title>
<version>33.1.0</version>
<version>33.1.1</version>
<authors>Moonchild Productions</authors>
<owners>chocolatey-community,Redsandro</owners>
<summary>A Firefox-based web browser optimized for modern hardware.</summary>
Expand Down
8 changes: 4 additions & 4 deletions automatic/palemoon/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
$packageArgs = @{
packageName = 'palemoon'
fileType = 'exe'
url = 'https://rm-eu.palemoon.org/release/palemoon-33.1.0.win32.installer.exe'
url64 = 'https://rm-eu.palemoon.org/release/palemoon-33.1.0.win64.installer.exe'
url = 'https://rm-eu.palemoon.org/release/palemoon-33.1.1.win32.installer.exe'
url64 = 'https://rm-eu.palemoon.org/release/palemoon-33.1.1.win64.installer.exe'

softwareName = 'Pale Moon*'

checksum = '8991299a4c019de1366c4aaa3704a90f8054ad0b41750fce2e804193ff686129'
checksum = '1bf9c5b9d55ace6ea257a2b4abbed085a5239e65ee490c65959bd8449006c4b0'
checksumType = 'sha256'
checksum64 = '17d665e831cf5c9c7c04696ee8b0108f7adc1a58f37266c4467404c7a1a885b7'
checksum64 = '298870825546a1dd23e5f249ab02f4402209c2b70870f6e09450fc2fd139ff06'
checksumType64= 'sha256'

silentArgs = "/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-"
Expand Down
2 changes: 1 addition & 1 deletion automatic/sysinternals/sysinternals.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>sysinternals</id>
<title>Sysinternals</title>
<version>2024.2.13</version>
<version>2024.5.28</version>
<authors>Mark Russinovich, Bryce Cogswell</authors>
<owners>chocolatey-community, Rob Reynolds</owners>
<summary>Sysinternals - utilities to help you manage, troubleshoot and diagnose your Windows systems and applications.</summary>
Expand Down
2 changes: 1 addition & 1 deletion automatic/sysinternals/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Write-Host "Sysinternals Suite is going to be installed in '$installDir'"
$packageArgs = @{
packageName = 'sysinternals'
url = 'https://download.sysinternals.com/files/SysinternalsSuite.zip'
checksum = 'fa5548efe12a2ea78c726971b6ac24ec9c2c1686a557efd3ff9476398ecccbae'
checksum = 'cebd4dd1cc79f982a6f8adfd1459dc919af7e77acc94e6b51fb64fb947372454'
checksumType = 'sha256'
unzipLocation = $installDir
}
Expand Down

0 comments on commit 899d957

Please sign in to comment.