Skip to content

Commit

Permalink
AU: 4 updated - etcd libreoffice-still vscode-insiders vscode-insider…
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey Community committed May 11, 2023
1 parent 2aacdc8 commit c5af7a9
Show file tree
Hide file tree
Showing 10 changed files with 45 additions and 39 deletions.
2 changes: 1 addition & 1 deletion automatic/etcd/etcd.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
"3.2": "3.2.32",
"3.3": "3.3.27",
"3.4": "3.4.25",
"3.5": "3.5.8",
"3.5": "3.5.9",
"3.6": "3.6.0-alpha0"
}
32 changes: 18 additions & 14 deletions automatic/etcd/etcd.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>etcd</id>
<version>3.4.25</version>
<version>3.5.9</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.25
ETCD_VER=v3.5.9

# 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.25
ETCD_VER=v3.5.9

# 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.25 || true &amp;&amp; \
docker rmi gcr.io/etcd-development/etcd:v3.5.9 || 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.25 \
gcr.io/etcd-development/etcd:v3.4.25 \
--name etcd-gcr-v3.5.9 \
gcr.io/etcd-development/etcd:v3.5.9 \
/usr/local/bin/etcd \
--name s1 \
--data-dir /etcd-data \
Expand All @@ -127,12 +129,14 @@ 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.25 /usr/local/bin/etcd --version
docker exec etcd-gcr-v3.4.25 /usr/local/bin/etcdctl version
docker exec etcd-gcr-v3.4.25 /usr/local/bin/etcdctl endpoint health
docker exec etcd-gcr-v3.4.25 /usr/local/bin/etcdctl put foo bar
docker exec etcd-gcr-v3.4.25 /usr/local/bin/etcdctl get foo
```</releaseNotes>
docker exec etcd-gcr-v3.5.9 /usr/local/bin/etcd --version
docker exec etcd-gcr-v3.5.9 /usr/local/bin/etcdctl version
docker exec etcd-gcr-v3.5.9 /usr/local/bin/etcdutl version
docker exec etcd-gcr-v3.5.9 /usr/local/bin/etcdctl endpoint health
docker exec etcd-gcr-v3.5.9 /usr/local/bin/etcdctl put foo bar
docker exec etcd-gcr-v3.5.9 /usr/local/bin/etcdctl get foo
```
</releaseNotes>
<dependencies>
<dependency id="nssm" version="2.24.101" />
</dependencies>
Expand Down
6 changes: 3 additions & 3 deletions automatic/etcd/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://github.com/etcd-io/etcd/releases/tag/v3.4.25>
location on <https://github.com/etcd-io/etcd/releases/tag/v3.5.9>
and can be verified by doing the following:

1. Download the following:
software: <https://github.com/etcd-io/etcd/releases/download/v3.4.25/etcd-v3.4.25-windows-amd64.zip>
software: <https://github.com/etcd-io/etcd/releases/download/v3.5.9/etcd-v3.5.9-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: 7AEAB01F1A22EB69F0A647806FD6C05AE2790E36203479358F8368CB102FC2F3
checksum: 9405FF13576C497B41AE1E1D1CC214D60EFF4DB82398FC68E34AFEF58ACB68AF

The file 'LICENSE.txt' has been obtained from <https://github.com/etcd-io/etcd/commit/3381177341c11aa9d89b6172699d64ddc2146a11/LICENSE>
5 changes: 3 additions & 2 deletions automatic/libreoffice-streams/README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
# [<img src="https://cdn.rawgit.com/chocolatey/chocolatey-coreteampackages/edba4a5849ff756e767cba86641bea97ff5721fe/icons/libreoffice.svg" width="48" height="48"/> LibreOffice Fresh](https://chocolatey.org/packages/libreoffice-fresh)
# [<img src="https://cdn.rawgit.com/chocolatey/chocolatey-coreteampackages/edba4a5849ff756e767cba86641bea97ff5721fe/icons/libreoffice.svg" width="48" height="48"/> LibreOffice Still](https://chocolatey.org/packages/libreoffice-still)

