Skip to content

Commit e44a89a

Browse files
author
Chocolatey Community
committed
AU: 4 updated - bulk-crap-uninstaller chromium datagrip iTunes
[skip ci]
1 parent d6c2fcf commit e44a89a

11 files changed

+21
-21
lines changed

automatic/bulk-crap-uninstaller/bulk-crap-uninstaller.nuspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<id>bulk-crap-uninstaller</id>
66
<title>Bulk Crap Uninstaller</title>
77
<owners>chocolatey-community</owners>
8-
<version>5.8.2</version>
8+
<version>5.8.3</version>
99
<authors>Marcin Szeniak</authors>
1010
<summary>Bulk Crap Uninstaller is an open source program uninstaller.</summary>
1111
<description><![CDATA[Bulk Crap Uninstaller is a free (as in speech) program uninstaller. It excels at removing large amounts of applications with minimal user input. It can clean up leftovers, detect orphaned applications, run uninstallers according to premade lists, and much more!
@@ -61,7 +61,7 @@ Even though BCU was made with IT pros in mind, by default it is so straight-forw
6161
<licenseUrl>https://github.com/Klocman/Bulk-Crap-Uninstaller/blob/master/Licence.txt</licenseUrl>
6262
<requireLicenseAcceptance>false</requireLicenseAcceptance>
6363
<iconUrl>https://cdn.jsdelivr.net/gh/chocolatey-community/chocolatey-packages@11b6ffab0e41ca0e687b1202046aa0248682e8be/icons/bulk-crap-uninstaller.png</iconUrl>
64-
<releaseNotes>https://github.com/Klocman/Bulk-Crap-Uninstaller/releases/tag/v5.8.2</releaseNotes>
64+
<releaseNotes>https://github.com/Klocman/Bulk-Crap-Uninstaller/releases/tag/v5.8.3</releaseNotes>
6565
<packageSourceUrl>https://github.com/chocolatey-community/chocolatey-packages/tree/master/automatic/bulk-crap-uninstaller</packageSourceUrl>
6666
<projectSourceUrl>https://github.com/Klocman/Bulk-Crap-Uninstaller</projectSourceUrl>
6767
<dependencies>

automatic/bulk-crap-uninstaller/legal/VERIFICATION.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ Package can be verified like this:
77

88
1. Go to
99

10-
x32: https://github.com/Klocman/Bulk-Crap-Uninstaller/releases/download/v5.8.2/BCUninstaller_5.8.2_setup.exe
10+
x32: https://github.com/Klocman/Bulk-Crap-Uninstaller/releases/download/v5.8.3/BCUninstaller_5.8.3_setup.exe
1111

1212
to download the installer.
1313

1414
2. You can use one of the following methods to obtain the SHA256 checksum:
1515
- Use powershell function 'Get-FileHash'
1616
- Use Chocolatey utility 'checksum.exe'
1717

18-
checksum32: B4682EB5D3A0F2CF123FD8733D9FECF5E93929CA4B4DA735D2782318E1F75595
18+
checksum32: C9DA7A98F08C1734C7907380E41DFEAC150F914ABC9379706EB2E54B0AD9FDFC
1919

2020
File 'license.txt' is obtained from:
2121
https://github.com/Klocman/Bulk-Crap-Uninstaller/blob/master/Licence.txt

automatic/chromium/chromium.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"snapshots": "135.0.7026.0-snapshots",
2+
"snapshots": "135.0.7027.0-snapshots",
33
"stable": "133.0.6943.127"
44
}

automatic/chromium/chromium.nuspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
44
<metadata>
55
<id>chromium</id>
6-
<version>135.0.7026.0-snapshots</version>
6+
<version>135.0.7027.0-snapshots</version>
77
<title>Chromium Snapshots</title>
88
<owners>chocolatey-community</owners>
99
<authors>The Chromium Authors</authors>

automatic/chromium/legal/VERIFICATION.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ location on <https://github.com/henrypp/chromium/releases/> (the listed mirrors
77
and can be verified by doing the following:
88

99
1. Download the following:
10-
64-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win_x64/1422428/mini_installer.exe>
10+
64-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win_x64/1422788/mini_installer.exe>
1111
2. Get the checksum using one of the following methods:
1212
- Using powershell function 'Get-FileHash'
1313
- Use chocolatey utility 'checksum.exe'
1414
3. The checksums should match the following:
1515

1616
checksum type: sha256
17-
checksum64: D47F46A4710A6EC7F59F6CDF2DD5883D8579AED053D10C48974A62EAAAE33ACC
17+
checksum64: 62BFBAA14C2006FB146FB8769D9440F6083E2A8A9B7AB1FEDBB60BA18A217034
1818

1919
The file 'LICENSE.txt' has been obtained from <https://chromium.googlesource.com/chromium/src.git/+/master/LICENSE>

automatic/chromium/tools/chocolateyInstall.ps1

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
$toolsDir = Split-Path -Parent $MyInvocation.MyCommand.Definition
33
. (Join-Path $toolsDir 'helper.ps1')
44

5-
$version = '135.0.7026.0-snapshots'
5+
$version = '135.0.7027.0-snapshots'
66
$hive = "hkcu"
77
$chromium_string = "\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Chromium"
88
$Chromium = $hive + ":" + $chromium_string
@@ -15,8 +15,8 @@ if (Test-Path $Chromium) {
1515

1616
$packageArgs = @{
1717
packageName = 'chromium'
18-
url = 'https://storage.googleapis.com/chromium-browser-snapshots/Win/1422413/mini_installer.exe'
19-
checksum = '4FDBD4166544C42A19A39B42A6D03767439418DA7A4A9B16FCC7F395BE8B1481'
18+
url = 'https://storage.googleapis.com/chromium-browser-snapshots/Win/1422793/mini_installer.exe'
19+
checksum = '354A9EA26713DA0299011320EAEADC1303F077089870B160CE6CEF490A2439BC'
2020
checksumType = 'sha256'
2121
file64 = "$toolsdir\chromium_x64.exe"
2222
fileType = 'exe'

automatic/datagrip/datagrip.nuspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
44
<metadata>
55
<id>datagrip</id>
6-
<version>2024.3.4</version>
6+
<version>2024.3.5</version>
77
<title>JetBrains DataGrip</title>
88
<authors>JetBrains</authors>
99
<licenseUrl>https://www.datagrip.org/terms.php</licenseUrl>

automatic/datagrip/tools/ChocolateyInstall.ps1

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ if ($pp.InstallDir) {
1616
$arguments = @{
1717
packageName = $env:ChocolateyPackageName
1818
softwareName = 'JetBrains DataGrip*'
19-
url = 'https://download.jetbrains.com/datagrip/datagrip-2024.3.4.exe'
20-
checksum = '40e5a37ffc433582e9341d4b32d3d9f1a8ef711b58350c186a51e20c314dd258'
19+
url = 'https://download.jetbrains.com/datagrip/datagrip-2024.3.5.exe'
20+
checksum = 'ac5470716ace7fbdc98de6e321740b7bbfe9a0c1a43053d49e1ee42b2e9dfaec'
2121
fileType = 'exe'
2222
checksumType = 'sha256'
2323
silentArgs = $silentArgs

automatic/itunes/info

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
"f70ab342cdc25b534a57ea1d3d6ea4ea-11"|12.13.4.4
1+
"949e2f716ede5a8b432f3e0233dc44d2-11"|12.13.5.3

automatic/itunes/itunes.nuspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
44
<metadata>
55
<id>iTunes</id>
6-
<version>12.13.4.4</version>
6+
<version>12.13.5.3</version>
77
<packageSourceUrl>https://github.com/chocolatey-community/chocolatey-packages/tree/master/automatic/itunes</packageSourceUrl>
88
<owners>chocolatey-community</owners>
99
<title>iTunes</title>

automatic/itunes/tools/chocolateyInstall.ps1

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
$ErrorActionPreference = 'Stop';
22

3-
$version = '12.13.4.4'
3+
$version = '12.13.5.3'
44

55
$packageArgs = @{
66
packageName = 'iTunes'
77
fileType = 'msi'
8-
url = 'https://secure-appldnld.apple.com/itunes12/072-08831-20241021-59E04F71-9D64-4CE7-978C-1A37574B78E4/iTunesSetup.exe'
9-
url64bit = 'https://secure-appldnld.apple.com/itunes12/072-08832-20241021-5BCDE100-420E-4BEF-A8C7-16A8E499B7D3/iTunes64Setup.exe'
8+
url = 'https://secure-appldnld.apple.com/itunes12/072-44556-20250218-B0FBC48F-2592-4EA4-BB98-0563245FC4A8/iTunesSetup.exe'
9+
url64bit = 'https://secure-appldnld.apple.com/itunes12/072-44554-20250218-E70A4561-26A5-4110-AB7F-892AAFFCA36A/iTunes64Setup.exe'
1010
softwareName = 'iTunes'
11-
checksum = 'A037A56E7535380DDA167FF8D47D76295031D4C44FA87747BA199EB47B3BC641'
11+
checksum = 'CB89EAE87EA012C297C891CC0A3706FD8A0CFBE5FFEF462F257BF97E4BA62F55'
1212
checksumType = 'sha256'
13-
checksum64 = 'b3d7c02032ae6ae3649914f70803e21f791b5399e2ff201fbcefad1dc059c192'
13+
checksum64 = 'a8a291080c11635ad9d9300dcce6630d7fb8631fa936eee5ce372987c1233542'
1414
checksumType64 = 'sha256'
1515
silentArgs = "/qn /norestart"
1616
validExitCodes = @(0, 2010, 1641, 3010)

0 commit comments

Comments
 (0)