Skip to content

Commit

Permalink
AU-dotnet: 2 updated
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
flcdrg committed Oct 16, 2024
1 parent aa60266 commit d2dd8ee
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 12 deletions.
27 changes: 22 additions & 5 deletions consul/consul.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>consul</id>
<version>1.19.2</version>
<version>1.20.0</version>
<title>Consul</title>
<authors>Mitchell Hashimoto, Armon Dadgar, HashiCorp</authors>
<owners>cleung2010, flcdrg</owners>
Expand Down Expand Up @@ -30,19 +30,36 @@ For example:
* `--params="'/agentargs=""-config-file %PROGRAMDATA%\consul\dsc-config\default.json -client 10.0.0.1""'"` (be cautious of quotes)

For setting Consul agent CLI options, it is better dropping a `config.hcl` into `%PROGRAMDATA%\consul\config` instead of setting them with package parameters.
</description><releaseNotes><![CDATA[### 1.19.2 (August 26, 2024)
</description><releaseNotes><![CDATA[### 1.20.0 (October 14, 2024)
SECURITY:
* ui: Upgrade modules with d3-color as a dependency to address denial of service issue in d3-color < 3.1.0 [[GH-21588](https://github.com/hashicorp/consul/issues/21588)]
* Explicitly set 'Content-Type' header to mitigate XSS vulnerability. [[GH-21704](https://github.com/hashicorp/consul/issues/21704)]
* Implement HTML sanitization for user-generated content to prevent XSS attacks in the UI. [[GH-21711](https://github.com/hashicorp/consul/issues/21711)]
* UI: Remove codemirror linting due to package dependency [[GH-21726](https://github.com/hashicorp/consul/issues/21726)]
* Upgrade Go to use 1.22.7. This addresses CVE
[CVE-2024-34155](https://nvd.nist.gov/vuln/detail/CVE-2024-34155) [[GH-21705](https://github.com/hashicorp/consul/issues/21705)]
* Upgrade to support aws/aws-sdk-go `v1.55.5 or higher`. This resolves CVEs
[CVE-2020-8911](https://nvd.nist.gov/vuln/detail/cve-2020-8911) and
[CVE-2020-8912](https://nvd.nist.gov/vuln/detail/cve-2020-8912). [[GH-21684](https://github.com/hashicorp/consul/issues/21684)]
* ui: Pin a newer resolution of Braces [[GH-21710](https://github.com/hashicorp/consul/issues/21710)]
* ui: Pin a newer resolution of Codemirror [[GH-21715](https://github.com/hashicorp/consul/issues/21715)]
* ui: Pin a newer resolution of Markdown-it [[GH-21717](https://github.com/hashicorp/consul/issues/21717)]
* ui: Pin a newer resolution of ansi-html [[GH-21735](https://github.com/hashicorp/consul/issues/21735)]
FEATURES:
* grafana: added the dashboards service-to-service dashboard, service dashboard, and consul dataplane dashboard [[GH-21806](https://github.com/hashicorp/consul/issues/21806)]
* server: remove v2 tenancy, catalog, and mesh experiments [[GH-21592](https://github.com/hashicorp/consul/issues/21592)]
IMPROVEMENTS:
* Use Envoy's default for a route's validate_clusters option, which is false. This fixes a case where non-existent clusters could cause a route to no longer route to any of its backends, including existing ones. [[GH-21587](https://github.com/hashicorp/consul/issues/21587)]
* security: upgrade ubi base image to 9.4 [[GH-21750](https://github.com/hashicorp/consul/issues/21750)]
* connect: Add Envoy 1.31 and 1.30 to support matrix [[GH-21616](https://github.com/hashicorp/consul/issues/21616)]
BUG FIXES:
* api-gateway: **(Enterprise only)** ensure clusters are properly created for JWT providers with a remote URI for the JWKS endpoint [[GH-21604](https://github.com/hashicorp/consul/issues/21604)]
* jwt-provider: change dns lookup family from the default of AUTO which would prefer ipv6 to ALL if LOGICAL_DNS is used or PREFER_IPV4 if STRICT_DNS is used to gracefully handle transitions to ipv6. [[GH-21703](https://github.com/hashicorp/consul/issues/21703)]
]]></releaseNotes>
<summary>Consul is a tool for service discovery, monitoring and configuration.</summary>
Expand Down
8 changes: 4 additions & 4 deletions consul/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ $packageParameters = Get-PackageParameters
# Download and unzip consul
$package = @{
PackageName = 'consul'
Url = 'https://releases.hashicorp.com/consul/1.19.2/consul_1.19.2_windows_386.zip'
Url64bit = 'https://releases.hashicorp.com/consul/1.19.2/consul_1.19.2_windows_amd64.zip'
Url = 'https://releases.hashicorp.com/consul/1.20.0/consul_1.20.0_windows_386.zip'
Url64bit = 'https://releases.hashicorp.com/consul/1.20.0/consul_1.20.0_windows_amd64.zip'
UnzipLocation = $toolsPath
Checksum = 'd262e490dad109425f757687cd80dca6baa151beb6f8dc9c94032d940599c1be'
Checksum64 = '2a8f1c7bb03f982b17c45e0b812f388faaa0e180f56f19309b2265717ab04b27'
Checksum = 'c450a44852c39091f8df2f20b26798883cb8f3c0badf44b6185c5810a0f38bef'
Checksum64 = '96249ae33372a76aed411afba52c1f228a102f8b9d72eae2a341c732856afacc'
ChecksumType = 'sha256'
}
Install-ChocolateyZipPackage @package
Expand Down
2 changes: 1 addition & 1 deletion sqltoolbelt/sqltoolbelt.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>sqltoolbelt</id>
<version>2024.10.10</version>
<version>2024.10.14</version>
<packageSourceUrl>https://github.com/flcdrg/au-packages/tree/master/sqltoolbelt</packageSourceUrl>
<owners>flcdrg</owners>
<title>SQL Toolbelt</title>
Expand Down
4 changes: 2 additions & 2 deletions sqltoolbelt/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
$ErrorActionPreference = 'Stop';
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"

$url = 'https://download.red-gate.com/installers/SQLToolbelt/2024-10-10/SQLToolbelt.exe'
$checksum = 'A649BAF5091CB1E3B56A14C859158A89E8F9D97241512A599DFC5F151D44B149'
$url = 'https://download.red-gate.com/installers/SQLToolbelt/2024-10-14/SQLToolbelt.exe'
$checksum = '1A0D5F44D7768B9DCCEE428BDB24213EFD8FB1CDBEF955D44EC08A04756535A5'

$validProductPackageNames = @(
"SQL Compare",
Expand Down

0 comments on commit d2dd8ee

Please sign in to comment.