Skip to content

Commit

Permalink
AU: 3 updated - datagrip etcd Opera
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey Community committed Jan 31, 2024
1 parent 2eb66af commit 4ac0e3f
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 30 deletions.
2 changes: 1 addition & 1 deletion automatic/datagrip/datagrip.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>datagrip</id>
<version>2023.3.3</version>
<version>2023.3.4</version>
<title>JetBrains DataGrip</title>
<authors>JetBrains</authors>
<licenseUrl>https://www.datagrip.org/terms.php</licenseUrl>
Expand Down
4 changes: 2 additions & 2 deletions automatic/datagrip/tools/ChocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ New-Item -ItemType Directory -Force -Path $installDir
$arguments = @{
packageName = $env:ChocolateyPackageName
softwareName = 'JetBrains DataGrip*'
url = 'https://download.jetbrains.com/datagrip/datagrip-2023.3.3.exe'
checksum = 'd42e3fb467d6a27d4b91f430331b77446b5d2360969887da4860d4521555aeef'
url = 'https://download.jetbrains.com/datagrip/datagrip-2023.3.4.exe'
checksum = '1506798f5ddf98353187dd43d48fac624c81b24b538fbb683149f6a7f59b4793'
fileType = 'exe'
checksumType = 'sha256'
silentArgs = $silentArgs
Expand Down
2 changes: 1 addition & 1 deletion automatic/etcd/etcd.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"3.1": "3.1.20",
"3.2": "3.2.32",
"3.3": "3.3.27",
"3.4": "3.4.29",
"3.4": "3.4.30",
"3.5": "3.5.12",
"3.6": "3.6.0-alpha0"
}
29 changes: 13 additions & 16 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.5.12</version>
<version>3.4.30</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.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).
<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).

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).
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).

###### Linux

```bash
ETCD_VER=v3.5.12
ETCD_VER=v3.4.30

# choose either URL
GOOGLE_URL=https://storage.googleapis.com/etcd
Expand All @@ -68,7 +68,6 @@ 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 @@ -83,7 +82,7 @@ rm -f /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
###### macOS (Darwin)

```bash
ETCD_VER=v3.5.12
ETCD_VER=v3.4.30

# choose either URL
GOOGLE_URL=https://storage.googleapis.com/etcd
Expand All @@ -99,7 +98,6 @@ 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 @@ -108,13 +106,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.5.12 || true &amp;&amp; \
docker rmi gcr.io/etcd-development/etcd:v3.4.30 || 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.5.12 \
gcr.io/etcd-development/etcd:v3.5.12 \
--name etcd-gcr-v3.4.30 \
gcr.io/etcd-development/etcd:v3.4.30 \
/usr/local/bin/etcd \
--name s1 \
--data-dir /etcd-data \
Expand All @@ -129,12 +127,11 @@ 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.5.12 /usr/local/bin/etcd --version
docker exec etcd-gcr-v3.5.12 /usr/local/bin/etcdctl version
docker exec etcd-gcr-v3.5.12 /usr/local/bin/etcdutl version
docker exec etcd-gcr-v3.5.12 /usr/local/bin/etcdctl endpoint health
docker exec etcd-gcr-v3.5.12 /usr/local/bin/etcdctl put foo bar
docker exec etcd-gcr-v3.5.12 /usr/local/bin/etcdctl get foo
docker exec etcd-gcr-v3.4.30 /usr/local/bin/etcd --version
docker exec etcd-gcr-v3.4.30 /usr/local/bin/etcdctl version
docker exec etcd-gcr-v3.4.30 /usr/local/bin/etcdctl endpoint health
docker exec etcd-gcr-v3.4.30 /usr/local/bin/etcdctl put foo bar
docker exec etcd-gcr-v3.4.30 /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
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.5.12>
location on <https://github.com/etcd-io/etcd/releases/tag/v3.4.30>
and can be verified by doing the following:

1. Download the following:
software: <https://github.com/etcd-io/etcd/releases/download/v3.5.12/etcd-v3.5.12-windows-amd64.zip>
software: <https://github.com/etcd-io/etcd/releases/download/v3.4.30/etcd-v3.4.30-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: AB63500A3EB1CBFD9D863759FC5A039AD724C0B493B26C079BB53B19E7C21330
checksum: D5C8A3F2B4BF31BC51F3C5988BB1407F99B2A12DFAEC1026D117DD6678790B33

The file 'LICENSE.txt' has been obtained from <https://github.com/etcd-io/etcd/commit/3381177341c11aa9d89b6172699d64ddc2146a11/LICENSE>
4 changes: 2 additions & 2 deletions automatic/opera/opera.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>Opera</id>
<version>106.0.4998.66</version>
<version>106.0.4998.70</version>
<title>Opera</title>
<owners>chocolatey-community</owners>
<authors>Opera</authors>
Expand All @@ -28,7 +28,7 @@ For example: `--params '"/NoAutostart /NoDesktopShortcut /NoTaskbarShortcut"'`
- **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>
<summary>The Opera web browser makes the Web fast and fun, giving you a better web browser experience on any computer.</summary>
<releaseNotes>https://blogs.opera.com/desktop/changelog-for-106/#b4998.66</releaseNotes>
<releaseNotes>https://blogs.opera.com/desktop/changelog-for-106/#b4998.70</releaseNotes>
<tags>browser opera cross-platform internet admin</tags>
<packageSourceUrl>https://github.com/chocolatey-community/chocolatey-packages/tree/master/automatic/opera</packageSourceUrl>
<dependencies>
Expand Down
10 changes: 5 additions & 5 deletions automatic/opera/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@ $parameters += if ($pp.NoTaskbarShortcut) { " /pintotaskbar=0"; Write-Host "Oper
$packageArgs = @{
packageName = $env:ChocolateyPackageName
fileType = 'exe'
url = 'https://get.geo.opera.com/pub/opera/desktop/106.0.4998.66/win/Opera_106.0.4998.66_Setup.exe'
url64 = 'https://get.geo.opera.com/pub/opera/desktop/106.0.4998.66/win/Opera_106.0.4998.66_Setup_x64.exe'
checksum = '27aca0100b39c25d8ab82a9e101fd231d468e224eb0f4250d1bed1f712296bb1'
checksum64 = '917a0d712739c020d39cfd623478684cfeab39594edcc6e25eb39dd31104a198'
url = 'https://get.geo.opera.com/pub/opera/desktop/106.0.4998.70/win/Opera_106.0.4998.70_Setup.exe'
url64 = 'https://get.geo.opera.com/pub/opera/desktop/106.0.4998.70/win/Opera_106.0.4998.70_Setup_x64.exe'
checksum = '94911493fe7182edad1c67698536c9b1d2de8592a1454f1e122722cb1ef7955c'
checksum64 = 'ee4a8a9cbe842ebd1edf6d7f7bf2b2c57fb5afff3d7f89a7923d925bd247a1f2'
checksumType = 'sha256'
checksumType64 = 'sha256'
silentArgs = '/install /silent /launchopera=0 /setdefaultbrowser=0 /allusers=1' + $parameters
validExitCodes = @(0)
}

$version = '106.0.4998.66'
$version = '106.0.4998.70'
if (!$Env:ChocolateyForce -and (IsVersionAlreadyInstalled $version)) {
Write-Output "Opera $version is already installed. Skipping download and installation."
}
Expand Down

0 comments on commit 4ac0e3f

Please sign in to comment.