Skip to content

Commit

Permalink
AU: 4 updated - Firefox nodejs nodejs.install sonarlint-vs2015
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey committed Jan 7, 2020
1 parent dfaa49f commit a202676
Show file tree
Hide file tree
Showing 13 changed files with 213 additions and 213 deletions.
4 changes: 2 additions & 2 deletions automatic/firefox/firefox.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"latest": "71.0",
"esr": "68.3.0"
"latest": "72.0",
"esr": "68.4.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>71.0</version>
<version>72.0</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 @@ -44,7 +44,7 @@
]]></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/71.0/releasenotes/</releaseNotes>
<releaseNotes>https://www.mozilla.org/en-US/firefox/72.0/releasenotes/</releaseNotes>
<packageSourceUrl>https://github.com/chocolatey-community/chocolatey-coreteampackages/tree/master/automatic/firefox</packageSourceUrl>
<dependencies>
<dependency id="chocolatey-core.extension" version="1.3.3" />
Expand Down
384 changes: 192 additions & 192 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 @@ -7,7 +7,7 @@ $toolsPath = Split-Path $MyInvocation.MyCommand.Definition
$packageName = 'Firefox'
$softwareName = 'Mozilla Firefox'

$alreadyInstalled = (AlreadyInstalled -product $softwareName -version '71.0')
$alreadyInstalled = (AlreadyInstalled -product $softwareName -version '72.0')

if (Get-32bitOnlyInstalled -product $softwareName) {
Write-Output $(
Expand All @@ -34,7 +34,7 @@ if ($alreadyInstalled -and ($env:ChocolateyForce -ne $true)) {

Checksum = $checksums.Win32
ChecksumType = 'sha512'
Url = "https://download.mozilla.org/?product=firefox-71.0-ssl&os=win&lang=${locale}"
Url = "https://download.mozilla.org/?product=firefox-72.0-ssl&os=win&lang=${locale}"

silentArgs = '-ms'
validExitCodes = @(0)
Expand All @@ -43,7 +43,7 @@ if ($alreadyInstalled -and ($env:ChocolateyForce -ne $true)) {
if (!(Get-32bitOnlyInstalled($softwareName)) -and (Get-OSArchitectureWidth 64)) {
$packageArgs.Checksum64 = $checksums.Win64
$packageArgs.ChecksumType64 = 'sha512'
$packageArgs.Url64 = "https://download.mozilla.org/?product=firefox-71.0-ssl&os=win64&lang=${locale}"
$packageArgs.Url64 = "https://download.mozilla.org/?product=firefox-72.0-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 have been downloaded from GitHub and can be verified like this:

1. Download the following installers:
32-Bit: <https://nodejs.org/dist/v13.5.0/node-v13.5.0-x86.msi>
64-Bit: <https://nodejs.org/dist/v13.5.0/node-v13.5.0-x64.msi>
32-Bit: <https://nodejs.org/dist/v12.14.1/node-v12.14.1-x86.msi>
64-Bit: <https://nodejs.org/dist/v12.14.1/node-v12.14.1-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: C9EC9DDF28034C817FCB2FF277D53EA8F01A63349E31A8AD72FB0289787AED68
checksum64: 9BF487E57F944AD2AB392C8AECB1E0ED066DCE32D4EF4F2634DEF7C81488CC61
checksum32: EBB719FDB1E27782E0BC2110AF1B836657FB1078353757DA265D4256E5DFDB2B
checksum64: 630BC34155E7FDB65C02ED44A37CD27DCF3F76A061C220E7AF8BAACDB0C2BB9C

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 @@ -5,7 +5,7 @@
"9": "9.11.2",
"10": "10.18.0",
"11": "11.15.0",
"12": "12.14.0",
"12": "12.14.1",
"5": "5.12.0",
"7": "7.10.1",
"13": "13.5.0"
Expand Down
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>13.5.0</version>
<version>12.14.1</version>
<authors>Node.js Foundation</authors>
<owners>chocolatey, 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-v13.5.0-x86.msi"
$filePath64 = "$toolsPath\node-v13.5.0-x64.msi"
$filePath32 = "$toolsPath\node-v12.14.1-x86.msi"
$filePath64 = "$toolsPath\node-v12.14.1-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 @@ -5,7 +5,7 @@
"9": "9.11.2",
"10": "10.18.0",
"11": "11.15.0",
"12": "12.14.0",
"12": "12.14.1",
"5": "5.12.0",
"7": "7.10.1",
"13": "13.5.0"
Expand Down
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>13.5.0</version>
<version>12.14.1</version>
<authors>Node.js Foundation</authors>
<owners>chocolatey, Rob Reynolds</owners>
<summary>Node JS - Evented I/O for v8 JavaScript.</summary>
Expand All @@ -28,7 +28,7 @@ While this package now provides both **Current** and **LTS** releases of Node.js
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<iconUrl>https://cdn.jsdelivr.net/gh/chocolatey-community/chocolatey-coreteampackages@ba5adf020e09cd0e51107206ef3ec390035a6e90/icons/nodejs.png</iconUrl>
<dependencies>
<dependency id="nodejs.install" version="[13.5.0]" />
<dependency id="nodejs.install" version="[12.14.1]" />
</dependencies>
</metadata>
<files>
Expand Down
2 changes: 1 addition & 1 deletion automatic/sonarlint-vs2015/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ in verifying that this package's contents are trustworthy.
The extension has been downloaded from their official download link listed on <https://marketplace.visualstudio.com/items?itemName=SonarSource.SonarLintforVisualStudio>
and can be verified like this:

1. Download <https://marketplace.visualstudio.com/_apis/public/gallery/publishers/SonarSource/vsextensions/SonarLintforVisualStudio/4.14.0.12332/vspackage>
1. Download <https://marketplace.visualstudio.com/_apis/public/gallery/publishers/SonarSource/vsextensions/SonarLintforVisualStudio/4.14.1.14005/vspackage>
2. Then use one of the following methods to obtain the checksum
- Use powershell function 'Get-Filehash'
- Use chocolatey utility 'checksum.exe'
Expand Down
2 changes: 1 addition & 1 deletion automatic/sonarlint-vs2015/sonarlint-vs2015.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>sonarlint-vs2015</id>
<title>SonarLint for Visual Studio 2015</title>
<version>4.14.0.12332</version>
<version>4.14.1.14005</version>
<authors>SonarSource (SonarSource SA)</authors>
<owners>chocolatey, Pascal Berger</owners>
<projectSourceUrl>https://github.com/SonarSource-VisualStudio/sonarlint-visualstudio</projectSourceUrl>
Expand Down
2 changes: 1 addition & 1 deletion automatic/sonarlint-vs2015/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
$ErrorActionPreference = 'Stop';

$toolsPath = Split-Path $MyInvocation.MyCommand.Definition
$filePath = "$toolsPath\SonarLint.VSIX-4.14.0.12332-2015.vsix"
$filePath = "$toolsPath\SonarLint.VSIX-4.14.1.14005-2015.vsix"

$vsixUrl = "file://" + $filePath.Replace("\", "/")

Expand Down

0 comments on commit a202676

Please sign in to comment.