Skip to content

Commit

Permalink
AU: 4 updated - etcd smartftp vscode-insiders vscode-insiders.install
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey Community committed Mar 30, 2024
1 parent 69ef668 commit 052f29a
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 24 deletions.
2 changes: 1 addition & 1 deletion automatic/etcd/etcd.json
Expand Up @@ -6,6 +6,6 @@
"3.2": "3.2.32",
"3.3": "3.3.27",
"3.4": "3.4.31",
"3.5": "3.5.12",
"3.5": "3.5.13",
"3.6": "3.6.0-alpha0"
}
29 changes: 16 additions & 13 deletions automatic/etcd/etcd.nuspec
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>etcd</id>
<version>3.4.31</version>
<version>3.5.13</version>
<packageSourceUrl>https://github.com/chocolatey-community/chocolatey-packages/tree/master/automatic/etcd</packageSourceUrl>
<owners>chocolatey-community,dgalbraith,Andrei Bejenaru,Robert Labrie</owners>
<title>etcd (Install)</title>
Expand Down Expand Up @@ -45,14 +45,14 @@ Example: `choco install etcd -y --params="-discovery https://discovery.etcd.io/t
* Windows support is limited to 64-bit systems
* Originally packaged by Robert Labrie (https://github.com/robertlabrie)
]]></description>
<releaseNotes>Please check out [CHANGELOG](https://github.com/etcd-io/etcd/blob/main/CHANGELOG/CHANGELOG-3.4.md) for a full list of changes. And make sure to read [upgrade guide](https://github.com/etcd-io/website/blob/main/content/en/docs/v3.4/upgrades/upgrade_3_4.md) before upgrading etcd (there may be breaking changes).
<releaseNotes>Please check out [CHANGELOG](https://github.com/etcd-io/etcd/blob/main/CHANGELOG/CHANGELOG-3.5.md) for a full list of changes. And make sure to read [upgrade guide](https://github.com/etcd-io/website/blob/main/content/en/docs/v3.5/upgrades/upgrade_3_5.md) before upgrading etcd (there may be breaking changes).

For installation guides, please check out [play.etcd.io](http://play.etcd.io) and [operating etcd](https://github.com/etcd-io/etcd/tree/master/Documentation#operating-etcd-clusters). Latest support status for common architectures and operating systems can be found at [supported platforms](https://github.com/etcd-io/website/blob/main/content/en/docs/v3.4/op-guide/supported-platform.md).
For installation guides, please check out [play.etcd.io](http://play.etcd.io) and [operating etcd](https://github.com/etcd-io/etcd/tree/master/Documentation#operating-etcd-clusters). Latest support status for common architectures and operating systems can be found at [supported platforms](https://github.com/etcd-io/website/blob/main/content/en/docs/v3.5/op-guide/supported-platform.md).

###### Linux

```bash
ETCD_VER=v3.4.31
ETCD_VER=v3.5.13

# choose either URL
GOOGLE_URL=https://storage.googleapis.com/etcd
Expand All @@ -68,6 +68,7 @@ rm -f /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz

/tmp/etcd-download-test/etcd --version
/tmp/etcd-download-test/etcdctl version
/tmp/etcd-download-test/etcdutl version
```

```bash
Expand All @@ -82,7 +83,7 @@ rm -f /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
###### macOS (Darwin)

```bash
ETCD_VER=v3.4.31
ETCD_VER=v3.5.13

# choose either URL
GOOGLE_URL=https://storage.googleapis.com/etcd
Expand All @@ -98,6 +99,7 @@ mv /tmp/etcd-${ETCD_VER}-darwin-amd64/* /tmp/etcd-download-test &amp;&amp; rm -r

/tmp/etcd-download-test/etcd --version
/tmp/etcd-download-test/etcdctl version
/tmp/etcd-download-test/etcdutl version
```