LibreOffice is the free power-packed Open Source personal productivity suite for Windows, macOS and Linux, that gives you six feature-rich applications for all your document production and data processing needs.

## Notes

- This package relies on the update service provided by The Document Foundation to determine new updates. As their policy is to distribute to their website immediately and to the update service after 1 to 2 weeks, there will be a delay between a new software update and a new version release of the package.
- This package installs LibreOffice Fresh which is the stable version of LibreOffice with the most recent bleeding-edge features. This version is recommended for technology enthusiasts, early adopters or power users. For more conservative users or for deployments in enterprise or corporate environments, it is recommended to install [libreoffice-still](/packages/libreoffice-still) instead.
- This package installs LibreOffice Still which is the stable version of LibreOffice that has undergone more testing (over a longer time). This version is recommended for more conservative users or for deployments in enterprise or corporate environments. If you want the latest version with the most recent bleeding-edge features, install [libreoffice-fresh](/packages/libreoffice-fresh) instead.
- For business deployments, The Document Foundation (the foundation behind the LibreOffice project) strongly recommends [support from certified partners](https://www.libreoffice.org/get-help/professional-support/) which also offer long-term support versions of LibreOffice.
- Older versions of this package are likely broken because the LibreOffice team removes the download links for older versions after each update.
- **If the package is out of date by more than 2 weeks, 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.**
4 changes: 2 additions & 2 deletions automatic/libreoffice-streams/libreoffice-streams.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"still": "7.4.6",
"fresh": "7.5.2"
"still": "7.4.7",
"fresh": "7.5.3"
}
9 changes: 5 additions & 4 deletions automatic/libreoffice-streams/libreoffice-streams.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<!-- 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>
<id>libreoffice-fresh</id>
<title>LibreOffice Fresh</title>
<version>7.5.2</version>
<id>libreoffice-still</id>
<title>LibreOffice Still</title>
<version>7.4.7</version>
<authors>LibreOffice developers</authors>
<owners>chocolatey-community</owners>
<summary>LibreOffice is the free power-packed Open Source personal productivity suite for Windows, Macintosh and Linux, that gives you six feature-rich applications for all your document production and data processing needs.</summary>
Expand All @@ -13,7 +13,8 @@
## Notes
- This package relies on the update service provided by The Document Foundation to determine new updates. As their policy is to distribute to their website immediately and to the update service after 1 to 2 weeks, there will be a delay between a new software update and a new version release of the package.
- This package installs LibreOffice Fresh which is the stable version of LibreOffice with the most recent bleeding-edge features. This version is recommended for technology enthusiasts, early adopters or power users. For more conservative users or for deployments in enterprise or corporate environments, it is recommended to install [libreoffice-still](/packages/libreoffice-still) instead.
- This package installs LibreOffice Still which is the stable version of LibreOffice that has undergone more testing (over a longer time). This version is recommended for more conservative users or for deployments in enterprise or corporate environments. If you want the latest version with the most recent bleeding-edge features, install [libreoffice-fresh](/packages/libreoffice-fresh) instead.
- For business deployments, The Document Foundation (the foundation behind the LibreOffice project) strongly recommends [support from certified partners](https://www.libreoffice.org/get-help/professional-support/) which also offer long-term support versions of LibreOffice.
- Older versions of this package are likely broken because the LibreOffice team removes the download links for older versions after each update.
- **If the package is out of date by more than 2 weeks, 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>
Expand Down
12 changes: 6 additions & 6 deletions automatic/libreoffice-streams/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ $toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
. $toolsDir\helpers.ps1

$packageArgs = @{
packageName = 'libreoffice-fresh'
version = '7.5.2'
packageName = 'libreoffice-still'
version = '7.4.7'
fileType = 'msi'
url = 'https://download.documentfoundation.org/libreoffice/stable/7.5.2/win/x86/LibreOffice_7.5.2_Win_x86.msi'
url64bit = 'https://download.documentfoundation.org/libreoffice/stable/7.5.2/win/x86_64/LibreOffice_7.5.2_Win_x86-64.msi'
checksum = '7252c6e5620cffde824f248e23d67990a5b36aaf9fbde33bb865dbf7e90d3fe0'
checksum64 = '638e93876e8345666f1cf3e968373a90add5d420094a6ec8871edcda94a440e8'
url = 'https://download.documentfoundation.org/libreoffice/stable/7.4.7/win/x86/LibreOffice_7.4.7_Win_x86.msi'
url64bit = 'https://download.documentfoundation.org/libreoffice/stable/7.4.7/win/x86_64/LibreOffice_7.4.7_Win_x64.msi'
checksum = '04526c830ce929ad52412c1e0fbb17c86d7a7598ed7b5f4038db992fb8cdee2c'
checksum64 = '4a1e6eba5e7b095000a166ced3ad2412e913ea9b46a7dbed60d00b351df9cb77'
checksumType = 'sha256'
checksumType64 = 'sha256'
silentArgs = '/qn /passive /norestart /l*v "{0}"' -f "$($env:TEMP)\$($env:ChocolateyPackageName).$($env:ChocolateyPackageVersion).MsiInstall.log"
Expand Down
8 changes: 4 additions & 4 deletions automatic/vscode-insiders.install/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ function Get-MergeTasks {
$packageArgs = @{
packageName = "$env:ChocolateyPackageName"
fileType = 'exe'
url = 'https://az764295.vo.msecnd.net/insider/efb49cc271d6eea5634ac395e36e1e4cd108a447/VSCodeSetup-ia32-1.79.0-insider.exe'
url64bit = 'https://az764295.vo.msecnd.net/insider/efb49cc271d6eea5634ac395e36e1e4cd108a447/VSCodeSetup-x64-1.79.0-insider.exe'
url = 'https://az764295.vo.msecnd.net/insider/02298ef4180f2a5db39e0cb6288382860b96a596/VSCodeSetup-ia32-1.79.0-insider.exe'
url64bit = 'https://az764295.vo.msecnd.net/insider/02298ef4180f2a5db39e0cb6288382860b96a596/VSCodeSetup-x64-1.79.0-insider.exe'

softwareName = 'Microsoft Visual Studio Code Insiders'

checksum = '3c3656ea8cf5cda5476d2d9be45f5b112d50ecd529e246f36abe575351018af5ff07d3803a920f6c24bf4ac6a449d171983df173788c7242c16569e97ad418b3'
checksum = 'f6261b21efb33c65a83734ffc032e61c2182413bc92856d374a648b8e318a1f0460401e999c7ec18cb0926147262b7558beaf983d9e6190208cab92b3791ccd5'
checksumType = 'sha512'
checksum64 = '95285c4e869272960daa910fbfc925b4b14f5ca00de1f54b3ce558941e844e51d8ebee6dcd871ba25bccc0d75e780148854d9dd5ed575454094dc486b95613a7'
checksum64 = 'd4221e97d69788739789bfbe4af445e16b920fe5ad0808488629401d29cdf77525805871598fb333f52d5667d4717e3ad59dc4744189ae6e34b783bc9d816d08'
checksumType64 = 'sha512'

silentArgs = '/verysilent /suppressmsgboxes /mergetasks="{0}" /log="{1}\install.log"' -f (Get-MergeTasks), (Get-PackageCacheLocation)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>vscode-insiders.install</id>
<title>Visual Studio Code Insiders (Install)</title>
<version>1.79.0.20230510</version>
<version>1.79.0.20230511</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
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>vscode-insiders</id>
<title>Visual Studio Code Insiders</title>
<version>1.79.0.20230510</version>
<version>1.79.0.20230511</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.79.0.20230510]" />
<dependency id="vscode-insiders.install" version="[1.79.0.20230511]" />
</dependencies>
<releaseNotes>https://code.visualstudio.com/updates/#_preview-features</releaseNotes>
</metadata>
Expand Down

0 comments on commit c5af7a9

Please sign in to comment.