###### Docker
Expand All @@ -106,13 +108,13 @@ etcd uses [`gcr.io/etcd-development/etcd`](https://gcr.io/etcd-development/etcd)

```bash
rm -rf /tmp/etcd-data.tmp &amp;&amp; mkdir -p /tmp/etcd-data.tmp &amp;&amp; \
docker rmi gcr.io/etcd-development/etcd:v3.4.31 || true &amp;&amp; \
docker rmi gcr.io/etcd-development/etcd:v3.5.13 || true &amp;&amp; \
docker run \
-p 2379:2379 \
-p 2380:2380 \
--mount type=bind,source=/tmp/etcd-data.tmp,destination=/etcd-data \
--name etcd-gcr-v3.4.31 \
gcr.io/etcd-development/etcd:v3.4.31 \
--name etcd-gcr-v3.5.13 \
gcr.io/etcd-development/etcd:v3.5.13 \
/usr/local/bin/etcd \
--name s1 \
--data-dir /etcd-data \
Expand All @@ -127,11 +129,12 @@ rm -rf /tmp/etcd-data.tmp &amp;&amp; mkdir -p /tmp/etcd-data.tmp &amp;&amp; \
--logger zap \
--log-outputs stderr

docker exec etcd-gcr-v3.4.31 /usr/local/bin/etcd --version
docker exec etcd-gcr-v3.4.31 /usr/local/bin/etcdctl version
docker exec etcd-gcr-v3.4.31 /usr/local/bin/etcdctl endpoint health
docker exec etcd-gcr-v3.4.31 /usr/local/bin/etcdctl put foo bar
docker exec etcd-gcr-v3.4.31 /usr/local/bin/etcdctl get foo
docker exec etcd-gcr-v3.5.13 /usr/local/bin/etcd --version
docker exec etcd-gcr-v3.5.13 /usr/local/bin/etcdctl version
docker exec etcd-gcr-v3.5.13 /usr/local/bin/etcdutl version
docker exec etcd-gcr-v3.5.13 /usr/local/bin/etcdctl endpoint health
docker exec etcd-gcr-v3.5.13 /usr/local/bin/etcdctl put foo bar
docker exec etcd-gcr-v3.5.13 /usr/local/bin/etcdctl get foo
```</releaseNotes>
<dependencies>
<dependency id="nssm" version="2.24.101" />
Expand Down
6 changes: 3 additions & 3 deletions automatic/etcd/legal/VERIFICATION.txt
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://github.com/etcd-io/etcd/releases/tag/v3.4.31>
location on <https://github.com/etcd-io/etcd/releases/tag/v3.5.13>
and can be verified by doing the following:

1. Download the following:
software: <https://github.com/etcd-io/etcd/releases/download/v3.4.31/etcd-v3.4.31-windows-amd64.zip>
software: <https://github.com/etcd-io/etcd/releases/download/v3.5.13/etcd-v3.5.13-windows-amd64.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: sha256
checksum: BA0018FA133766C3406E73CAC8D699E9C133A515855910AB31C94AF40B91CC7D
checksum: 31737DA2ADAEEACF2C85154CF5B4DB2F50F3A68DE0B30C760AB5280C49BDDA8D

The file 'LICENSE.txt' has been obtained from <https://github.com/etcd-io/etcd/commit/3381177341c11aa9d89b6172699d64ddc2146a11/LICENSE>
2 changes: 1 addition & 1 deletion automatic/smartftp/smartftp.nuspec
Expand Up @@ -5,7 +5,7 @@
<id>smartftp</id>
<title>SmartFTP</title>
<owners>chocolatey-community</owners>
<version>10.0.3210.0</version>
<version>10.0.3211.0</version>
<authors>SmartSoft</authors>
<summary>FTP, FTPS, SFTP, HTTP, Amazon S3, WebDAV, Google Drive, Google Cloud Storage, Microsoft OneDrive, Telnet, Terminal client.</summary>
<description><![CDATA[SmartFTP is a fast and reliable FTP, FTPS, SFTP, HTTP, Amazon S3, WebDAV, Google Drive, Google Cloud Storage, Microsoft OneDrive, Backblaze B2, Telnet, Terminal client with lots of features and a modern user interface.
Expand Down
2 changes: 1 addition & 1 deletion automatic/smartftp/tools/chocolateyInstall.ps1
Expand Up @@ -13,7 +13,7 @@ $packageArgs = @{
url = 'https://www.smartftp.com/get/SmartFTP86.msi'
url64bit = 'https://www.smartftp.com/get/SmartFTP64.msi'
checksum = '8d885003aa204d160b3cfab01f7f686126dddc0e25d171ec7dd14bf3b369e85e'
checksum64 = 'c633bddfa5476d02f1f8c7ec9751856deb80c68baad48086c6b87d2c53cec7b3'
checksum64 = '9a4fd567de6d432b295c8177ea7e8b45fd6cc93a1c9591a292d36885e0808c7d'
checksumType = 'sha256'
checksumType64 = 'sha256'
silentArgs = '/quiet'
Expand Down
4 changes: 2 additions & 2 deletions automatic/vscode-insiders.install/tools/chocolateyInstall.ps1
Expand Up @@ -22,11 +22,11 @@ function Get-MergeTasks {
$packageArgs = @{
packageName = "$env:ChocolateyPackageName"
fileType = 'exe'
url64bit = 'https://vscode.download.prss.microsoft.com/dbazure/download/insider/7caf8b6cfe76d22c6aff3d7aa22dd9f494266ecc/VSCodeSetup-x64-1.88.0-insider.exe'
url64bit = 'https://vscode.download.prss.microsoft.com/dbazure/download/insider/d994aede3529f4d1af9eeaeb234d32fd936243e7/VSCodeSetup-x64-1.88.0-insider.exe'

softwareName = 'Microsoft Visual Studio Code Insiders'

checksum64 = '64540186cb1dbcd4edc7becc6d0d302fcfaa413c57d6e94a462e32235b3bac5c261eadf41c82f58462b9125dbf43aa5e27c5369b84f2a6fb589a0b2af5a006d2'
checksum64 = '0193e75400960178d0f13501beb04ab5e1a9a70cd8f47c8a777f791693640de60bcd3a80d8ba83c24ef439a6646e3dd736d0dabe5302b6aca039746ef1432154'
checksumType64 = 'sha512'

silentArgs = '/verysilent /suppressmsgboxes /mergetasks="{0}" /log="{1}\install.log"' -f (Get-MergeTasks), (Get-PackageCacheLocation)
Expand Down
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>vscode-insiders.install</id>
<title>Visual Studio Code Insiders (Install)</title>
<version>1.88.0.20240328</version>
<version>1.88.0.20240329</version>
<authors>Microsoft</authors>
<owners>chocolatey-community</owners>
<projectUrl>https://code.visualstudio.com/insiders</projectUrl>
Expand Down
4 changes: 2 additions & 2 deletions automatic/vscode-insiders/vscode-insiders.nuspec
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>vscode-insiders</id>
<title>Visual Studio Code Insiders</title>
<version>1.88.0.20240328</version>
<version>1.88.0.20240329</version>
<authors>Microsoft</authors>
<owners>chocolatey-community</owners>
<projectUrl>https://code.visualstudio.com/insiders</projectUrl>
Expand Down Expand Up @@ -48,7 +48,7 @@ Example: `choco install vscode-insiders --params "/NoDesktopIcon /DontAddToPath"
]]></description>
<tags>microsoft visualstudiocode visualstudiocode-insiders vscode vscode-insiders development editor ide javascript typescript admin foss cross-platform</tags>
<dependencies>
<dependency id="vscode-insiders.install" version="[1.88.0.20240328]" />
<dependency id="vscode-insiders.install" version="[1.88.0.20240329]" />
</dependencies>
<releaseNotes>https://code.visualstudio.com/updates/#_preview-features</releaseNotes>
</metadata>
Expand Down

0 comments on commit 052f29a

Please sign in to comment.